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

            #medical_box_135 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_135:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_135:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_135 .mode1-size_135{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_135 .new_medical_box > div{
                width:100%;
            }
             #medical_box_135 > div{
               height:100%;
            }
            #medical_box_135 .mode2-size_135{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_135 .mode3-size_135{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_135 .mode4-size_135{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_135 .mode5-size_135{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_135 .mode6-size_135{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_135 .mode7-size_135{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_135 .mode7-size_135 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_135 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_135 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_135{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_135 span:hover{
                color:!important;
            }
            .custom2_135{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_135 span:hover{
                color:;
            }
            #medical_box_135 .mode-btn1_135{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_135 .mode-btn1_135 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_135 .mode-btn2_135{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_135 .mode-btn2_135 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_135 .div-btn-title_main_135{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_135 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_135 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_28 .new_medical_title_main{color:#000;font-weight:bold;font-size:37px;justify-content:center;text-align:center;margin-top:128px;line-height:50px;}.module[data-id_page='44']:hover .new_medical_title_main{}#module_new_medical_28 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:20px;padding-bottom:64px;border-style:none;}.module[data-id_page='44']:hover .new_medical_box_main{}
            #module_new_medical_28 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_28 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_28 .medical_box_main_animation_trigger{
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_28 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_28 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_28 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_28 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_28 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_28 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_28 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_28 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_28{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_28 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_28 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_28 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_28 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_28 .swiper-container{
                width:1200px;
            }
            #module_new_medical_28 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_28 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_28 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_28 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='25']{;background-color:#23363d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:60px;border-style:solid;border-bottom-width:1px;border-color:#daf2ff;}.module[data-id_page='25']:hover{;border-color:#40a9ff !important;}.module[data-id_page='25']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='25'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='25'] 
            
            .module[data-id_page='25'] .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='25'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='25']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_15 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_15 .content_str{
				width:100%;
			}
            #module_new_medical_15 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_15 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_15 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_15 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_15 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_15 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_15 .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_15 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_15 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_15 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_15 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_15 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_15 .new_medical_description a,#module_new_medical_15 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_15 .new_medical_description a:hover,#module_new_medical_15 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_15 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_15 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_75 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726750141_itchen-Cabinet.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_75 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_75 .background-img{
                border-radius:;
            }
        
            #medical_box_75 .new_medical_icon{
                
            }
        #medical_box_75 .new_medical_title{color:#daf2ff;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_75:hover .new_medical_title{}
                #medical_box_75 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_75 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_75:hover .new_medical_icon{}#medical_box_75.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_75:hover{}#medical_box_75 .new_medical_description{color:#daf2ff;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_75:hover .new_medical_description{}
                #medical_box_75 
            
            #medical_box_75 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_75 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_75:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_75:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_75 .mode1-size_75{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_75 .new_medical_box > div{
                width:100%;
            }
             #medical_box_75 > div{
               height:100%;
            }
            #medical_box_75 .mode2-size_75{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_75 .mode3-size_75{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_75 .mode4-size_75{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_75 .mode5-size_75{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_75 .mode6-size_75{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_75 .mode7-size_75{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_75 .mode7-size_75 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_75 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_75 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_75{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_75 span:hover{
                color:!important;
            }
            .custom2_75{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_75 span:hover{
                color:;
            }
            #medical_box_75 .mode-btn1_75{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_75 .mode-btn1_75 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_75 .mode-btn2_75{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_75 .mode-btn2_75 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_75 .div-btn-title_main_75{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_75 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_75 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_74 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726750581_p-Replacements.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_74 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_74 .background-img{
                border-radius:;
            }
        
            #medical_box_74 .new_medical_icon{
                
            }
        #medical_box_74 .new_medical_title{color:#daf2ff;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_74:hover .new_medical_title{}
                #medical_box_74 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_74 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_74:hover .new_medical_icon{}#medical_box_74.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_1972:hover{}#medical_box_74 .new_medical_description{color:#daf2ff;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_74:hover .new_medical_description{}
                #medical_box_74 
            
            #medical_box_74 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_74 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_74:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_74:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_74 .mode1-size_74{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_74 .new_medical_box > div{
                width:100%;
            }
             #medical_box_74 > div{
               height:100%;
            }
            #medical_box_74 .mode2-size_74{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_74 .mode3-size_74{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_74 .mode4-size_74{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_74 .mode5-size_74{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_74 .mode6-size_74{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_74 .mode7-size_74{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_74 .mode7-size_74 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_74 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_74 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_74{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_74 span:hover{
                color:!important;
            }
            .custom2_74{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_74 span:hover{
                color:;
            }
            #medical_box_74 .mode-btn1_74{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_74 .mode-btn1_74 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_74 .mode-btn2_74{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_74 .mode-btn2_74 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_74 .div-btn-title_main_74{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_74 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_74 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_73 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726750838_ooring-options.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_73 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_73 .background-img{
                border-radius:;
            }
        
            #medical_box_73 .new_medical_icon{
                
            }
        #medical_box_73 .new_medical_title{color:#daf2ff;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_73:hover .new_medical_title{}
                #medical_box_73 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_73 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_73:hover .new_medical_icon{}#medical_box_73.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_1972:hover{}#medical_box_73 .new_medical_description{color:#daf2ff;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_73:hover .new_medical_description{}
                #medical_box_73 
            
            #medical_box_73 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_73 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_73:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_73:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_73 .mode1-size_73{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_73 .new_medical_box > div{
                width:100%;
            }
             #medical_box_73 > div{
               height:100%;
            }
            #medical_box_73 .mode2-size_73{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_73 .mode3-size_73{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_73 .mode4-size_73{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_73 .mode5-size_73{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_73 .mode6-size_73{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_73 .mode7-size_73{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_73 .mode7-size_73 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_73 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_73 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_73{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_73 span:hover{
                color:!important;
            }
            .custom2_73{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_73 span:hover{
                color:;
            }
            #medical_box_73 .mode-btn1_73{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_73 .mode-btn1_73 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_73 .mode-btn2_73{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_73 .mode-btn2_73 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_73 .div-btn-title_main_73{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_73 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_73 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_72 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726751043_hting-Upgrades.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_72 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_72 .background-img{
                border-radius:;
            }
        
            #medical_box_72 .new_medical_icon{
                
            }
        #medical_box_72 .new_medical_title{color:#daf2ff;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_72:hover .new_medical_title{}
                #medical_box_72 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_72 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_72:hover .new_medical_icon{}#medical_box_72.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_1972:hover{}#medical_box_72 .new_medical_description{color:#daf2ff;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_72:hover .new_medical_description{}
                #medical_box_72 
            
            #medical_box_72 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_72 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_72:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_72:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_72 .mode1-size_72{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_72 .new_medical_box > div{
                width:100%;
            }
             #medical_box_72 > div{
               height:100%;
            }
            #medical_box_72 .mode2-size_72{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_72 .mode3-size_72{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_72 .mode4-size_72{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_72 .mode5-size_72{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_72 .mode6-size_72{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_72 .mode7-size_72{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_72 .mode7-size_72 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_72 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_72 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_72{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_72 span:hover{
                color:!important;
            }
            .custom2_72{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_72 span:hover{
                color:;
            }
            #medical_box_72 .mode-btn1_72{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_72 .mode-btn1_72 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_72 .mode-btn2_72{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_72 .mode-btn2_72 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_72 .div-btn-title_main_72{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_72 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_72 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_136 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726751338_umbing-Updates.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_136 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_136 .background-img{
                border-radius:;
            }
        
            #medical_box_136 .new_medical_icon{
                
            }
        #medical_box_136 .new_medical_title{color:#daf2ff;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_72:hover .new_medical_title{}
                #medical_box_136 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_136 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_136:hover .new_medical_icon{}#medical_box_136.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_1972:hover{}#medical_box_136 .new_medical_description{color:#daf2ff;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_72:hover .new_medical_description{}
                #medical_box_136 
            
            #medical_box_136 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_136 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_136:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_136:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_136 .mode1-size_136{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_136 .new_medical_box > div{
                width:100%;
            }
             #medical_box_136 > div{
               height:100%;
            }
            #medical_box_136 .mode2-size_136{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_136 .mode3-size_136{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_136 .mode4-size_136{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_136 .mode5-size_136{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_136 .mode6-size_136{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_136 .mode7-size_136{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_136 .mode7-size_136 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_136 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_136 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_136{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_136 span:hover{
                color:!important;
            }
            .custom2_136{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_136 span:hover{
                color:;
            }
            #medical_box_136 .mode-btn1_136{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_136 .mode-btn1_136 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_136 .mode-btn2_136{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_136 .mode-btn2_136 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_136 .div-btn-title_main_136{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_136 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_136 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_15 .new_medical_title_main{color:#ffffff;font-weight:bold;font-size:30px;justify-content:flex-start;text-align:left;margin-bottom:12px;line-height:50px;}.module[data-id_page='25']:hover .new_medical_title_main{}#module_new_medical_15 .new_medical_description_main{color:#daf2ff;font-weight:500;font-size:20px;line-height:30px;text-align:left;padding-right:440px;border-style:solid;border-color:#555;}.module[data-id_page='25']:hover .new_medical_description_main{}#module_new_medical_15 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;border-style:none;}.module[data-id_page='25']:hover .new_medical_box_main{}
            #module_new_medical_15 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_15 .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_15 .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_15 .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_15 .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_15 .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_15 .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_15 .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_15 .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_15 .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_15 .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_15 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_15 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_15 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_15 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_15 .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_15 .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_15 .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_15 .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_15 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_15 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_15 .prev-btn svg{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_15 .next-btn svg{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_15 .svg_prev{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_15 .svg_next{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_15 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_15 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_15 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_15 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_15 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_15 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_15 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_15 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_15 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_15{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_15 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_15 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_15 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_15 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_15 .swiper-container{
                width:1200px;
            }
            #module_new_medical_15 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_15 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_15 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_15 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='50']{;background-color:#23363d;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='50']:hover{;}.module[data-id_page='50']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='50'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='50'] 
            
            .module[data-id_page='50'] .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='50'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='50']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_29 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_29 .content_str{
				width:100%;
			}
            #module_new_medical_29 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_29 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_29 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_29 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_29 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_29 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_29 .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_29 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_29 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_29 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_29 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_29 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_29 .new_medical_description a,#module_new_medical_29 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_29 .new_medical_description a:hover,#module_new_medical_29 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_29 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_29 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_137 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_137 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_137 .background-img{
                border-radius:;
            }
        #medical_box_137 .new_medical_button{color:#2f4660;background-color:#ffffff;font-weight:500;font-size:16px;width:300px;height:50px;line-height:50px;text-align:center;margin-top:16px;margin-bottom:16px;border-radius:5px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#2f4660;box-shadow:0px 0px 0px 0px ;}#medical_box_137 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #medical_box_137 
            
            #medical_box_137 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_137 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_137:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_137:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_137 .mode1-size_137{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_137 .new_medical_box > div{
                width:100%;
            }
             #medical_box_137 > div{
               height:100%;
            }
            #medical_box_137 .mode2-size_137{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_137 .mode3-size_137{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_137 .mode4-size_137{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_137 .mode5-size_137{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_137 .mode6-size_137{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_137 .mode7-size_137{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_137 .mode7-size_137 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_137 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_137 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_137{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_137 span:hover{
                color:!important;
            }
            .custom2_137{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_137 span:hover{
                color:;
            }
            #medical_box_137 .mode-btn1_137{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_137 .mode-btn1_137 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_137 .mode-btn2_137{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_137 .mode-btn2_137 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_137 .div-btn-title_main_137{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_137 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_137 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_29 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='50']:hover .new_medical_box_main{}
            #module_new_medical_29 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_29 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_29 .medical_box_main_animation_trigger{
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_29 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_29 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_29 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_29 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_29 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_29 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_29 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_29 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_29{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_29 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_29 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_29 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_29 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_29 .swiper-container{
                width:1200px;
            }
            #module_new_medical_29 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_29 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_29 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_29 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        
            #module_new_medical_16 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_16 .content_str{
				width:100%;
			}
            #module_new_medical_16 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_16 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_16 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_16 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_16 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_16 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_16 .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_16 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_16 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_16 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_16 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_16 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_16 .new_medical_description a,#module_new_medical_16 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_16 .new_medical_description a:hover,#module_new_medical_16 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_16 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_16 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_82 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727006298_owers-bathtubs.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_82 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_82 .background-img{
                border-radius:;
            }
        
            #medical_box_82 .new_medical_icon{
                
            }
        #medical_box_82 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:60px;margin-bottom:24px;line-height:24px;}#medical_box_82:hover .new_medical_title{}
                #medical_box_82 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_82 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:25%;height:250px;margin-right:32px;border-style:none;border-color:#000;}#medical_box_82:hover .new_medical_icon{}#medical_box_82.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;border-style:none;}#medical_box_79:hover{}#medical_box_82 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:100px;border-style:solid;border-color:#555;}#medical_box_82:hover .new_medical_description{}
                #medical_box_82 .new_medical_layer{padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;}#medical_box_82:hover .new_medical_layer{}
            
            #medical_box_82 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(215,225,222,0);
                display: flex;
                left: -100%; top:0;
            }

            #medical_box_82 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_82:hover .new_medical_layer {
                border-radius: 0 !important;
                left:0;
                background-color: rgba(215,225,222,1);
            }
        
                #medical_box_82:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_82 .mode1-size_82{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_82 .new_medical_box > div{
                width:100%;
            }
             #medical_box_82 > div{
               height:100%;
            }
            #medical_box_82 .mode2-size_82{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_82 .mode3-size_82{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_82 .mode4-size_82{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_82 .mode5-size_82{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_82 .mode6-size_82{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_82 .mode7-size_82{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_82 .mode7-size_82 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_82 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_82 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_82{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_82 span:hover{
                color:!important;
            }
            .custom2_82{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_82 span:hover{
                color:;
            }
            #medical_box_82 .mode-btn1_82{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_82 .mode-btn1_82 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_82 .mode-btn2_82{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_82 .mode-btn2_82 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_82 .div-btn-title_main_82{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_82 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_82 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_81 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727006573_-Sink-Upgrades.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_81 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_81 .background-img{
                border-radius:;
            }
        
            #medical_box_81 .new_medical_icon{
                
            }
        #medical_box_81 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:right;margin-top:60px;margin-bottom:24px;line-height:24px;}#medical_box_81:hover .new_medical_title{}
                #medical_box_81 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_81 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:25%;height:250px;margin-left:32px;border-style:none;border-color:#000;}#medical_box_81:hover .new_medical_icon{}#medical_box_81.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;border-style:none;}#medical_box_79:hover{}#medical_box_81 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:right;padding-top:100px;border-style:solid;border-color:#555;}#medical_box_81:hover .new_medical_description{}
                #medical_box_81 .new_medical_layer{padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;}#medical_box_81:hover .new_medical_layer{}
            
            #medical_box_81 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(215,225,222,0);
                display: flex;
                left: -100%; top:0;
            }

            #medical_box_81 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_81:hover .new_medical_layer {
                border-radius: 0 !important;
                left:0;
                background-color: rgba(215,225,222,1);
            }
        
                #medical_box_81:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_81 .mode1-size_81{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_81 .new_medical_box > div{
                width:100%;
            }
             #medical_box_81 > div{
               height:100%;
            }
            #medical_box_81 .mode2-size_81{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_81 .mode3-size_81{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_81 .mode4-size_81{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_81 .mode5-size_81{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_81 .mode6-size_81{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_81 .mode7-size_81{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_81 .mode7-size_81 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_81 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_81 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_81{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_81 span:hover{
                color:!important;
            }
            .custom2_81{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_81 span:hover{
                color:;
            }
            #medical_box_81 .mode-btn1_81{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_81 .mode-btn1_81 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_81 .mode-btn2_81{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_81 .mode-btn2_81 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_81 .div-btn-title_main_81{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_81 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_81 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_80 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727006796_Tile-Work.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_80 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_80 .background-img{
                border-radius:;
            }
        
            #medical_box_80 .new_medical_icon{
                
            }
        #medical_box_80 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:60px;margin-bottom:24px;line-height:24px;}#medical_box_80:hover .new_medical_title{}
                #medical_box_80 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_80 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:25%;height:250px;margin-right:32px;border-style:none;border-color:#000;}#medical_box_80:hover .new_medical_icon{}#medical_box_80.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;border-style:none;}#medical_box_79:hover{}#medical_box_80 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;height:150px;text-align:left;padding-top:100px;border-style:solid;border-color:#555;}#medical_box_80:hover .new_medical_description{}
                #medical_box_80 .new_medical_layer{padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;}#medical_box_80:hover .new_medical_layer{}
            
            #medical_box_80 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(215,225,222,0);
                display: flex;
                left: -100%; top:0;
            }

            #medical_box_80 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_80:hover .new_medical_layer {
                border-radius: 0 !important;
                left:0;
                background-color: rgba(215,225,222,1);
            }
        
                #medical_box_80:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_80 .mode1-size_80{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_80 .new_medical_box > div{
                width:100%;
            }
             #medical_box_80 > div{
               height:100%;
            }
            #medical_box_80 .mode2-size_80{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_80 .mode3-size_80{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_80 .mode4-size_80{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_80 .mode5-size_80{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_80 .mode6-size_80{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_80 .mode7-size_80{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_80 .mode7-size_80 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_80 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_80 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_80{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_80 span:hover{
                color:!important;
            }
            .custom2_80{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_80 span:hover{
                color:;
            }
            #medical_box_80 .mode-btn1_80{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_80 .mode-btn1_80 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_80 .mode-btn2_80{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_80 .mode-btn2_80 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_80 .div-btn-title_main_80{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_80 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_80 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_79 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727006941_g-Enhancements.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_79 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_79 .background-img{
                border-radius:;
            }
        
            #medical_box_79 .new_medical_icon{
                
            }
        #medical_box_79 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:right;margin-top:60px;margin-bottom:24px;line-height:24px;}#medical_box_79:hover .new_medical_title{}
                #medical_box_79 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_79 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:25%;height:250px;margin-left:32px;border-style:none;border-color:#000;}#medical_box_79:hover .new_medical_icon{}#medical_box_79.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;border-style:none;}#medical_box_79:hover{}#medical_box_79 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:right;padding-top:100px;border-style:solid;border-color:#555;}#medical_box_79:hover .new_medical_description{}
                #medical_box_79 .new_medical_layer{padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;}#medical_box_79:hover .new_medical_layer{}
            
            #medical_box_79 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(215,225,222,0);
                display: flex;
                left: -100%; top:0;
            }

            #medical_box_79 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_79:hover .new_medical_layer {
                border-radius: 0 !important;
                left:0;
                background-color: rgba(215,225,222,1);
            }
        
                #medical_box_79:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_79 .mode1-size_79{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_79 .new_medical_box > div{
                width:100%;
            }
             #medical_box_79 > div{
               height:100%;
            }
            #medical_box_79 .mode2-size_79{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_79 .mode3-size_79{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_79 .mode4-size_79{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_79 .mode5-size_79{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_79 .mode6-size_79{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_79 .mode7-size_79{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_79 .mode7-size_79 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_79 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_79 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_79{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_79 span:hover{
                color:!important;
            }
            .custom2_79{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_79 span:hover{
                color:;
            }
            #medical_box_79 .mode-btn1_79{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_79 .mode-btn1_79 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_79 .mode-btn2_79{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_79 .mode-btn2_79 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_79 .div-btn-title_main_79{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_79 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_79 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_138 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727007131_mbing-Upgrades.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_138 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_138 .background-img{
                border-radius:;
            }
        
            #medical_box_138 .new_medical_icon{
                
            }
        #medical_box_138 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:60px;margin-bottom:24px;line-height:24px;}#medical_box_138:hover .new_medical_title{}
                #medical_box_138 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_138 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:25%;height:250px;margin-right:32px;border-style:none;border-color:#000;}#medical_box_138:hover .new_medical_icon{}#medical_box_138.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;border-style:none;}#medical_box_79:hover{}#medical_box_138 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:100px;border-style:solid;border-color:#555;}#medical_box_138:hover .new_medical_description{}
                #medical_box_138 .new_medical_layer{padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;}#medical_box_138:hover .new_medical_layer{}
            
            #medical_box_138 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(215,225,222,0);
                display: flex;
                left: -100%; top:0;
            }

            #medical_box_138 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_138:hover .new_medical_layer {
                border-radius: 0 !important;
                left:0;
                background-color: rgba(215,225,222,1);
            }
        
                #medical_box_138:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_138 .mode1-size_138{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_138 .new_medical_box > div{
                width:100%;
            }
             #medical_box_138 > div{
               height:100%;
            }
            #medical_box_138 .mode2-size_138{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_138 .mode3-size_138{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_138 .mode4-size_138{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_138 .mode5-size_138{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_138 .mode6-size_138{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_138 .mode7-size_138{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_138 .mode7-size_138 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_138 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_138 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_138{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_138 span:hover{
                color:!important;
            }
            .custom2_138{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_138 span:hover{
                color:;
            }
            #medical_box_138 .mode-btn1_138{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_138 .mode-btn1_138 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_138 .mode-btn2_138{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_138 .mode-btn2_138 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_138 .div-btn-title_main_138{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_138 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_138 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_16 .new_medical_title_main{color:#000;font-weight:bold;font-size:30px;justify-content:flex-start;text-align:left;margin-top:32px;margin-bottom:12px;line-height:50px;}.module[data-id_page='26']:hover .new_medical_title_main{}#module_new_medical_16 .new_medical_description_main{color:#000000;font-weight:500;font-size:20px;line-height:30px;text-align:left;padding-right:440px;border-style:solid;border-color:#555;}.module[data-id_page='26']:hover .new_medical_description_main{}#module_new_medical_16 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:64px;border-style:none;}.module[data-id_page='26']:hover .new_medical_box_main{}
            #module_new_medical_16 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_16 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_16 .medical_box_main_animation_trigger{
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_16 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_16 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_16 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_16 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_16 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_16 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_16 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_16 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_16{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_16 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_16 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_16 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_16 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_16 .swiper-container{
                width:1200px;
            }
            #module_new_medical_16 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_16 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_16 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_16 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='51']{;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='51']:hover{;}.module[data-id_page='51']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='51'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='51'] 
            
            .module[data-id_page='51'] .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='51'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='51']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_30 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_30 .content_str{
				width:100%;
			}
            #module_new_medical_30 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_30 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_30 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_30 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_30 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_30 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_30 .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_30 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_30 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_30 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_30 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_30 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_30 .new_medical_description a,#module_new_medical_30 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_30 .new_medical_description a:hover,#module_new_medical_30 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_30 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_30 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_139 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_139 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_139 .background-img{
                border-radius:;
            }
        #medical_box_139 .new_medical_button{color:#2f4660;background-color:#b6cfde ;font-weight:500;font-size:16px;width:310px;height:50px;line-height:50px;text-align:center;margin-top:16px;margin-bottom:16px;border-radius:5px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#2f4660;box-shadow:0px 0px 0px 0px ;}#medical_box_139 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #medical_box_139 
            
            #medical_box_139 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_139 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_139:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_139:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_139 .mode1-size_139{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_139 .new_medical_box > div{
                width:100%;
            }
             #medical_box_139 > div{
               height:100%;
            }
            #medical_box_139 .mode2-size_139{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_139 .mode3-size_139{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_139 .mode4-size_139{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_139 .mode5-size_139{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_139 .mode6-size_139{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_139 .mode7-size_139{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_139 .mode7-size_139 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_139 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_139 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_139{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_139 span:hover{
                color:!important;
            }
            .custom2_139{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_139 span:hover{
                color:;
            }
            #medical_box_139 .mode-btn1_139{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_139 .mode-btn1_139 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_139 .mode-btn2_139{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_139 .mode-btn2_139 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_139 .div-btn-title_main_139{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_139 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_139 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_30 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='50']:hover .new_medical_box_main{}
            #module_new_medical_30 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_30 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_30 .medical_box_main_animation_trigger{
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_30 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_30 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_30 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_30 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_30 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_30 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_30 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_30 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_30{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_30 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_30 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_30 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_30 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_30 .swiper-container{
                width:1200px;
            }
            #module_new_medical_30 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_30 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_30 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_30 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='52']{;background-color:#d2b48c;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='52']:hover{;}.module[data-id_page='52']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='52'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='52'] 
            
            .module[data-id_page='52'] .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='52'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='52']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_31 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_31 .content_str{
				width:100%;
			}
            #module_new_medical_31 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_31 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_31 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_31 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_31 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_31 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_31 .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_31 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_31 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_31 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_31 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_31 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_31 .new_medical_description a,#module_new_medical_31 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_31 .new_medical_description a:hover,#module_new_medical_31 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_31 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_31 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_154 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727008301_tchen-Cabinets.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_154 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_154 .background-img{
                border-radius:4px;
            }
        
            #medical_box_154 .new_medical_icon{
                
            }
        #medical_box_154 .new_medical_title{color:#000000;font-weight:bold;font-size:20px;text-align:center;margin-top:24px;}#medical_box_154:hover .new_medical_title{}
                #medical_box_154 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_154 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:250px;border-style:none;border-color:#000;}#medical_box_154:hover .new_medical_icon{}#medical_box_154.new_medical_module{background-color:#f4f7f2;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;padding-right:16px;padding-left:16px;border-radius:4px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#78e4ff;}#medical_box_154:hover{}#medical_box_154 .new_medical_description{color:#000000;font-weight:300;font-size:14px;line-height:27px;text-align:center;padding-top:24px;border-style:solid;border-color:#555;}#medical_box_154:hover .new_medical_description{}
                #medical_box_154 
            
            #medical_box_154 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_154 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_154:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_154:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_154 .mode1-size_154{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_154 .new_medical_box > div{
                width:100%;
            }
             #medical_box_154 > div{
               height:100%;
            }
            #medical_box_154 .mode2-size_154{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_154 .mode3-size_154{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_154 .mode4-size_154{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_154 .mode5-size_154{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_154 .mode6-size_154{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_154 .mode7-size_154{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_154 .mode7-size_154 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_154 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_154 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_154{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_154 span:hover{
                color:!important;
            }
            .custom2_154{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_154 span:hover{
                color:;
            }
            #medical_box_154 .mode-btn1_154{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_154 .mode-btn1_154 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_154 .mode-btn2_154{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_154 .mode-btn2_154 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_154 .div-btn-title_main_154{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_154 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_154 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_153 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727008309_anity-Cabinets.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_153 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_153 .background-img{
                border-radius:4px;
            }
        
            #medical_box_153 .new_medical_icon{
                
            }
        #medical_box_153 .new_medical_title{color:#000000;font-weight:bold;font-size:20px;text-align:center;margin-top:24px;}#medical_box_153:hover .new_medical_title{}
                #medical_box_153 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_153 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:250px;border-style:none;border-color:#000;}#medical_box_153:hover .new_medical_icon{}#medical_box_153.new_medical_module{background-color:#f4f7f2;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;padding-right:16px;padding-left:16px;border-radius:4px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#78e4ff;}#medical_box_153:hover{}#medical_box_153 .new_medical_description{color:#000000;font-weight:300;font-size:14px;line-height:27px;text-align:center;padding-top:24px;border-style:solid;border-color:#555;}#medical_box_153:hover .new_medical_description{}
                #medical_box_153 
            
            #medical_box_153 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_153 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_153:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_153:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_153 .mode1-size_153{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_153 .new_medical_box > div{
                width:100%;
            }
             #medical_box_153 > div{
               height:100%;
            }
            #medical_box_153 .mode2-size_153{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_153 .mode3-size_153{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_153 .mode4-size_153{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_153 .mode5-size_153{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_153 .mode6-size_153{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_153 .mode7-size_153{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_153 .mode7-size_153 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_153 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_153 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_153{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_153 span:hover{
                color:!important;
            }
            .custom2_153{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_153 span:hover{
                color:;
            }
            #medical_box_153 .mode-btn1_153{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_153 .mode-btn1_153 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_153 .mode-btn2_153{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_153 .mode-btn2_153 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_153 .div-btn-title_main_153{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_153 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_153 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_152 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727008318_orage-Cabinets.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_152 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_152 .background-img{
                border-radius:4px;
            }
        
            #medical_box_152 .new_medical_icon{
                
            }
        #medical_box_152 .new_medical_title{color:#000000;font-weight:bold;font-size:20px;text-align:center;margin-top:24px;}#medical_box_152:hover .new_medical_title{}
                #medical_box_152 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_152 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:250px;border-style:none;border-color:#000;}#medical_box_152:hover .new_medical_icon{}#medical_box_152.new_medical_module{background-color:#f4f7f2;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;padding-right:16px;padding-left:16px;border-radius:4px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#78e4ff;}#medical_box_152:hover{}#medical_box_152 .new_medical_description{color:#000000;font-weight:300;font-size:14px;line-height:27px;text-align:center;padding-top:24px;border-style:solid;border-color:#555;}#medical_box_152:hover .new_medical_description{}
                #medical_box_152 
            
            #medical_box_152 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_152 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_152:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_152:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_152 .mode1-size_152{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_152 .new_medical_box > div{
                width:100%;
            }
             #medical_box_152 > div{
               height:100%;
            }
            #medical_box_152 .mode2-size_152{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_152 .mode3-size_152{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_152 .mode4-size_152{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_152 .mode5-size_152{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_152 .mode6-size_152{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_152 .mode7-size_152{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_152 .mode7-size_152 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_152 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_152 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_152{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_152 span:hover{
                color:!important;
            }
            .custom2_152{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_152 span:hover{
                color:;
            }
            #medical_box_152 .mode-btn1_152{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_152 .mode-btn1_152 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_152 .mode-btn2_152{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_152 .mode-btn2_152 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_152 .div-btn-title_main_152{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_152 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_152 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_31 .new_medical_title_main{color:#000000;font-weight:bold;font-size:30px;justify-content:center;text-align:center;margin-top:32px;line-height:50px;}.module[data-id_page='52']:hover .new_medical_title_main{}#module_new_medical_31 .new_medical_description_main{color:#000000;font-weight:500;font-size:17px;line-height:40px;text-align:justify;margin-top:24px;border-style:solid;border-color:#555;}.module[data-id_page='52']:hover .new_medical_description_main{}#module_new_medical_31 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:32px;border-style:none;}.module[data-id_page='3']:hover .new_medical_box_main{}
            #module_new_medical_31 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_31 .new_medical_module{
                    width:378px;
                    position:relative;
                    overflow:hidden;
                    margin-right:32px;
                    margin-bottom:32px;
                }
                #module_new_medical_31 .medical_box_main_animation_trigger{
                    margin-right:32px;
                    margin-bottom:32px;
                }
                #module_new_medical_31 .new_medical_module:nth-child(3n){
                    margin-right:0;
                }
                #module_new_medical_31 .medical_box_main_animation_trigger:nth-child(3n){
                    margin-right:0;
                }
                #module_new_medical_31 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_31 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_31 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_31 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_31 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_31 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_31{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_31 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_31 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_31 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_31 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_31 .swiper-container{
                width:1200px;
            }
            #module_new_medical_31 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_31 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_31 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_31 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='53']{;background-color:#d2b48c;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='53']:hover{;}.module[data-id_page='53']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='53'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='53'] 
            
            .module[data-id_page='53'] .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='53'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='53']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_32 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_32 .content_str{
				width:100%;
			}
            #module_new_medical_32 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_32 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_32 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_32 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_32 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_32 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_32 .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_32 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_32 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_32 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_32 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_32 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_32 .new_medical_description a,#module_new_medical_32 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_32 .new_medical_description a:hover,#module_new_medical_32 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_32 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_32 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_159 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_159 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_159 .background-img{
                border-radius:;
            }
        #medical_box_159 .new_medical_button{color:#2f4660;background-color:#ffffff;font-weight:500;font-size:16px;width:300px;height:50px;line-height:50px;text-align:center;margin-top:16px;margin-bottom:16px;border-radius:5px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#2f4660;box-shadow:0px 0px 0px 0px ;}#medical_box_137 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #medical_box_159 
            
            #medical_box_159 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_159 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_159:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_159:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_159 .mode1-size_159{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_159 .new_medical_box > div{
                width:100%;
            }
             #medical_box_159 > div{
               height:100%;
            }
            #medical_box_159 .mode2-size_159{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_159 .mode3-size_159{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_159 .mode4-size_159{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_159 .mode5-size_159{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_159 .mode6-size_159{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_159 .mode7-size_159{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_159 .mode7-size_159 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_159 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_159 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_159{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_159 span:hover{
                color:!important;
            }
            .custom2_159{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_159 span:hover{
                color:;
            }
            #medical_box_159 .mode-btn1_159{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_159 .mode-btn1_159 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_159 .mode-btn2_159{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_159 .mode-btn2_159 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_159 .div-btn-title_main_159{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_159 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_159 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_32 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='50']:hover .new_medical_box_main{}
            #module_new_medical_32 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_32 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_32 .medical_box_main_animation_trigger{
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_32 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_32 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_32 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_32 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_32 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_32 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_32 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_32 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_32{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_32 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_32 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_32 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_32 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_32 .swiper-container{
                width:1200px;
            }
            #module_new_medical_32 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_32 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_32 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_32 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='54']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:60px;border-style:solid;border-bottom-width:1px;border-color:#daf2ff;}.module[data-id_page='54']:hover{;border-color:#40a9ff !important;}.module[data-id_page='54']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='54'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='54'] 
            
            .module[data-id_page='54'] .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='54'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='54']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_33 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_33 .content_str{
				width:100%;
			}
            #module_new_medical_33 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_33 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_33 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_33 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_33 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_33 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_33 .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_33 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_33 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_33 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_33 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_33 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_33 .new_medical_description a,#module_new_medical_33 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_33 .new_medical_description a:hover,#module_new_medical_33 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_33 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_33 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_163 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726750141_itchen-Cabinet.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_163 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_163 .background-img{
                border-radius:;
            }
        
            #medical_box_163 .new_medical_icon{
                
            }
        #medical_box_163 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_163:hover .new_medical_title{}
                #medical_box_163 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_163 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_75:hover .new_medical_icon{}#medical_box_163.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_75:hover{}#medical_box_163 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_163:hover .new_medical_description{}
                #medical_box_163 
            
            #medical_box_163 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_163 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_163:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_163:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_163 .mode1-size_163{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_163 .new_medical_box > div{
                width:100%;
            }
             #medical_box_163 > div{
               height:100%;
            }
            #medical_box_163 .mode2-size_163{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_163 .mode3-size_163{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_163 .mode4-size_163{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_163 .mode5-size_163{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_163 .mode6-size_163{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_163 .mode7-size_163{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_163 .mode7-size_163 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_163 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_163 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_163{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_163 span:hover{
                color:!important;
            }
            .custom2_163{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_163 span:hover{
                color:;
            }
            #medical_box_163 .mode-btn1_163{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_163 .mode-btn1_163 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_163 .mode-btn2_163{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_163 .mode-btn2_163 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_163 .div-btn-title_main_163{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_163 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_163 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_162 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726750581_p-Replacements.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_162 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_162 .background-img{
                border-radius:;
            }
        
            #medical_box_162 .new_medical_icon{
                
            }
        #medical_box_162 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_162:hover .new_medical_title{}
                #medical_box_162 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_162 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_74:hover .new_medical_icon{}#medical_box_162.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_1972:hover{}#medical_box_162 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_162:hover .new_medical_description{}
                #medical_box_162 
            
            #medical_box_162 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_162 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_162:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_162:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_162 .mode1-size_162{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_162 .new_medical_box > div{
                width:100%;
            }
             #medical_box_162 > div{
               height:100%;
            }
            #medical_box_162 .mode2-size_162{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_162 .mode3-size_162{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_162 .mode4-size_162{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_162 .mode5-size_162{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_162 .mode6-size_162{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_162 .mode7-size_162{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_162 .mode7-size_162 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_162 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_162 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_162{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_162 span:hover{
                color:!important;
            }
            .custom2_162{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_162 span:hover{
                color:;
            }
            #medical_box_162 .mode-btn1_162{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_162 .mode-btn1_162 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_162 .mode-btn2_162{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_162 .mode-btn2_162 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_162 .div-btn-title_main_162{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_162 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_162 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_161 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726750838_ooring-options.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_161 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_161 .background-img{
                border-radius:;
            }
        
            #medical_box_161 .new_medical_icon{
                
            }
        #medical_box_161 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_161:hover .new_medical_title{}
                #medical_box_161 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_161 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_73:hover .new_medical_icon{}#medical_box_161.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_1972:hover{}#medical_box_161 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_161:hover .new_medical_description{}
                #medical_box_161 
            
            #medical_box_161 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_161 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_161:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_161:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_161 .mode1-size_161{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_161 .new_medical_box > div{
                width:100%;
            }
             #medical_box_161 > div{
               height:100%;
            }
            #medical_box_161 .mode2-size_161{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_161 .mode3-size_161{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_161 .mode4-size_161{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_161 .mode5-size_161{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_161 .mode6-size_161{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_161 .mode7-size_161{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_161 .mode7-size_161 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_161 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_161 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_161{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_161 span:hover{
                color:!important;
            }
            .custom2_161{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_161 span:hover{
                color:;
            }
            #medical_box_161 .mode-btn1_161{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_161 .mode-btn1_161 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_161 .mode-btn2_161{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_161 .mode-btn2_161 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_161 .div-btn-title_main_161{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_161 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_161 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_160 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726751043_hting-Upgrades.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_160 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_160 .background-img{
                border-radius:;
            }
        
            #medical_box_160 .new_medical_icon{
                
            }
        #medical_box_160 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_160:hover .new_medical_title{}
                #medical_box_160 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_160 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_72:hover .new_medical_icon{}#medical_box_160.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_1972:hover{}#medical_box_160 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_160:hover .new_medical_description{}
                #medical_box_160 
            
            #medical_box_160 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_160 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_160:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_160:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_160 .mode1-size_160{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_160 .new_medical_box > div{
                width:100%;
            }
             #medical_box_160 > div{
               height:100%;
            }
            #medical_box_160 .mode2-size_160{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_160 .mode3-size_160{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_160 .mode4-size_160{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_160 .mode5-size_160{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_160 .mode6-size_160{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_160 .mode7-size_160{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_160 .mode7-size_160 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_160 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_160 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_160{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_160 span:hover{
                color:!important;
            }
            .custom2_160{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_160 span:hover{
                color:;
            }
            #medical_box_160 .mode-btn1_160{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_160 .mode-btn1_160 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_160 .mode-btn2_160{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_160 .mode-btn2_160 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_160 .div-btn-title_main_160{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_160 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_160 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_33 .new_medical_title_main{color:#000000;font-weight:bold;font-size:30px;justify-content:flex-start;text-align:left;margin-bottom:12px;line-height:50px;}.module[data-id_page='54']:hover .new_medical_title_main{}#module_new_medical_33 .new_medical_description_main{color:#000000;font-weight:500;font-size:20px;line-height:30px;text-align:left;padding-right:440px;border-style:solid;border-color:#555;}.module[data-id_page='54']:hover .new_medical_description_main{}#module_new_medical_33 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-right:24px;padding-left:24px;border-style:none;}.module[data-id_page='54']:hover .new_medical_box_main{}
            #module_new_medical_33 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_33 .new_medical_module{
                    width:544px;
                    position:relative;
                    overflow:hidden;
                    margin-right:64px;
                    margin-bottom:30px;
                }
                #module_new_medical_33 .medical_box_main_animation_trigger{
                    margin-right:64px;
                    margin-bottom:30px;
                }
                #module_new_medical_33 .new_medical_module:nth-child(2n){
                    margin-right:0;
                }
                #module_new_medical_33 .medical_box_main_animation_trigger:nth-child(2n){
                    margin-right:0;
                }
                #module_new_medical_33 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_33 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_33 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_33 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_33 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_33 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_33{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_33 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_33 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_33 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_33 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_33 .swiper-container{
                width:1200px;
            }
            #module_new_medical_33 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_33 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_33 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_33 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='55']{;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='55']:hover{;}.module[data-id_page='55'] .new_admin_layer{;}.module[data-id_page='55']:hover .new_admin_layer{;}.module[data-id_page='55']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='55'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='55'] .module[data-id_page='55'] .new_admin_layer{;}.module[data-id_page='55']:hover .new_admin_layer{;}
            
            .module[data-id_page='55'] .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='55'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='55']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_34 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_34 .content_str{
				width:100%;
			}
            #module_new_medical_34 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_34 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_34 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_34 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_34 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_34 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_34 .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_34 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_34 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_34 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_34 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_34 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_34 .new_medical_description a,#module_new_medical_34 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_34 .new_medical_description a:hover,#module_new_medical_34 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_34 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_34 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_165 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_165 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_165 .background-img{
                border-radius:;
            }
        #medical_box_165 .new_medical_button{color:#2f4660;background-color:#ffffff;font-weight:500;font-size:16px;width:310px;height:50px;line-height:50px;text-align:center;margin-top:16px;margin-bottom:16px;border-radius:5px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#2f4660;box-shadow:0px 0px 0px 0px ;}#medical_box_165 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #medical_box_165 
            
            #medical_box_165 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_165 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_165:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_165:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_165 .mode1-size_165{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_165 .new_medical_box > div{
                width:100%;
            }
             #medical_box_165 > div{
               height:100%;
            }
            #medical_box_165 .mode2-size_165{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_165 .mode3-size_165{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_165 .mode4-size_165{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_165 .mode5-size_165{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_165 .mode6-size_165{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_165 .mode7-size_165{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_165 .mode7-size_165 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_165 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_165 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_165{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_165 span:hover{
                color:!important;
            }
            .custom2_165{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_165 span:hover{
                color:;
            }
            #medical_box_165 .mode-btn1_165{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_165 .mode-btn1_165 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_165 .mode-btn2_165{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_165 .mode-btn2_165 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_165 .div-btn-title_main_165{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_165 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_165 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_34 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='50']:hover .new_medical_box_main{}
            #module_new_medical_34 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_34 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_34 .medical_box_main_animation_trigger{
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_34 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_34 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_34 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_34 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_34 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_34 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_34 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_34 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_34{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_34 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_34 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_34 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_34 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_34 .swiper-container{
                width:1200px;
            }
            #module_new_medical_34 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_34 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_34 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_34 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='56']{;background-color:#23363d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:60px;border-style:solid;border-bottom-width:1px;border-color:#daf2ff;}.module[data-id_page='56']:hover{;border-color:#40a9ff !important;}.module[data-id_page='56']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='56'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='56'] 
            
            .module[data-id_page='56'] .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='56'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='56']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_35 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_35 .content_str{
				width:100%;
			}
            #module_new_medical_35 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_35 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_35 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_35 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_35 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_35 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_35 .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_35 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_35 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_35 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_35 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_35 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_35 .new_medical_description a,#module_new_medical_35 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_35 .new_medical_description a:hover,#module_new_medical_35 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_35 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_35 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_169 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726750141_itchen-Cabinet.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_169 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_169 .background-img{
                border-radius:;
            }
        
            #medical_box_169 .new_medical_icon{
                
            }
        #medical_box_169 .new_medical_title{color:#daf2ff;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_75:hover .new_medical_title{}
                #medical_box_169 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_169 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_75:hover .new_medical_icon{}#medical_box_169.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_75:hover{}#medical_box_169 .new_medical_description{color:#daf2ff;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_75:hover .new_medical_description{}
                #medical_box_169 
            
            #medical_box_169 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_169 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_169:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_169:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_169 .mode1-size_169{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_169 .new_medical_box > div{
                width:100%;
            }
             #medical_box_169 > div{
               height:100%;
            }
            #medical_box_169 .mode2-size_169{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_169 .mode3-size_169{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_169 .mode4-size_169{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_169 .mode5-size_169{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_169 .mode6-size_169{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_169 .mode7-size_169{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_169 .mode7-size_169 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_169 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_169 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_169{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_169 span:hover{
                color:!important;
            }
            .custom2_169{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_169 span:hover{
                color:;
            }
            #medical_box_169 .mode-btn1_169{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_169 .mode-btn1_169 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_169 .mode-btn2_169{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_169 .mode-btn2_169 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_169 .div-btn-title_main_169{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_169 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_169 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_168 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726750581_p-Replacements.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_168 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_168 .background-img{
                border-radius:;
            }
        
            #medical_box_168 .new_medical_icon{
                
            }
        #medical_box_168 .new_medical_title{color:#daf2ff;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_74:hover .new_medical_title{}
                #medical_box_168 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_168 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_74:hover .new_medical_icon{}#medical_box_168.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_1972:hover{}#medical_box_168 .new_medical_description{color:#daf2ff;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_74:hover .new_medical_description{}
                #medical_box_168 
            
            #medical_box_168 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_168 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_168:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_168:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_168 .mode1-size_168{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_168 .new_medical_box > div{
                width:100%;
            }
             #medical_box_168 > div{
               height:100%;
            }
            #medical_box_168 .mode2-size_168{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_168 .mode3-size_168{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_168 .mode4-size_168{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_168 .mode5-size_168{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_168 .mode6-size_168{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_168 .mode7-size_168{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_168 .mode7-size_168 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_168 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_168 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_168{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_168 span:hover{
                color:!important;
            }
            .custom2_168{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_168 span:hover{
                color:;
            }
            #medical_box_168 .mode-btn1_168{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_168 .mode-btn1_168 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_168 .mode-btn2_168{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_168 .mode-btn2_168 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_168 .div-btn-title_main_168{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_168 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_168 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_167 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726750838_ooring-options.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_167 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_167 .background-img{
                border-radius:;
            }
        
            #medical_box_167 .new_medical_icon{
                
            }
        #medical_box_167 .new_medical_title{color:#daf2ff;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_73:hover .new_medical_title{}
                #medical_box_167 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_167 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_73:hover .new_medical_icon{}#medical_box_167.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_1972:hover{}#medical_box_167 .new_medical_description{color:#daf2ff;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_73:hover .new_medical_description{}
                #medical_box_167 
            
            #medical_box_167 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_167 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_167:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_167:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_167 .mode1-size_167{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_167 .new_medical_box > div{
                width:100%;
            }
             #medical_box_167 > div{
               height:100%;
            }
            #medical_box_167 .mode2-size_167{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_167 .mode3-size_167{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_167 .mode4-size_167{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_167 .mode5-size_167{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_167 .mode6-size_167{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_167 .mode7-size_167{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_167 .mode7-size_167 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_167 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_167 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_167{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_167 span:hover{
                color:!important;
            }
            .custom2_167{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_167 span:hover{
                color:;
            }
            #medical_box_167 .mode-btn1_167{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_167 .mode-btn1_167 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_167 .mode-btn2_167{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_167 .mode-btn2_167 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_167 .div-btn-title_main_167{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_167 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_167 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_166 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726751043_hting-Upgrades.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_166 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_166 .background-img{
                border-radius:;
            }
        
            #medical_box_166 .new_medical_icon{
                
            }
        #medical_box_166 .new_medical_title{color:#daf2ff;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_72:hover .new_medical_title{}
                #medical_box_166 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_166 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_72:hover .new_medical_icon{}#medical_box_166.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_1972:hover{}#medical_box_166 .new_medical_description{color:#daf2ff;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_72:hover .new_medical_description{}
                #medical_box_166 
            
            #medical_box_166 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_166 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_166:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_166:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_166 .mode1-size_166{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_166 .new_medical_box > div{
                width:100%;
            }
             #medical_box_166 > div{
               height:100%;
            }
            #medical_box_166 .mode2-size_166{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_166 .mode3-size_166{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_166 .mode4-size_166{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_166 .mode5-size_166{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_166 .mode6-size_166{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_166 .mode7-size_166{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_166 .mode7-size_166 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_166 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_166 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_166{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_166 span:hover{
                color:!important;
            }
            .custom2_166{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_166 span:hover{
                color:;
            }
            #medical_box_166 .mode-btn1_166{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_166 .mode-btn1_166 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_166 .mode-btn2_166{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_166 .mode-btn2_166 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_166 .div-btn-title_main_166{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_166 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_166 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_170 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1726751338_umbing-Updates.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_170 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_170 .background-img{
                border-radius:;
            }
        
            #medical_box_170 .new_medical_icon{
                
            }
        #medical_box_170 .new_medical_title{color:#daf2ff;font-weight:bold;font-size:20px;text-align:left;margin-top:48px;line-height:24px;}#medical_box_72:hover .new_medical_title{}
                #medical_box_170 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_170 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:400px;border-style:none;border-color:#000;}#medical_box_136:hover .new_medical_icon{}#medical_box_170.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_1972:hover{}#medical_box_170 .new_medical_description{color:#daf2ff;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:16px;padding-bottom:64px;border-style:solid;border-color:#555;}#medical_box_72:hover .new_medical_description{}
                #medical_box_170 
            
            #medical_box_170 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_170 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_170:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_170:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_170 .mode1-size_170{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_170 .new_medical_box > div{
                width:100%;
            }
             #medical_box_170 > div{
               height:100%;
            }
            #medical_box_170 .mode2-size_170{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_170 .mode3-size_170{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_170 .mode4-size_170{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_170 .mode5-size_170{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_170 .mode6-size_170{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_170 .mode7-size_170{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_170 .mode7-size_170 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_170 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_170 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_170{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_170 span:hover{
                color:!important;
            }
            .custom2_170{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_170 span:hover{
                color:;
            }
            #medical_box_170 .mode-btn1_170{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_170 .mode-btn1_170 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_170 .mode-btn2_170{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_170 .mode-btn2_170 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_170 .div-btn-title_main_170{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_170 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_170 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_35 .new_medical_title_main{color:#ffffff;font-weight:bold;font-size:30px;justify-content:flex-start;text-align:left;margin-bottom:12px;line-height:50px;}.module[data-id_page='25']:hover .new_medical_title_main{}#module_new_medical_35 .new_medical_description_main{color:#daf2ff;font-weight:500;font-size:20px;line-height:30px;text-align:left;padding-right:440px;border-style:solid;border-color:#555;}.module[data-id_page='25']:hover .new_medical_description_main{}#module_new_medical_35 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;border-style:none;}.module[data-id_page='25']:hover .new_medical_box_main{}
            #module_new_medical_35 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_35 .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_35 .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_35 .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_35 .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_35 .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_35 .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_35 .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_35 .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_35 .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_35 .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_35 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_35 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_35 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_35 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_35 .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_35 .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_35 .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_35 .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_35 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_35 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_35 .prev-btn svg{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_35 .next-btn svg{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_35 .svg_prev{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_35 .svg_next{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_35 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_35 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_35 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_35 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_35 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_35 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_35 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_35 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_35 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_35{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_35 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_35 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_35 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_35 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_35 .swiper-container{
                width:1200px;
            }
            #module_new_medical_35 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_35 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_35 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_35 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='57']{;background-color:#23363d;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='57']:hover{;}.module[data-id_page='57']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='57'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='57'] 
            
            .module[data-id_page='57'] .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='57'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='57']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_36 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_36 .content_str{
				width:100%;
			}
            #module_new_medical_36 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_36 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_36 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_36 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_36 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_36 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_36 .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_36 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_36 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_36 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_36 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_36 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_36 .new_medical_description a,#module_new_medical_36 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_36 .new_medical_description a:hover,#module_new_medical_36 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_36 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_36 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_171 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_171 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_171 .background-img{
                border-radius:;
            }
        #medical_box_171 .new_medical_button{color:#2f4660;background-color:#ffffff;font-weight:500;font-size:16px;width:320px;height:50px;line-height:50px;text-align:center;margin-top:16px;margin-bottom:16px;border-radius:5px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#2f4660;box-shadow:0px 0px 0px 0px ;}#medical_box_171 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #medical_box_171 
            
            #medical_box_171 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_171 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_171:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_171:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_171 .mode1-size_171{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_171 .new_medical_box > div{
                width:100%;
            }
             #medical_box_171 > div{
               height:100%;
            }
            #medical_box_171 .mode2-size_171{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_171 .mode3-size_171{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_171 .mode4-size_171{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_171 .mode5-size_171{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_171 .mode6-size_171{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_171 .mode7-size_171{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_171 .mode7-size_171 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_171 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_171 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_171{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_171 span:hover{
                color:!important;
            }
            .custom2_171{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_171 span:hover{
                color:;
            }
            #medical_box_171 .mode-btn1_171{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_171 .mode-btn1_171 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_171 .mode-btn2_171{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_171 .mode-btn2_171 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_171 .div-btn-title_main_171{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_171 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_171 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_36 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='50']:hover .new_medical_box_main{}
            #module_new_medical_36 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_36 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_36 .medical_box_main_animation_trigger{
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_36 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_36 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_36 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_36 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_36 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_36 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_36 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_36 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_36{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_36 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_36 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_36 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_36 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_36 .swiper-container{
                width:1200px;
            }
            #module_new_medical_36 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_36 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_36 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_36 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='58']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:470px;margin-top:64px;border-style:none;border-bottom-width:1px;border-color:#daf2ff;}.module[data-id_page='58']:hover{;border-color:#40a9ff !important;}.module[data-id_page='58']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='58'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='58']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='58'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: brightness(0.6);
                }
            
                .module[data-id_page='58'] 
            
            .module[data-id_page='58'] .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='58'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='58']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='58']{
                               background-image:url("https://isletreno.ca/files/Services/1727008971_k-construction.webp");
                           }
                       
            #module_new_medical_37 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_37 .content_str{
				width:100%;
			}
            #module_new_medical_37 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_37 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_37 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_37 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_37 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_37 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_37 .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_37 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_37 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_37 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_37 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_37 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_37 .new_medical_description a,#module_new_medical_37 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_37 .new_medical_description a:hover,#module_new_medical_37 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_37 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_37 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_178 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_178 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_178 .background-img{
                border-radius:;
            }
        #medical_box_178 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:24px;}#medical_box_178:hover .new_medical_title{}
                #medical_box_178 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_178 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_178:hover .new_medical_icon{}#medical_box_178.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-right:16px;padding-left:16px;border-style:none;}#medical_box_178:hover{}#medical_box_178 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:12px;padding-bottom:12px;border-style:solid;border-color:#555;}#medical_box_178:hover .new_medical_description{}
                #medical_box_178 .new_medical_layer{padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;}#medical_box_178:hover .new_medical_layer{}
            
            #medical_box_178 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                left: -100%; top:0;
            }

            #medical_box_178 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_178:hover .new_medical_layer {
                border-radius: 0 !important;
                left:0;
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_178:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_178 .mode1-size_178{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_178 .new_medical_box > div{
                width:100%;
            }
             #medical_box_178 > div{
               height:100%;
            }
            #medical_box_178 .mode2-size_178{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_178 .mode3-size_178{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_178 .mode4-size_178{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_178 .mode5-size_178{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_178 .mode6-size_178{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_178 .mode7-size_178{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_178 .mode7-size_178 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_178 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_178 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_178{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_178 span:hover{
                color:!important;
            }
            .custom2_178{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_178 span:hover{
                color:;
            }
            #medical_box_178 .mode-btn1_178{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_178 .mode-btn1_178 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_178 .mode-btn2_178{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_178 .mode-btn2_178 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_178 .div-btn-title_main_178{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_178 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_178 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_177 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_177 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_177 .background-img{
                border-radius:;
            }
        #medical_box_177 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:24px;}#medical_box_177:hover .new_medical_title{}
                #medical_box_177 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_177 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_177:hover .new_medical_icon{}#medical_box_177.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-right:16px;padding-left:16px;border-style:none;}#medical_box_177:hover{}#medical_box_177 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:12px;border-style:solid;border-color:#555;}#medical_box_177:hover .new_medical_description{}
                #medical_box_177 .new_medical_layer{padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;}#medical_box_177:hover .new_medical_layer{}
            
            #medical_box_177 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                left: -100%; top:0;
            }

            #medical_box_177 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_177:hover .new_medical_layer {
                border-radius: 0 !important;
                left:0;
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_177:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_177 .mode1-size_177{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_177 .new_medical_box > div{
                width:100%;
            }
             #medical_box_177 > div{
               height:100%;
            }
            #medical_box_177 .mode2-size_177{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_177 .mode3-size_177{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_177 .mode4-size_177{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_177 .mode5-size_177{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_177 .mode6-size_177{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_177 .mode7-size_177{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_177 .mode7-size_177 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_177 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_177 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_177{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_177 span:hover{
                color:!important;
            }
            .custom2_177{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_177 span:hover{
                color:;
            }
            #medical_box_177 .mode-btn1_177{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_177 .mode-btn1_177 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_177 .mode-btn2_177{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_177 .mode-btn2_177 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_177 .div-btn-title_main_177{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_177 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_177 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_176 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_176 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_176 .background-img{
                border-radius:;
            }
        #medical_box_176 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:24px;}#medical_box_176:hover .new_medical_title{}
                #medical_box_176 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_176 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_176:hover .new_medical_icon{}#medical_box_176.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-right:16px;padding-left:16px;border-style:none;}#medical_box_176:hover{}#medical_box_176 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;height:150px;text-align:left;padding-top:12px;border-style:solid;border-color:#555;}#medical_box_176:hover .new_medical_description{}
                #medical_box_176 .new_medical_layer{padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;}#medical_box_176:hover .new_medical_layer{}
            
            #medical_box_176 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                left: -100%; top:0;
            }

            #medical_box_176 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_176:hover .new_medical_layer {
                border-radius: 0 !important;
                left:0;
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_176:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_176 .mode1-size_176{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_176 .new_medical_box > div{
                width:100%;
            }
             #medical_box_176 > div{
               height:100%;
            }
            #medical_box_176 .mode2-size_176{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_176 .mode3-size_176{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_176 .mode4-size_176{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_176 .mode5-size_176{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_176 .mode6-size_176{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_176 .mode7-size_176{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_176 .mode7-size_176 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_176 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_176 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_176{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_176 span:hover{
                color:!important;
            }
            .custom2_176{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_176 span:hover{
                color:;
            }
            #medical_box_176 .mode-btn1_176{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_176 .mode-btn1_176 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_176 .mode-btn2_176{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_176 .mode-btn2_176 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_176 .div-btn-title_main_176{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_176 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_176 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_175 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_175 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_175 .background-img{
                border-radius:;
            }
        #medical_box_175 .new_medical_title{color:#23363d;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:24px;}#medical_box_175:hover .new_medical_title{}
                #medical_box_175 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_175 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_175:hover .new_medical_icon{}#medical_box_175.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-right:16px;padding-left:16px;border-style:none;}#medical_box_175:hover{}#medical_box_175 .new_medical_description{color:#23363d;font-weight:400;font-size:16px;line-height:28px;text-align:left;padding-top:12px;border-style:solid;border-color:#555;}#medical_box_175:hover .new_medical_description{}
                #medical_box_175 .new_medical_layer{padding-top:64px;padding-bottom:64px;padding-right:24px;padding-left:24px;}#medical_box_175:hover .new_medical_layer{}
            
            #medical_box_175 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                left: -100%; top:0;
            }

            #medical_box_175 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_175:hover .new_medical_layer {
                border-radius: 0 !important;
                left:0;
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_175:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_175 .mode1-size_175{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_175 .new_medical_box > div{
                width:100%;
            }
             #medical_box_175 > div{
               height:100%;
            }
            #medical_box_175 .mode2-size_175{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_175 .mode3-size_175{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_175 .mode4-size_175{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_175 .mode5-size_175{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_175 .mode6-size_175{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_175 .mode7-size_175{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_175 .mode7-size_175 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_175 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_175 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_175{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_175 span:hover{
                color:!important;
            }
            .custom2_175{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_175 span:hover{
                color:;
            }
            #medical_box_175 .mode-btn1_175{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_175 .mode-btn1_175 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_175 .mode-btn2_175{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_175 .mode-btn2_175 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_175 .div-btn-title_main_175{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_175 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_175 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_37 .new_medical_title_main{color:#ffffff;font-weight:bold;font-size:30px;justify-content:flex-start;text-align:left;margin-top:62px;margin-bottom:12px;line-height:50px;}.module[data-id_page='58']:hover .new_medical_title_main{}#module_new_medical_37 .new_medical_description_main{color:#ffffff;font-weight:500;font-size:20px;line-height:30px;text-align:left;border-style:solid;border-color:#555;}.module[data-id_page='58']:hover .new_medical_description_main{}#module_new_medical_37 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:70px;padding-bottom:32px;border-style:none;}.module[data-id_page='58']:hover .new_medical_box_main{}
            #module_new_medical_37 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_37 .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_37 .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_37 .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_37 .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_37 .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_37 .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_37 .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_37 .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_37 .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_37 .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_37 .new_medical_description p{
                    height:90px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_37 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_37 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_37 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_37 .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_37 .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_37 .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_37 .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_37 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_37 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_37 .prev-btn svg{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_37 .next-btn svg{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_37 .svg_prev{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_37 .svg_next{
                    fill:#ffffff;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_37 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_37 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_37 .new_medical_description{ 
                    height:90px;
                    overflow: auto;
                }
                #module_new_medical_37 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_37 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_37 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_37 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_37 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_37 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_37{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_37 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_37 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_37 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_37 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_37 .swiper-container{
                width:1200px;
            }
            #module_new_medical_37 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_37 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_37 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_37 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='59']{;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='59']:hover{;}.module[data-id_page='59']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='59'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='59'] 
            
            .module[data-id_page='59'] .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='59'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='59']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_38 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_38 .content_str{
				width:100%;
			}
            #module_new_medical_38 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_38 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_38 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_38 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_38 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_38 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_38 .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_38 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_38 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_38 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_38 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_38 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_38 .new_medical_description a,#module_new_medical_38 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_38 .new_medical_description a:hover,#module_new_medical_38 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_38 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_38 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_180 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_180 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_180 .background-img{
                border-radius:;
            }
        #medical_box_180 .new_medical_button{color:#2f4660;background-color:#b6cfde ;font-weight:500;font-size:16px;width:310px;height:50px;line-height:50px;text-align:center;margin-top:16px;margin-bottom:16px;border-radius:5px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#2f4660;box-shadow:0px 0px 0px 0px ;}#medical_box_139 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #medical_box_180 
            
            #medical_box_180 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_180 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_180:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_180:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_180 .mode1-size_180{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_180 .new_medical_box > div{
                width:100%;
            }
             #medical_box_180 > div{
               height:100%;
            }
            #medical_box_180 .mode2-size_180{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_180 .mode3-size_180{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_180 .mode4-size_180{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_180 .mode5-size_180{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_180 .mode6-size_180{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_180 .mode7-size_180{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_180 .mode7-size_180 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_180 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_180 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_180{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_180 span:hover{
                color:!important;
            }
            .custom2_180{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_180 span:hover{
                color:;
            }
            #medical_box_180 .mode-btn1_180{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_180 .mode-btn1_180 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_180 .mode-btn2_180{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_180 .mode-btn2_180 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_180 .div-btn-title_main_180{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_180 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_180 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_38 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='50']:hover .new_medical_box_main{}
            #module_new_medical_38 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_38 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_38 .medical_box_main_animation_trigger{
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_38 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_38 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_38 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_38 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_38 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_38 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_38 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_38 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_38{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_38 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_38 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_38 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_38 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_38 .swiper-container{
                width:1200px;
            }
            #module_new_medical_38 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_38 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_38 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_38 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='60']{;background-color:#d2b48c;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='60']:hover{;}.module[data-id_page='60']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='60'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='60'] 
            
            .module[data-id_page='60'] .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='60'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='60']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_39 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_39 .content_str{
				width:100%;
			}
            #module_new_medical_39 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_39 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_39 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_39 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_39 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_39 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_39 .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_39 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_39 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_39 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_39 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_39 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_39 .new_medical_description a,#module_new_medical_39 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_39 .new_medical_description a:hover,#module_new_medical_39 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_39 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_39 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_195 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727010396_cing Materials.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_195 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_195 .background-img{
                border-radius:4px;
            }
        
            #medical_box_195 .new_medical_icon{
                
            }
        #medical_box_195 .new_medical_title{color:#000000;font-weight:bold;font-size:16px;text-align:center;margin-top:24px;}#medical_box_195:hover .new_medical_title{}
                #medical_box_195 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_195 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:250px;border-style:none;border-color:#000;}#medical_box_195:hover .new_medical_icon{}#medical_box_195.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;padding-right:16px;padding-left:16px;border-radius:4px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#78e4ff;}#medical_box_195:hover{}#medical_box_195 .new_medical_description{color:#000000;font-weight:300;font-size:14px;line-height:27px;text-align:center;padding-top:24px;border-style:solid;border-color:#555;}#medical_box_195:hover .new_medical_description{}
                #medical_box_195 
            
            #medical_box_195 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_195 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_195:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_195:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_195 .mode1-size_195{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_195 .new_medical_box > div{
                width:100%;
            }
             #medical_box_195 > div{
               height:100%;
            }
            #medical_box_195 .mode2-size_195{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_195 .mode3-size_195{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_195 .mode4-size_195{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_195 .mode5-size_195{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_195 .mode6-size_195{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_195 .mode7-size_195{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_195 .mode7-size_195 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_195 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_195 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_195{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_195 span:hover{
                color:!important;
            }
            .custom2_195{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_195 span:hover{
                color:;
            }
            #medical_box_195 .mode-btn1_195{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_195 .mode-btn1_195 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_195 .mode-btn2_195{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_195 .mode-btn2_195 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_195 .div-btn-title_main_195{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_195 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_195 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_194 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727010457_orative-Fences.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_194 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_194 .background-img{
                border-radius:4px;
            }
        
            #medical_box_194 .new_medical_icon{
                
            }
        #medical_box_194 .new_medical_title{color:#000000;font-weight:bold;font-size:16px;text-align:center;margin-top:24px;}#medical_box_194:hover .new_medical_title{}
                #medical_box_194 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_194 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:250px;border-style:none;border-color:#000;}#medical_box_194:hover .new_medical_icon{}#medical_box_194.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;padding-right:16px;padding-left:16px;border-radius:4px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#78e4ff;}#medical_box_194:hover{}#medical_box_194 .new_medical_description{color:#000000;font-weight:300;font-size:14px;line-height:27px;text-align:center;padding-top:24px;border-style:solid;border-color:#555;}#medical_box_194:hover .new_medical_description{}
                #medical_box_194 
            
            #medical_box_194 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_194 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_194:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_194:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_194 .mode1-size_194{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_194 .new_medical_box > div{
                width:100%;
            }
             #medical_box_194 > div{
               height:100%;
            }
            #medical_box_194 .mode2-size_194{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_194 .mode3-size_194{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_194 .mode4-size_194{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_194 .mode5-size_194{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_194 .mode6-size_194{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_194 .mode7-size_194{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_194 .mode7-size_194 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_194 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_194 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_194{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_194 span:hover{
                color:!important;
            }
            .custom2_194{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_194 span:hover{
                color:;
            }
            #medical_box_194 .mode-btn1_194{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_194 .mode-btn1_194 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_194 .mode-btn2_194{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_194 .mode-btn2_194 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_194 .div-btn-title_main_194{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_194 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_194 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_193 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727010521_custom-gates.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_193 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_193 .background-img{
                border-radius:4px;
            }
        
            #medical_box_193 .new_medical_icon{
                
            }
        #medical_box_193 .new_medical_title{color:#000000;font-weight:bold;font-size:16px;text-align:center;margin-top:24px;}#medical_box_193:hover .new_medical_title{}
                #medical_box_193 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_193 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:250px;border-style:none;border-color:#000;}#medical_box_193:hover .new_medical_icon{}#medical_box_193.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;padding-right:16px;padding-left:16px;border-radius:4px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#78e4ff;}#medical_box_193:hover{}#medical_box_193 .new_medical_description{color:#000000;font-weight:300;font-size:14px;line-height:27px;text-align:center;padding-top:24px;border-style:solid;border-color:#555;}#medical_box_193:hover .new_medical_description{}
                #medical_box_193 
            
            #medical_box_193 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_193 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_193:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_193:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_193 .mode1-size_193{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_193 .new_medical_box > div{
                width:100%;
            }
             #medical_box_193 > div{
               height:100%;
            }
            #medical_box_193 .mode2-size_193{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_193 .mode3-size_193{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_193 .mode4-size_193{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_193 .mode5-size_193{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_193 .mode6-size_193{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_193 .mode7-size_193{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_193 .mode7-size_193 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_193 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_193 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_193{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_193 span:hover{
                color:!important;
            }
            .custom2_193{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_193 span:hover{
                color:;
            }
            #medical_box_193 .mode-btn1_193{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_193 .mode-btn1_193 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_193 .mode-btn2_193{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_193 .mode-btn2_193 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_193 .div-btn-title_main_193{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_193 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_193 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_201 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/Services/1727010586_Fence-Repairs.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_201 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_201 .background-img{
                border-radius:4px;
            }
        
            #medical_box_201 .new_medical_icon{
                
            }
        #medical_box_201 .new_medical_title{color:#000000;font-weight:bold;font-size:16px;text-align:center;margin-top:24px;}#medical_box_201:hover .new_medical_title{}
                #medical_box_201 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_201 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:250px;border-style:none;border-color:#000;}#medical_box_201:hover .new_medical_icon{}#medical_box_201.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;padding-right:16px;padding-left:16px;border-radius:4px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#78e4ff;}#medical_box_201:hover{}#medical_box_201 .new_medical_description{color:#000000;font-weight:300;font-size:14px;line-height:27px;text-align:center;padding-top:24px;border-style:solid;border-color:#555;}#medical_box_201:hover .new_medical_description{}
                #medical_box_201 
            
            #medical_box_201 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_201 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_201:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_201:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_201 .mode1-size_201{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_201 .new_medical_box > div{
                width:100%;
            }
             #medical_box_201 > div{
               height:100%;
            }
            #medical_box_201 .mode2-size_201{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_201 .mode3-size_201{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_201 .mode4-size_201{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_201 .mode5-size_201{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_201 .mode6-size_201{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_201 .mode7-size_201{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_201 .mode7-size_201 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_201 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_201 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_201{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_201 span:hover{
                color:!important;
            }
            .custom2_201{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_201 span:hover{
                color:;
            }
            #medical_box_201 .mode-btn1_201{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_201 .mode-btn1_201 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_201 .mode-btn2_201{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_201 .mode-btn2_201 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_201 .div-btn-title_main_201{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_201 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_201 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_39 .new_medical_title_main{color:#000000;font-weight:bold;font-size:30px;justify-content:center;text-align:center;margin-top:32px;line-height:50px;}.module[data-id_page='60']:hover .new_medical_title_main{}#module_new_medical_39 .new_medical_description_main{color:#000000;font-weight:500;font-size:17px;line-height:40px;text-align:justify;margin-top:24px;border-style:solid;border-color:#555;}.module[data-id_page='60']:hover .new_medical_description_main{}#module_new_medical_39 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:32px;border-style:none;}.module[data-id_page='60']:hover .new_medical_box_main{}
            #module_new_medical_39 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_39 .new_medical_module{
                    width:584px;
                    position:relative;
                    overflow:hidden;
                    margin-right:32px;
                    margin-bottom:24px;
                }
                #module_new_medical_39 .medical_box_main_animation_trigger{
                    margin-right:32px;
                    margin-bottom:24px;
                }
                #module_new_medical_39 .new_medical_module:nth-child(2n){
                    margin-right:0;
                }
                #module_new_medical_39 .medical_box_main_animation_trigger:nth-child(2n){
                    margin-right:0;
                }
                #module_new_medical_39 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_39 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_39 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_39 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_39 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_39 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_39{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_39 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_39 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_39 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_39 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_39 .swiper-container{
                width:1200px;
            }
            #module_new_medical_39 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_39 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_39 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_39 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='61']{;background-color:#d2b48c;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='61']:hover{;}.module[data-id_page='61']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='61'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='61'] 
            
            .module[data-id_page='61'] .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='61'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='61']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_40 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_40 .content_str{
				width:100%;
			}
            #module_new_medical_40 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_40 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_40 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_40 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_40 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_40 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_40 .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_40 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_40 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_40 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_40 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_40 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_40 .new_medical_description a,#module_new_medical_40 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_40 .new_medical_description a:hover,#module_new_medical_40 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_40 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_40 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_200 .new_medical_icon{
                background-image:url("https://isletreno.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_200 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_200 .background-img{
                border-radius:;
            }
        #medical_box_200 .new_medical_button{color:#2f4660;background-color:#ffffff;font-weight:500;font-size:16px;width:300px;height:50px;line-height:50px;text-align:center;margin-top:16px;margin-bottom:16px;border-radius:5px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#2f4660;box-shadow:0px 0px 0px 0px ;}#medical_box_137 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #medical_box_200 
            
            #medical_box_200 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_200 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_200:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_200:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_200 .mode1-size_200{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_200 .new_medical_box > div{
                width:100%;
            }
             #medical_box_200 > div{
               height:100%;
            }
            #medical_box_200 .mode2-size_200{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_200 .mode3-size_200{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_200 .mode4-size_200{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_200 .mode5-size_200{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_200 .mode6-size_200{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_200 .mode7-size_200{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_200 .mode7-size_200 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_200 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_200 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_200{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_200 span:hover{
                color:!important;
            }
            .custom2_200{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_200 span:hover{
                color:;
            }
            #medical_box_200 .mode-btn1_200{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_200 .mode-btn1_200 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_200 .mode-btn2_200{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_200 .mode-btn2_200 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_200 .div-btn-title_main_200{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_200 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_200 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_40 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='50']:hover .new_medical_box_main{}
            #module_new_medical_40 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_40 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_40 .medical_box_main_animation_trigger{
                    margin-right:32px;
                    margin-bottom:px;
                }
                #module_new_medical_40 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_40 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_40 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_40 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_40 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_40 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_40 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_40 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                    width: fit-content;
                    margin-left: 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_40{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_40 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_40 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_40 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_40 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_40 .swiper-container{
                width:1200px;
            }
            #module_new_medical_40 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_40 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_40 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_40 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        
            body{
                position: relative;
            }
            .dno{
                display: none!important;
            }
            .public-header{
                position: relative;
                transition:5s;
            }
            .absolute-container{
                background-color: #ee273a;
                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: #3c5059;
                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 #3c5059 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: #ffffff;
                    background-size: auto;
                    background-repeat: no-repeat;
                }
            
            .adv-banner-container{
                width: 100%;
                height: 10px;
            }
            .adv-banner-container .adv-item{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .top-bar-container{
                width: 100%;
                min-height: 40px;
                height: 40px;
                background: #222 ;
                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: 16px;
                height: 16px;
            }
            .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: #777;
            }
            .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-left : 0;
                }
                .top-list:last-child{
                    margin-right : 0;
                }
            
            .arrow-menu-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-list a span,
            .top-list span{
                color: #777;
                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-left: 0;
            }
            .top-navbar{
                height: 100%;
                background: transparent;
            }
            .top-nav-list{
                position: relative;
                height: 100%;
                padding: 0 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-nav-list a span,
            .top-nav-list span{
                color: #000;
                font-size: 0px;
                font-weight: 200;search
            }
            .top-nav-list:hover{
                background-color: #fff;
            }
            .top-nav-list .arrow-menu-container svg{
                fill: #000;
            }
            .top-nav-list:hover a span,
            .top-nav-list:hover span,
            .top-nav-list:hover .arrow-menu-container svg{
                color: #fff;
                fill: #fff;
            }
            .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: #fff;
            }
            
            .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{
                    left: 0;
                }
                .top-sub-list{
                    border-right: 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: #fff;
            }
            .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: 8px;
                padding-bottom: 8px;
                padding-left: 8px;
                padding-right: 8px;
            }
            .top-section-1{
                grid-area: top-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-2{
                grid-area: top-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-3{
                grid-area: top-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
            }
            .logo-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                padding: 4px  4px;
            }
            .logo-container img{
                display: block;
                width: 220px;
                height: 60px;
                max-width: 220px;
                max-height: 60px;
                object-fit: contain;
            }
            .nav-container{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                box-sizing: border-box;
                margin: 0 10px;
            }
            .nav-container > .navbar{
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                background: #ffffff;
                box-sizing: border-box;
                border: px  solid  ;
                border-radius: 3px;
            }
            
                .nav-container > .navbar{
                    margin-right: 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: #2f4660 ;
            }
            .nav-container .navbar .nav-list.active a,
            .nav-container .navbar .nav-list.active span{
                color: #ffffff;
            }
            
            .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:  ;
            }
            .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: #2f4660 ;
            }
            .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
            .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                display: flex;
                top: 45px;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                display: flex;
                right: calc(100%  +  5px);
                top: 0;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
                    .nav-container .navbar.navbar-sub{
                        flex-direction: column;
                        justify-content: center;
                        align-content: flex-start;
                        min-width: 150px;
                        width: max-content;
                    }
                    .nav-container .navbar.navbar-sub .nav-list{
                        width: 100%;
                        border-right: 5px solid #ffffff;
                    }
                    .nav-container .navbar.navbar-sub{
                        position: absolute;
                        z-index: 4999;
                        background: #2f4660 ;
                        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{
                        left: 0;
                        border-radius: 0 !important;
                    }
                    .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                        left: calc(100%  +  5px);
                    }
                    .nav-container .navbar.navbar-sub .nav-list{
                        width: 200px;
                        border-right: 5px solid #ffffff;
                        border-radius: 0 !important;
                    }
                
                .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
                .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                    left: 0;
                }
                .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                    left: calc(100%  +  5px);
                }
            
            .arrow-icon-menu{
                width: 8px;
                height: 8px;
            }
            .arrow-icon-menu.arrow-bottom{
                transform: rotate(90deg);
            }
            
                .arrow-menu-container{
                    margin-left: 5px;
                }
                .arrow-icon-menu.arrow-right,
                .overflow-list .arrow-icon-menu.arrow-bottom{
                    transform: rotate(0deg);
                }
                .nav-container .navbar .nav-list:first-child:hover{
                    border-radius: 3px 0 0 3px;
                }
                .nav-container .navbar .nav-list:last-child:hover{
                    border-radius: 0 3px 3px 0;
                }
            
            .nav-container .navbar .nav-list.base-level svg,
            .nav-container .navbar .nav-list .overflow-menu svg{
                fill: #2f4660 ;
            }
            .nav-container .navbar .nav-list.base-level:hover svg{
                fill: ;
            }
            .sub-menu-container{
                position: absolute;
                min-width: 150px;
                background-color: #2f4660 ;
                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: #ffffff;
                font-size: 12px;
            }
            .nav-list.with-sub-menu:hover .sub-menu-container{
                display: block;
            }
            .nav-container .navbar.navbar-sub .nav-list .arrow-menu-container svg{
                fill: #ffffff;
            }
            .active{
                background-color: #2f4660 ;
            }
            .active a{
                color: #ffffff;
            }     
            .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-left: 0 !important;
                }
                .icon-container .icon-item:last-child{
                    margin-right: 0 !important;
                }
            
            
            .icon-container .icon-item a{
                border: 0px  solid  ;
            }
            .icon-container .icon-item.basket-icon{
                position: relative;
                color: #e84118;
                min-width: 45px;
                min-height: 45px;
                outline: none;
                border-radius: 3px;
                background: #2c3e50;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                text-decoration: none;
                margin: 0 10px;
            }
            .icon-container .icon-item .icon-shortcut{
                color: #e84118;
                min-width: 45px;
                min-height: 45px;
                margin: 0;
                outline: none;
                border-radius: 3px;
                background: #2c3e50;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                transition: .4s;
                cursor: pointer;
                text-decoration: none;
            }
            
            .basket-shop{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 45px;
                height: 45px;
                border-radius: 3px;
            }
            .icon-container .icon-item .icon-shortcut:hover svg,
            .icon-container .icon-item .icon-shortcut:hover .add-item-to-cart.open span
            {
                fill: #fff;
                color: #fff;
            }
            
                .icon-container .icon-item.basket-icon .add-item-to-cart{
                    color: #e84118;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    transition: .4s;
                    cursor: pointer;
                    box-sizing: content-box;
                    border: 0px  solid  ;
                }
                
                    .icon-container .icon-item.basket-icon .add-item-to-cart{
                        border-right: none !important;
                    }
                    .border-basket{
                        border-left: none !important;
                    }
                
                    .icon-container .icon-item:hover > span,
                    .icon-container .icon-item.login-icon:hover span{
                        color: #fff;
                    }
                    .icon-container .icon-item.basket-icon .icon-shortcut:hover,
                    .icon-container .icon-item.login-icon .icon-shortcut:hover,
                    
                    .icon-container .icon-item.basket-icon .icon-shortcut:hover .add-item-to-cart{
                       background: #3e5772;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open{
                        width: 45px;
                        border-radius: 0 3px 3px 0;
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                    }
                    .icon-container .icon-item.basket-icon:hover .add-item-to-cart.open{
                        background: #3e5772;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open:hover span{
                        color: #fff;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open + .icon-shortcut{
                        border-radius: 3px 0 0 3px;
                    }
                    .icon-container .icon-item.lang-icon .icon-shortcut:hover{
                        background: #3e5772;
                    }
                    .icon-container .icon-item.search-icon .icon-shortcut .search-container .search-btn:hover{
                        background: #3e5772;
                    }
                 
            .icon-container .icon-item svg{
                width: 25px;
                height: 25px;
            
                fill: #e84118;
            
            }
            .icon-container .icon-item.login-icon{
                position: relative;
            }
            /*.icon-container .icon-item.login-icon .icon-shortcut{
                width: 100%;
                height: 100%;
            }*/
            .icon-container .icon-item.login-icon .icon-login{
                width: 25px;
                height: 25px;
            }
            #div_profile_picture, 
            #div_profile_picture_metro {
                display: 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: #e84118;
                    /*width: 90px !important;*/
                    min-height: 45px;
                    outline: none;
                    border-radius: 3px;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    text-decoration: none;
                    box-sizing: content-box;
                    border: 0px  solid  ;
                }
                .icon-container .icon-item.login-icon .status-user,
                .icon-container .icon-item.login-icon .icon-login{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    margin: 0 5px;
                    font-size:14px;
                }
            
            .public-header .bottom-section-1{
                grid-area: bottom-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-2{
                grid-area: bottom-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-3{
                grid-area: bottom-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            
                .icon-container .icon-item{
                    width: unset;
                    height: unset;
                }
                .search-icon{
                    position: relative;
                }
                .search-container {
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-end;
                    align-items: center;
                    height: 100%;
                    position: relative;
                    border-radius: 3px;
                    min-width: 45px;
                }
                .search-container > .search-btn svg,
                .search-container > .close-search-btn svg{
                    fill: #e84118;
                }
                .search-container > .search-btn:hover svg,
                .search-container > .close-search-btn:hover svg{
                    fill: #fff;
                }
                .search-btn {
                    color: #fff;
                    width: 45px;
                    height: 45px;
                    margin: 0;
                    outline: none;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    transition: .8s;
                    cursor: pointer;
                    text-decoration: none;
                    border: 0px  solid  transparent;
                }
                
                .icon-container .icon-item img{
                    width: 25px;
                    height: 25px;
                    object-fit:contain;
                }
                
                    .search-container.open-search-box .search-btn{
                        border-radius: 0 3px 3px 0 !important;
                    }
                    .search-container.open-search-box .close-search-btn{
                        border-radius: 3px 0 0 3px !important;
                    }    
                 
                .search-btn,
                .search-command,
                .close-search-btn{
                    box-sizing: content-box;
                }
                .search-btn > svg {
                    fill: #fff;
                }
                .cls-pls::placeholder{
                    color: ;
                }
                .search-input {
                    padding: 0;
                    height: 100%;
                    background: #2c3e50;
                    color: #fff;
                    font-size: 14px;
                    font-weight: normal;
                    transition: all 1s ease-in-out;
                    width: 0;
                    position: absolute;
                    top: 0;
                    overflow: hidden;
                    white-space: nowrap;
                    border: 0px  solid  transparent;
                }
                
                .open-search-box > .search-input{
                    padding : 10px 48px;
                }
                
                    .search-input {
                        right: calc(0px + 45px);
                        border-right: none;
                        border-left: none;
                    }
                
                        .search-container.open-search-box .search-btn{
                            border-radius: 0 3px 3px 0 !important;
                        }
                        .search-container.open-search-box .close-search-btn{
                            border-radius: 3px 0 0 3px !important;
                        }
                        .search-container.open-search-box .search-input{
                            border-radius: 3px 0 0 3px !important;
                        }    
                    
                .close-search-btn{
                    position: absolute;
                    color: #fff;
                    width: 45px;
                    height: 45px;
                    margin: 0;
                    outline: none;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    box-sizing: border-box;
                    box-sizing: border-box;
                }
                .close-search-btn svg{
                    fill: #e84118;
                }
            
            .sticky{
                width: 100vw;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 999;
                padding: 2vh 8vw;
                transition: .8s;
                background-color: #ddd !important;
            }
            .public_sticky{
                width: 100%;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 1001;
            }
            .d-none{
                display: none !important;
            }
            .border-left-n{
                border-left: none !important;
            }
            .border-right-n{
                border-right: none !important;
            }
            .w-1200px{
                width: 1200px !important;
                margin: auto;
            }
            .lang-icon{
                position: relative;
            }
            .language-container .lang-btn{
                width: 25px;
                height: 25px;
            }
            .lang-list-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .lang-list{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px;
                background: #2c3e50;
                border-radius: 3px;
            }
            .lang-list::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #2c3e50;
                display: block;
            }
            .lang-nav{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
            }
            .lang-nav .lang-li{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                list-style: none;
                width: max-content;
                margin: 5px 0;
                
            }
            .lang-nav .lang-li a{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .lang-nav .lang-li img{
                width: 25px;
                height: 25px;
                object-fit: cover;
                margin: 0 4px;
            }
            .lang-nav .lang-li span{
                text-transform: uppercase;
                line-height: 2.5;
                font-size: 14px;
                margin: 0 4px;
                color: #fff;
            }
            .lang-nav .lang-li a{
                color: #fff;
            }
            .lang-nav .lang-li span:hover{
                cursor: pointer;
                color: #fff;
            }
            .lang-nav .lang-li .lang-active{
                font-weight: bold;
                color: #e84118;
            }
            .icon-item.lang-icon:hover .lang-list-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            /*---------------------------------------------------------------------------------*/
            .link-profile-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .link-profile-container .link-wrapper{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px 25px;
                background: #2c3e50;
                border-radius: 3px;
            }
            .link-profile-container .link-wrapper a{
                color: #fff;
            }
            .link-profile-container .link-wrapper a:hover{
                cursor: pointer;
                color: #fff;
            }
            .link-profile-container .link-wrapper::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #2c3e50;
                display: block;
            }
             .icon-item.login-icon:hover .link-profile-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            
            .backTop{
                display: flex !important;
            }
            #back_to_top{
                display: none;
                position: fixed;
                transition: 600ms;
                right: 25px;
                left: unset;
                bottom: 50px;
                z-index: 100;
                border-radius: 50%;
                border: 1px  solid  #000;
                padding: 15px;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: #777 ;
            }
            #back_to_top svg{
                width: 24px;
                height: 24px;
                fill: #fff ;
            }
            #back_to_top img{
                width: 24px;
                height: 24px;
                fill: #fff ;
                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;  
                        grid-template-columns: 220px minmax(auto, 100%) 1fr;
                        grid-template-areas: 
                            "top-1 top-2 top-3"; 
                    }
                    .top-section-1{
                        justify-content: flex-start;
                    }
                    .top-section-2{
                        justify-content: flex-start;
                    }
                    .logo-container{
                        justify-content: flex-start;
                    }
                    .nav-container{
                        justify-content: flex-start;
                    }
                    .nav-container .navbar{
                        justify-content: flex-start;
                    }
                    .width-full{
                        width: 100% !important;
                    }
                #module_footer_section_1{
