/**
 * 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;
}/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 99; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 99;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}
            .col۱۰{
                width: 9.5%;
                display: inline-block;
            }
            .col۴۰{
                width: 39.5%;
                display: inline-block;
            }
            .col۵۰{
                width: 49.5%;
                display: inline-block;
            }
            .col۸۰{
                width: 79.5%;
                display: inline-block;
            }
            .fs۱۸{font-size: 18px}
        
            .color-black{color: black!important;}
            .color_blue{
                color:#0084ff;
            }
            #iranlandmark_pc_64{
                margin-top:0px;
                margin-bottom:0px;
                font-size:14px;
                padding-top:0px;
                padding-bottom:0px;
                background-color:;
                font-weight:500;
            }
            #iranlandmark_pc_64 .box-np{
                border:1px solid #e8e7e7;
                padding:10px;
                vertical-align:top;
                background-color:;
                border-radius: 5px;
                margin-bottom:10px;
            }
            .slider_box{
                min-height:460px;
            }
            #iranlandmark_pc_64 .box-np-dsc{
                margin-right:20px;
                padding:10px;
                margin-bottom:10px;
                border-bottom:2px solid #e8e7e7;
            }
            #iranlandmark_pc_64 .box-np-dsc:last-child {
                border:none !important;
            }
            #iranlandmark_pc_64 .box-np-dsc span{
                font-size:18px;
                font-weight:600;
                vertical-align:middle;
                margin-right:10px;
            }
            #iranlandmark_pc_64 .box-np-dsc i{
                font-size:26px;
                vertical-align:middle;
            }
            #iranlandmark_pc_64 .box-np-dsc img{
                width:100%;
            }
            /*.tour_description{
                min-height:200px;
            }*/
            #iranlandmark_pc_64 .facility{
                margin: 5px;
                padding: 10px 15px;
                border: 1px solid #d7d7d7;
                border-radius: 4px;
            }
            #iranlandmark_pc_64 .facility span{
                font-size:14px;
                font-weight:500;
                white-space:nowrap;
            }
            #iranlandmark_pc_64 .facility:hover span{
                color:#f50000;
            }
            #iranlandmark_pc_64 .facility img{
                width:50px;
                height:50px;
                -webkit-transition: .5s;-moz-transition:  .5s;-ms-transition:  .5s;-o-transition:  .5s;transition:  .5s;
            }
            #iranlandmark_pc_64 .facility:hover img{
                -webkit-transform: scale(1.1);-moz-transform: scale(1.1);-ms-transform: scale(1.1);-o-transform: scale(1.1);transform: scale(1.1);
            }
            #iranlandmark_pc_64 .plan-bb2{
                border:1px solid #eee;
                border-radius:4px;
                margin-top:20px;
                padding:5px !important;
            }
            #iranlandmark_pc_64 .plan{
                border-bottom:1px solid #eee;
                padding:5px 0;
                width:100%;
                text-align:center;
            }
            #iranlandmark_pc_64 .plan:last-child{
                border-bottom:none;
            }
            #iranlandmark_pc_64 .plan span{
                font-weight:400;
                font-size:14px;
            }
            #iranlandmark_pc_64 .plan:first-child span{
                font-weight:500;
                font-size:16px;
                padding:5px 0;
            }
            #iranlandmark_pc_64 .rule{
                display:flex;
                margin-bottom:25px;
            }
            #iranlandmark_pc_64 .rule span:first-child{
                min-width:150px;
                font-size:14px;
                font-weight:600;
            }
            #iranlandmark_pc_64 .rule span:last-child{
                font-size:14px;
                font-weight:500;
            }
            #iranlandmark_pc_64 #container{
                width:840px;
                margin-left:5px;
            }
            #iranlandmark_pc_64 .slider_con{
                position:relative;
            }
            #iranlandmark_pc_64 .sa-img .slider_con{
                display:none;
            }
            #iranlandmark_pc_64 .bsa-img{
                text-align:center;
                background-color:;
                border-radius: 5px;
                display:none;
            }
            #iranlandmark_pc_64 .sa-img .bsa-img{
                display:block;
            }
            #iranlandmark_pc_64 .bsa-img img{
                margin:5px 0;
                height:400px;
                width:100%;
                object-fit:cover;
            }
            #iranlandmark_pc_64 .absolute_box{
                padding: 4px 13px;
                color:#1a1a1a;
                background: #fff;
                position:absolute;
                bottom:0;
                z-index:99;
                font-weight:600;
            }
            #iranlandmark_pc_64 .camera-icon{
                right:0;
                border-radius: 4px 0 0 0;
            }
            #iranlandmark_pc_64 .show-all-img{
                left:0;
                border-radius: 0 4px 0 0;
            }
            #iranlandmark_pc_64 #sidebar{
                width:350px;
                text-align:center;
                position: -webkit-sticky;
                position: sticky;
                /*top: 70px;*/
                top: 102px;
                padding: 5px;
                min-height:540px;
            }
            #iranlandmark_pc_64 .img_pro{
                width:75px;
                height:75px;
                border-radius:50%;
                margin:10px auto;
            }
            #iranlandmark_pc_64 .img_pro img{
                width:100%;
                height:100%;
            }
            #iranlandmark_pc_64 .name_pro{
                margin-top:20px;
            }
            #iranlandmark_pc_64 .details_pro{
                color:#777;
                margin:5px 0;
            }
            #iranlandmark_pc_64 button,#iranlandmark_pc_64 a.reservation_link{
                padding: 7px 30px;
                border: none;
                background-color: #005d9c;
                color: white;
                font-size:18px;
                margin-bottom:10px;
                border-radius: 3px;
                cursor: pointer;
                -webkit-box-shadow: 0 14px 26px -12px rgba(3,169,244,.42), 0 4px 23px 0 rgba(0,0,0,.12), 0 8px 10px -5px rgba(3,169,244,.2);
                -moz-box-shadow: 0 14px 26px -12px rgba(3,169,244,.42), 0 4px 23px 0 rgba(0,0,0,.12), 0 8px 10px -5px rgba(3,169,244,.2);
                box-shadow: 0 14px 26px -12px rgba(155, 224, 255, 0.42), 0 4px 23px 0 rgba(158, 158, 158, 0.12), 0 8px 10px -5px rgba(129, 199, 255, 0.2);
            }
            #iranlandmark_pc_64 button.tour_reserve{
                background-color: #17761e;
                -webkit-box-shadow:0 14px 26px -12px rgba(68, 220, 122, 0.42), 0 4px 23px 0 rgba(102, 102, 102, 0.12), 0 8px 10px -5px rgba(79, 229, 119, 0.2);
                -moz-box-shadow:0 14px 26px -12px rgba(68, 220, 122, 0.42), 0 4px 23px 0 rgba(102, 102, 102, 0.12), 0 8px 10px -5px rgba(79, 229, 119, 0.2);
                box-shadow:0 14px 26px -12px rgba(68, 220, 122, 0.42), 0 4px 23px 0 rgba(102, 102, 102, 0.12), 0 8px 10px -5px rgba(79, 229, 119, 0.2);
            }
            #iranlandmark_pc_64 button.tour_reserve:hover{
                -webkit-box-shadow:0 14px 26px -12px rgba(11, 170, 97, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(31, 181, 84, 0.2);
                -moz-box-shadow:0 14px 26px -12px rgba(11, 170, 97, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(31, 181, 84, 0.2));
                box-shadow:0 14px 26px -12px rgba(11, 170, 97, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(31, 181, 84, 0.2);
            }
            #iranlandmark_pc_64 button.tour_not_available{
                background-color: #631514;
                cursor:unset;
                -webkit-box-shadow:0 14px 26px -12px rgba(99, 21, 20, 0.42), 0 4px 23px 0 rgba(99, 21, 20, 0.12), 0 8px 10px -5px rgba(99, 21, 20, 0.2);
                -moz-box-shadow:0 14px 26px -12px rgba(99, 21, 20, 0.42), 0 4px 23px 0 rgba(99, 21, 20, 0.12), 0 8px 10px -5px rgba(99, 21, 20, 0.2);
                box-shadow:0 14px 26px -12px rgba(99, 21, 20, 0.42), 0 4px 23px 0 rgba(99, 21, 20, 0.12), 0 8px 10px -5px rgba(99, 21, 20, 0.2);
            }
            #iranlandmark_pc_64 button.tour_not_available:hover{
                -webkit-box-shadow:0 14px 26px -12px rgba(99, 21, 20, 0.42), 0 4px 23px 0 rgba(99, 21, 20, 0.12), 0 8px 10px -5px rgba(99, 21, 20, 0.2);
                -moz-box-shadow:0 14px 26px -12px rgba(99, 21, 20, 0.42), 0 4px 23px 0 rgba(99, 21, 20, 0.12), 0 8px 10px -5px rgba(99, 21, 20, 0.2);
                box-shadow:0 14px 26px -12px rgba(99, 21, 20, 0.42), 0 4px 23px 0 rgba(99, 21, 20, 0.12), 0 8px 10px -5px rgba(99, 21, 20, 0.2);
            }
            #iranlandmark_pc_64 #sidebar button,#iranlandmark_pc_64 #sidebar a.reservation_link{
                width:100%;
            }
            #iranlandmark_pc_64 button:hover{
                -webkit-box-shadow:0 14px 26px -12px rgba(12, 78, 170, 0.42), 0 4px 23px 0 rgba(0,0,0,.12), 0 8px 10px -5px rgba(3, 122, 181, 0.2);
                -moz-box-shadow:0 14px 26px -12px rgba(12, 78, 170, 0.42), 0 4px 23px 0 rgba(0,0,0,.12), 0 8px 10px -5px rgba(3, 122, 181, 0.2);
                box-shadow:0 14px 26px -12px rgba(12, 78, 170, 0.42), 0 4px 23px 0 rgba(0,0,0,.12), 0 8px 10px -5px rgba(3, 122, 181, 0.2);
            }
            #star_location_p i{
                color:#ffc000;
            }
            #iranlandmark_pc_64 .title_pro{
                padding: 5px;
                margin-bottom: 10px;
                font-size: 18px;
                font-weight: 600;
            }
            #iranlandmark_pc_64 .details-bb2{
                color:#2e2e2e;
                font-size:14px;
                font-weight:400;
                padding:20px 10px;
            }
            #iranlandmark_pc_64 .agent-box{
                padding: 15px 20px;
                color: #3f3f3f;
                border-radius: 3px;
                position: relative;
                font-size: 14px;
                margin-bottom:15px;
                background-color: #fff;
                border: 2px solid #e3e3e3;
            }
            #iranlandmark_pc_64 .agent-box > div{
                margin-bottom:10px;
            }
            #iranlandmark_pc_64 .agent-box .del-price{
                text-decoration:line-through;
                font-size:20px;
                color:#910000;
                font-weight:300;
            }
            #iranlandmark_pc_64 .agent-box .total-price{
                font-size:18px;
                color:#3d9138;
                font-weight:600;
            }
            #iranlandmark_pc_64 .sidebar_divComments{
                height: 45px;
                margin-bottom: 9px;
            }
            #iranlandmark_pc_64 .sidebar_divComments button{
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: white;
                border: 1px solid #c7c7c7;
            }
            #iranlandmark_pc_64 .sidebar_divComments button *{
                cursor: pointer;
            }
            #iranlandmark_pc_64 .sidebar_divComments button>span{
                font-size: 16px;
                color: black;
            }
            #iranlandmark_pc_64 .sidebar_divComments button>svg{
                width: 23px;
                height: 22px;
                object-fit: contain;
                fill: #202020;
                margin-right: 4px;
                position: relative;
                bottom: 2px;
            }
        
            .video_popup{
                position:fixed;
                left:0;
                top:0;
                bottom: 0;
                right: 0;
                background-color:rgba(0,0,0,0.8);
                z-index: 1000;
               
            }
            .video_popup_close{
                position: absolute;
                top: -60px;
                right: -60px;
                color: #fff;
                cursor: pointer;
                font-size: 40px;
            }
            #video_box{
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
            }
            #video_box video{
                width: 60vw;
                max-height: 70vh;
            }
        
            #popup_module .title_ppt{
                height: 45px;
                line-height: 45px;
                border-bottom: 1px solid #eee;
                padding-right: 15px;
            }
            #popup_module .cell-ppt{
                border: 1px solid #eee;
                width: 100%;
                background-color: #f9f9f9;
            }
            #popup_module .cell-ppt > div{
                padding: 10px;
                white-space: nowrap;
            }
            #popup_module .title-cppt{
                background-color: #337ab7;
                color: #fff;
            }
            #popup_module .cell-ppt select{
                width: 100%;
                border: 1px solid #eee;
                padding: 5px 10px;
                text-align: center;
                background-color: #fff;
                border-radius: 4px;
            }
            #btn_reserve_tour{
                padding: 10px;
                margin-top: 30px;
                border-top: 1px solid #eee;
                text-align: right;
            }
            #btn_reserve_tour button{
                background-color: #5cb85c;
                border-color: #4cae4c;
            }
            #btn_reserve_tour button:hover{
                background-color: #52a352;
                border-color: #439043;
                box-shadow: none;
            }
            .star-size{
                width: 15px;
                height: 15px;
            }
            .shop-icon{
                width: 25px;
            }
         
                .map-scroll:before {
                    content: "Use ctrl + scroll to zoom the map";
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%,-50%);
                    z-index: 999;
                    font-size: 34px;
                    width: max-content;
                }
                .map-scroll:after {
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    top: 0;
                    content: "";
                    background: #00000061;
                    z-index: 999;
                }
            
            #iranlandmark_pc_64 .loader_icon{
              border:  8px solid #dbdbdb;
              border-radius: 50%;
              border-top:  8px solid #4b4949;
              width: 80px;
              height: 80px;
              -webkit-animation: spin 2s linear infinite;
              animation: spin 2s linear infinite;
              margin:auto;
            }
            @-webkit-keyframes spin {
              0% { -webkit-transform: rotate(0deg); }
              100% { -webkit-transform: rotate(360deg); }
            }
            @keyframes spin {
              0% { transform: rotate(0deg); }
              100% { transform: rotate(360deg); }
            }
            #iranlandmark_pc_64 .icon-wait{
                position:fixed;
                width:100%;
                right:0;
                top:0;
                z-index:999999;
                height:100%;
                background-color:rgba(0,0,0,0.2);
            }
            #iranlandmark_pc_64 .icon-wait.dno{
                display:none;
            }
        
            #comment_list_box .flex-wrapper {
                display: flex;
                flex-flow: row nowrap;
            }

            #comment_list_box .single-chart {
                width: 100%;
                justify-content: space-around ;
            }

            #comment_list_box .circular-chart {
                display: block;
            }

            #comment_list_box .circle-bg {
                fill: none;
                stroke: #e6e6e6;
                stroke-width: 3.8;
            }

            #comment_list_box .circle {
                fill: none;
                stroke-width: 2.8;
                stroke-linecap: round;
            }

            #comment_list_box .show .circle{
                animation: progress linear;
            }
            #comment_list_box  .flex-wrapper {
                background-color: #fff;
                width: 155px;
                height: 155px;
                padding: 10px;
                z-index: 9;
                position: absolute;
                border-radius: 50%;
                -webkit-transform: translateX(50%);-moz-transform: translateX(50%);-ms-transform: translateX(50%);-o-transform: translateX(50%);transform: translateX(50%);
                top: -40px;
                right: 50%;
            }
            #comment_list_box .flex-wrapper .number-pcb{
                position: absolute;
                z-index: 10;
                color: #fff;
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
                width: 59%;
                height: 59%;
                top:20%;
                right:20%;
                border-radius: 50%;
                -webkit-transition: 1s;-moz-transition:  1s;-ms-transition:  1s;-o-transition:  1s;transition:  1s;
            }
            #comment_list_box .flex-wrapper .span-number{
                font-size:30px;
            }
            #comment_list_box .flex-wrapper.circular_class1 .number-pcb {
                background-color: #555;
            }

            #comment_list_box .flex-wrapper.circular_class2 .number-pcb {
                background-color: #555;
            }

            #comment_list_box .flex-wrapper.circular_class3 .number-pcb {
                background-color:  #555;
            }
            #comment_list_box .flex-wrapper.circular_class4 .number-pcb {
                background-color:  #555;
            }
            @keyframes progress {
                0% {
                    stroke-dasharray: 0 100;
                }
            }

            #comment_list_box .circular_class1 .circle {
                stroke: #555;
            }

            #comment_list_box .circular_class2 .circle {
                stroke: #555;
            }

            #comment_list_box .circular_class3 .circle {
                stroke:  #555;
            }
            #comment_list_box .circular_class4 .circle {
                stroke:  #555;
            }
        
            #comment_list_box > div{position: relative}
            #title_comment_list{
                height: 55px;
                line-height: 55px;
                border-radius: 4px;
                margin: 20px 0 10px;
                background-color: #e6e6e6;
                color: #333;
                font-size: 18px;
                font-weight: 500;
                text-align: center;
            }
            .comment_box{
                border: 1px solid #e6e6e6;
                background-color: white;
                border-radius: 4px;
                padding: 20px;
                margin: 10px 0;
                overflow: hidden;
            }
            .user-information{
                width: 100%;
                margin-left: 50px;
                margin-bottom: 10px;
            }
            .user-information .icon-ui{
                width: 50px;
                height: 50px;
                margin: 0 10px;
                background-color: #ddd;
                border-radius: 50%;
                color: #525252;
                font-size: 20px;
            }
            .time-comment{
                font-size: 10px;
                color: #999;
            }
            .container-comment{
                font-size: 14px;
                color: #222;
                font-weight: 400;
            }

            #comment_list_box .flex-wrapper{
                background-color: transparent;
                box-shadow: none;
                width: 50px;
                height: 50px;
                padding: 0;
                z-index: 9;
                position: relative;
                border-radius: 50%;
                -webkit-transform: none;
                -moz-transform: none;
                -ms-transform: none;
                -o-transform: none;
                transform: none;
                top: 0;
                right: 0;
                margin: 10px;
                overflow: auto;
            }
            .score-fsc{
                color: #999;
                font-size: 12px;
                font-weight: 300;
                height: 75px;
            }
            .score-fsc .average-score{
                font-weight: 500;
                font-size: 14px;
                color: #555;
            }
            .range-wrappernot-show{
                width: 100%;
                display: flex;
                justify-content: space-between;
            }
            .line-rang-bpp{
                width: 60%;
                height: 17px;
                border-radius: 0;
                background-color: #e8e8e8;
                margin-bottom: 10px;
            }
            .line-rang-bpp > div{
                height: 100%;
                background-color: #555;
                width: 0;
                border-radius: 0;
                -webkit-transition: width 2s;-moz-transition: width 2s;-ms-transition: width 2s;-o-transition: width 2s;transition: width 2s;
            }
            #comment_list_box .text-rw{
                color:#555;
                font-size: 14px;
                font-weight: 300;
                margin-left: 5px;
            }
            #comment_list_box .num-rw{
                width: 20px;
                line-height: 1;
                border: 1px solid #aaa;
                color: #aaa;
                font-size: 12px;
                display: inline-block;
                text-align: center;
                padding: 3px 5px;
                font-weight: 400;
                white-space: nowrap;
                vertical-align: baseline;
                border-radius: 100px;
            }
            #comment_list_box .circle-bg{
                stroke-width: 7px;
            }
            #comment_list_box .circle{
                stroke-width: 7px;
            }
        
            .address_img{
                min-height: 600px;
            }
            #iranlandmark_pc_64 .submodule-slider{width:100%;height:400px;margin:auto;}
            #iranlandmark_pc_64 .swiper-slide{
                text-align: center;
                font-size: 18px;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                background-color: #e9eeee;
                -webkit-align-items: center;
                align-items: center;
                display: table-cell !important;
                border-radius:6px;
            }
            .title-np svg{
                width: 20px;
            }
            .swiper-button-prev svg{
                width: 12px;
                margin-right: 9px;
            }
            .swiper-button-next svg{
                width: 12px;
                margin-right: 15px;
                transform: rotate(180deg);
            }
            #iranlandmark_pc_64 .swiper-slide img{
                height:100%;
                width:100%;
                object-fit:cover;
            }
            #iranlandmark_pc_64 .swiper-button-prev,#iranlandmark_pc_64 .swiper-button-next {
                background: rgba(256,256,256,.8);
                box-shadow: 0 0 10px grey;
                height:50px;
                width: 35px;
                color: #333;
                font-size: 22px;
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            #iranlandmark_pc_64 .swiper-button-prev {
                border-radius: 2px 0 0 2px;
            }
            #iranlandmark_pc_64 .swiper-button-next{
                border-radius: 0 2px 2px 0;
            }
            #iranlandmark_pc_64 .swiper-button-prev {
                right: 0;
                left:auto;
            }
            #iranlandmark_pc_64 .swiper-button-next {
                left: 0;
                right:auto;
            }
            #iranlandmark_pc_64 .title_slider{
                background-color:;
            }
            #iranlandmark_pc_64 .shoptag-item{
                background-color:
            }

            #iranlandmark_pc_64 .item-hidden-details .beta-btns>a{
                color:;
            }

            #iranlandmark_pc_64 .shoptag-item .item-hidden-details>.item-description{
                color: ;
            }
             #iranlandmark_pc_64 .shoptag-item .beta-tag{
                color: ;
             }
             #iranlandmark_pc_64 .search_link{
                margin-top: 10px;
                display: inline-block;
                margin-left: 20px;
                color: #000000;
                font-weight: 700;
             }
             #iranlandmark_pc_64 .search_link:hover{
                color:#00AFEF;
             }
             #iranlandmark_pc_64 .reservation_link{
                color:#FFFFFF;
             }
             #iranlandmark_pc_64 .reservation_link:hover{
                color:#00AFEF;
             }
             #other_hotel_box{
                padding-top:70px;
                min-height:950px;
             }
        
            .row-table{display: table-row;}
            #hotel_list_table{
                border-radius: 5px;
                border: 1px solid #c9c9c9;
            }
            #hotel_list_table .title_table{
                background-color: #eee;
                padding: 20px 0;
            }
            #hotel_list_table .title_table.fixed{
                top:-65px;
                right: 0;
                left: 0;
                position: fixed;
                z-index: 1;
                -webkit-transition: top .5s;-moz-transition: top .5s;-ms-transition: top .5s;-o-transition: top .5s;transition: top .5s;
            }
            #hotel_list_table .row-table{
                max-height: 100px;
                border-top:1px solid #c9c9c9;
                display: flex;
                padding: 5px;
            }
            #hotel_list_table .header-table{
                color: #232323;
                font-weight: 600;
                font-size: 18px;
                padding: 10px 0;
            }
            #hotel_list_table .row-table:first-child{
                border-top-width: 1px;
            }
            #hotel_list_table .opacity-5{
                opacity: .5;
            }
            #hotel_list_table .dtc span,#hotel_list_table .dtc i{
                display: inline-flex;
                justify-content: center;
                flex-direction: column;
                height: 100%;
            }
            .row-table .star{
                color: #ffc000;
                font-size: 14px;
                margin: 5px 0;
            }
            .rome-image{
                padding: 5px;
                text-align: center;
                color: #393939;
                font-weight: bold;
                font-size: 18px;
                width: 300px;
            }
            .rome-image img{
                width: 170px;
                height: 100%;
                padding:2px;
                border-radius: 8px;
            }
            .rome-image span{
                vertical-align: middle;
                margin: 0 10px;
            }
            .capacity,.price{
                font-size: 14px;
                width: 350px;
            }
            .capacity i{
                color: #1d398d;
            }
            .capacity span{
                font-weight: 300;
            }
            .finally-price{
                font-size: 20px;
                font-weight: 600;
                color: #ff2020;
                text-align: center;
            }
            .btn-reserve{
                width: 150px;
            }
            #hotel_list_table button{
                background: #005d9c;
                border: 0 none;
                border-radius: 5px;
                box-shadow: 1px 1px 1px 0 #ccc;
                color: #fff;
                font-size: 15px;
                min-width: 122px;
                max-width: 170px;
                margin-bottom: 0;
            }
            .del-price{
                text-decoration:line-through;
                font-size:20px;
                color:#910000;
                font-weight:300;
            }
        
            .h73px{height: 73px;}
            .sub_img img{
                width:100%;
                height:200px;
                object-fit: cover;
            }
            .sub_img{
                width:100%;
                height:200px;

            }
            .red_color{color:red;}
            .iranlandmark_pc_64title{
                height:25px;
                overflow:hidden;
            }
            .iranlandmark_pc_64text{

            }
            .h3link{
               cursor:pointer;
            }
            .h3link:hover{color:#00AFEF}
            #iranlandmark_sm{
                display:flex;
                flex-wrap:wrap;
            }
            #iranlandmark_sm > div{
                width: 280px;
                margin: 10px;
            }
            .iranlandmark_sub-64_title{
                height:auto;
                overflow:unset;
            }
        
            
            body{
                position: relative;
            }
            .public-header{
                position: relative;
            }
            .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: #434343;
                    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: #c1c1c2;
                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: #fff;
            }
            .top-list{
                width: max-content;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0  0px;
            }
            .top-list:hover{
                color: ;
            }
            
                .top-list:first-child{
                    margin-right : 0;
                }
                .top-list:last-child{
                    margin-left : 0;
                }
            
            
            .arrow-menu-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-list a span,
            .top-list span{
                color: #fff;
                font-weight: bold;
                font-size: 14px;
            }
            .top-list a img,
            .top-list span img{
                margin: 0 5px;
                width: 24px;
                height: 24px;
                object-fit: contain;
            }
            .top-list:first-child a img,
            .top-list:first-child span img{
                margin-right: 0;
            }
            .top-navbar{
                height: 100%;
                background: transparent;
            }
            .top-nav-list{
                position: relative;
                height: 100%;
                padding: 0 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-nav-list a span,
            .top-nav-list span{
                color: #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{
                    right: 0;
                }
                .top-sub-list{
                    border-left: 5px solid  #f00;
                }
            
        
            .top-sub-list{
                width: 100%;
                padding: 8px