;
width:100%;
padding-top:4%;
padding-right:8vw;
padding-bottom:4%;
padding-left:8vw;
border-style:none;
}#module_footer_column_1{
;
width:33%;
border-style:none;
}#module_footer_row_1{
;
border-style:solid;
border-bottom-width:.015vw;
border-color:#ebedf2;
}#module_footer_items_1{
;
cursor:default;
width:20vw;
height:7vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
padding-bottom:1vw;
}#module_footer_items_1:hover{
;
}#module_footer_row_2{
;
padding-top:1vw;
padding-bottom:1vw;
border-style:none;
border-color:#ebedf2;
}#module_footer_items_2{
;
cursor:default;
line-height:2vw;
color:#2f4660 ;
font-weight:300;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_2:hover{
;
}#module_footer_row_3{
;
padding-bottom:1vw;
border-style:solid;
border-bottom-width:.015vw;
border-color:#ebedf2;
}#module_footer_items_4{
;
cursor:pointer;
width:3.5vw;
height:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-top-left-radius:.5vw;
border-top-right-radius:.5vw;
border-bottom-right-radius:.5vw;
border-bottom-left-radius:.5vw;
border-style:none;
margin-right:2vw;
}#module_footer_items_4:hover{
;
}#module_footer_items_5{
;
cursor:pointer;
width:3.5vw;
height:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-top-left-radius:.5vw;
border-top-right-radius:.5vw;
border-bottom-right-radius:.5vw;
border-bottom-left-radius:.5vw;
border-style:none;
margin-right:2vw;
}#module_footer_items_5:hover{
;
}#module_footer_items_6{
;
cursor:pointer;
width:3.5vw;
height:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-top-left-radius:.5vw;
border-top-right-radius:.5vw;
border-bottom-right-radius:.5vw;
border-bottom-left-radius:.5vw;
border-style:none;
margin-right:2vw;
}#module_footer_items_6:hover{
;
}#module_footer_items_7{
;
cursor:pointer;
width:3.5vw;
height:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-top-left-radius:.5vw;
border-top-right-radius:.5vw;
border-bottom-right-radius:.5vw;
border-bottom-left-radius:.5vw;
border-style:none;
margin-right:2vw;
}#module_footer_items_7:hover{
;
}#module_footer_items_8{
;
cursor:pointer;
width:3.5vw;
height:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-top-left-radius:.5vw;
border-top-right-radius:.5vw;
border-bottom-right-radius:.5vw;
border-bottom-left-radius:.5vw;
border-style:none;
}#module_footer_items_8:hover{
;
}#module_footer_row_4{
;
padding-top:1vw;
padding-bottom:1vw;
border-style:none;
}#module_footer_items_9{
;
cursor:default;
width:50%;
line-height:2vw;
color:#2f4660 ;
font-weight:500;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_9:hover{
;
}#module_footer_items_10{
;
cursor:pointer;
text-align:right;
width:50%;
line-height:2vw;
color:#2f4660 ;
font-weight:300;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_10:hover{
;
}#module_footer_column_2{
;
width:36%;
margin-top:0px;
padding-left:8%;
border-style:none;
}#module_footer_row_5{
;
margin-top:0px;
border-style:none;
}#module_footer_items_11{
;
cursor:default;
line-height:2vw;
color:#2f4660 ;
font-weight:bold;
font-size:1.1vw;
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_6{
;
padding-top:2vw;
border-style:none;
}#module_footer_items_12{
;
cursor:pointer;
color:#2f4660 ;
font-weight:300;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_12:hover{
;
}#module_footer_row_7{
;
padding-top:.5vw;
border-style:none;
}#module_footer_items_13{
;
cursor:pointer;
color:#2f4660 ;
font-weight:300;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_13:hover{
;
}#module_footer_row_11{
;
margin-top:1.5vw;
border-style:none;
}#module_footer_items_17{
;
cursor:default;
line-height:1.85vw;
color:#2f4660 ;
font-weight:300;
font-size:1.08vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_17:hover{
;
}#module_footer_column_3{
;
width:30%;
margin-top:0px;
padding-left:4%;
border-style:none;
}#module_footer_items_19{
;
cursor:default;
line-height:2vw;
color:#2f4660 ;
font-weight:bold;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_19:hover{
;
}#module_footer_items_20{
;
cursor:default;
color:#2f4660 ;
font-weight:300;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:2vw;
}#module_footer_items_20:hover{
;
}#module_footer_items_21{
;
cursor:default;
color:#2f4660 ;
font-weight:300;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
}#module_footer_items_21:hover{
;
}#module_footer_column_4{
;
width:30%;
margin-top:0px;
padding-left:4%;
border-style:none;
}#module_footer_items_25{
;
cursor:default;
line-height:2vw;
color:#2f4660 ;
font-weight:bold;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_25:hover{
;
}#module_footer_items_26{
;
cursor:default;
color:#2f4660 ;
font-weight:300;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:2vw;
}#module_footer_items_26:hover{
;
}#module_footer_items_27{
;
cursor:default;
color:#2f4660 ;
font-weight:300;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
}#module_footer_items_27:hover{
;
}#module_footer_items_28{
;
cursor:default;
color:#2f4660 ;
font-weight:300;
font-size:1.1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
}#module_footer_items_28:hover{
;
}#public_footer_main_1{;background-color:#fff;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: ltr;text-align: left;}