@charset "UTF-8";

/**************************/
/*RESET*/
/**************************/
*:where( :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

input,
button,
textarea,
select {
  font: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
  width: 100%;
}

input,
textarea {
  user-select: auto;
  -webkit-user-select: auto;
  -ms-user-select: auto;
  -moz-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

::-webkit-input-placeholder {
  color: unset;
}

::-moz-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
  -ms-user-select: auto;
  -moz-user-select: auto;
  user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

/**************************/
/*ROOT*/
/**************************/
:root,
[data-theme="light"] {
  --c-primary: #0e1d7d;
  --c-secondary: #cc967b;

  --c-white: #fff;
  --c-black: #000000;

  --c-blue-50: #babfca;
  --c-blue-100: #a2a8b8;
  --c-blue-150: #758099;
  --c-blue-200: #313d5a;

  --c-neutral-50: #f6f5f6;
  --c-neutral-100: #eaeaea;
  --c-neutral-150: #e2e2e2;
  --c-neutral-200: #d8d8d8;
  --c-neutral-300: #c5c5c5;
  --c-neutral-400: #b1b1b1;
  --c-neutral-500: #9e9e9e;
  --c-neutral-600: #808080;
  --c-neutral-700: #636363;
  --c-neutral-800: #454545;
  --c-neutral-850: #363636;
  --c-neutral-900: #1e1e1e;
  --c-neutral-950: #191919;
  --c-neutral-1000: #0a0a0a;

  --bg-img: #eeecec;

  --ease1: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --ease2: cubic-bezier(0.5, 1, 0.89, 1);

  --c-danger: #dc3545;
  --bg-danger: #faf2f2;

  --c-success: #28a745;
  --bg-success: #ecf9ee;

  --c-info: var(--c-neutral-50);
  --bg-info: #e6f1fc;

  --ff-main: Ravi;
  --ff-icon: "WebsimaIcon";

  --section-space: 2.5rem;
  --head-space: 2.5rem;
  --space-xs: 4rem;
  --space-sm: min(7rem, 14vw);
  --space-md: min(8.5rem, 12vw);
  --space-lg: min(12rem, 12vw);
  --space-xl: min(15rem, 18vw);
  --space-xxl: min(20rem, 25vw);

  --header-h: calc(var(--hh)*100 + -1px);

  --heading_h1_size: 2.8rem;
  --swiper-pagination-bullet-width: 0.8rem;
  --swiper-pagination-bullet-height: 2rem;
  --swiper-pagination-bullet-border-radius: 2rem;
  --swiper-pagination-color: var(--c-primary);
  --swiper-pagination-bullet-inactive-color: var(--c-blue-50);
  --swiper-pagination-bullet-horizontal-gap: 0.3rem;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-navigation-size: 1.3rem;
  --swiper-navigation-sides-offset: 0;
  --swiper-preloader-color: var(--c-primary);
  /* --swiper-wrapper-transition-timing-function: var(--ease2); */
  --anim: 0.3s ease;
}

html {
  font-size: min(2.2vw, 8px);
}

.no-scroll body {
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.screen-reader-text {
  display: none !important;
}

/**************************/
/*Fonts*/
/**************************/
@font-face {
  font-style: normal;
  font-display: swap;
  font-family: Ravi;
  src: url("../../fonts/Ravi-Medium.woff2") format("woff2");
}

@font-face {
  font-style: normal;
  font-display: swap;
  font-weight: bold;
  font-family: Ravi;
  src: url("../../fonts/Ravi-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "WebsimaIcon";
  src: url("../../fonts/icomoon.ttf") format("truetype"),
    url("../../fonts/icomoon.woff") format("woff"),
    url("../../fonts/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/**************************/
/*Config*/
/**************************/
body {
  position: relative;
  direction: rtl;
  font-family: var(--ff-main), sans-serif;
  font-size: var(--fs-16);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--c-neutral-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
}


body.modal-open,
.modal-open body {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

[class^="icon-"]::after,
[class*="icon-"]::after,
[class^="icon-"]::before,
[class*="icon-"]::before {
  font-family: "WebsimaIcon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

::-moz-selection {
  background: var(--c-secondary);
  color: var(--c-white);
}

::selection {
  background: var(--c-secondary);
  color: var(--c-white);
}

*:focus-visible {
  outline: none;
  outline-offset: 4px;
}

[role="button"] {
  cursor: pointer;
}

canvas {
  pointer-events: none;
}

body,
html {
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  width: 100%;
}

:target {
  scroll-margin-top: 8rem;
}

i,
svg {
  display: inline-flex;
  line-height: 1;
  vertical-align: middle;
}

input {
  font-family: var(--ff-main), Arial;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-filter: saturate(1.2);
  filter: saturate(1.2);
}

video {
  width: 100%;
  display: block;
  overflow: hidden;
  height: auto;
}

a {
  transition: var(--anim);
  color: currentColor;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: var(--anim);
  -moz-transition: var(--anim);
  -ms-transition: var(--anim);
  -o-transition: var(--anim);
}

ins {
  text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

del {
  text-decoration: line-through;
}

#overlay {
  position: fixed;
  z-index: 100;
  background: #000000c9;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  inset: 0;
  height: 100%;
  overflow: hidden;
  width: 100%;
  display: none;
}

/* #main {
  position: relative;
  z-index: 2;
} */
@-webkit-keyframes fadeEffect {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

button {
  cursor: pointer;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.6s transform, 0.6s right;
}

.overflow-x {
  overflow-x: auto;
  display: flex;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  white-space: nowrap;
}

.d-none {
  display: none;
}

/* a:active,
button:active {
  transform: scale(0.98);
} */

/**************************/
/*swiper*/
/**************************/
.sw--autoplay:not(.swiper-initialized) .swiper-slide,
.swAuto-center:not(.swiper-initialized) .swiper-slide,
.swAuto:not(.swiper-initialized) .swiper-slide {
  margin-left: 10px;
}

.grid-cols .swiper-wrapper {
  width: calc(100% + 2 * var(--gutter-x));
  margin-right: calc(-1 * (var(--gutter-x)));
  padding: 0 var(--gutter-x);
  box-sizing: border-box;
}

.grid-cols .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.grid-cols .swiper-wrapper {
  display: flex;
  scroll-behavior: smooth;
  overflow-x: auto;
  cursor: grab;
  transform: translate3d(0px, 0px, 0px);
  gap: min(3rem, 4vw);
}

/* Hide scrollbar for IE, Edge and Firefox */
.grid-cols .swiper-wrapper {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}



/* for breadcrumb */
.inner-page .modular-page {
  padding-top: 4rem;
}


/**************************/
/* wishlist */
/**************************/
.wishlist-item.wished {
  color: #da0039;
}

.wishlist-item.wished[data-tooltip]::after {
  content: '\062d\0630\0641\0020\0627\0632\0020\0639\0644\0627\0642\0647\0020\0645\0646\062f\06cc';
}

.wishlist-item.wished .icon-heart-round:before {
  content: "\e91e";
}

.wishlist-item {
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-primary);
  font-size: 27px;
  cursor: pointer;
  transition: var(--anim);
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}


.wishlist-item:hover {
  opacity: .8;
}

.loding-wishlist circle {
  transform-origin: 50% 50%;
  animation: spinner 2s linear infinite;
  -webkit-animation: spinner 2s linear infinite;
  transform: rotate(-90deg);
  stroke-dasharray: 132;
}

.loding-wishlist circle {
  stroke: var(--c-primary);
  fill: #3e3e3e00;
}

.loding-wishlist {
  fill: var(--c-primary);
  position: absolute;
  opacity: 0;
  width: 17px;
  height: 17px;
  background: #fff;
}

@keyframes spinner {
  0% {
    transform: rotate(-90deg);
    stroke-dashoffset: 132;
  }

  50% {
    transform: rotate(270deg);
    stroke-dashoffset: 28;
  }

  100% {
    transform: rotate(630deg);
    stroke-dashoffset: 132;
  }
}

/**************************/
/* Gallery Viewer */
/**************************/
.gallery-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.gallery-viewer.show {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  opacity: 1;
}

.gallery-viewer__video-wrapper {
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-viewer__video {
  width: auto;
}

.gallery-viewer__video,
.gallery-viewer__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-viewer.show .gallery-viewer__video,
.gallery-viewer.show .gallery-viewer__img {
  transform: scale(1);
  opacity: 1;
}

.gallery-viewer__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-out;
  opacity: 0;
  transform: scale(0.8) rotate(-90deg);
}

.gallery-viewer.show .gallery-viewer__close {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.gallery-viewer__close:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: scale(1.1) rotate(90deg);
}

.gallery-viewer__close i {
  font-size: 1.6rem;
}

.gallery_item {
  cursor: zoom-in;
}

/**************************/
/* lightgallery */
/**************************/
.lg-outer .lg-thumb {
  margin: 0 auto
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
  direction: ltr
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: #FFF;
}

/**************************/
/* popup share */
/**************************/
.share-popup-wrapper {
  position: fixed;
  top: 1rem;
  right: 0;
  bottom: 1rem;
  left: 0;
  z-index: 100;
  display: none;
}

.share-popup__title {
  background: var(--c-neutral-50);
  display: flex;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  gap: 1rem;
  align-items: center;
  font-size: var(--fs-16);
  font-weight: bold;
  line-height: 1.6;
}

.share-popup--close {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--anim);
}

.share-popup--close:active,
.desktop .share-popup--close:hover {
  transform: scale(1.04);
  opacity: 0.8;
}

.share-popup-box {
  height: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.share-popup__container {
  position: relative;
  max-height: 100%;
  width: min(50rem, 94%);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--c-white);
  display: flex;
  flex-direction: column;
}

.share-popup--backdrop {
  position: fixed;
  background-color: #000000ab;
  inset: 0;
}

.share-popup__contents {
  padding: 2rem;
}

.popup-share-items :is(a, button) {
  all: unset;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  border-radius: 12px;
  color: var(--c-white);
  -webkit-filter: brightness(1);
  filter: brightness(1);
  transition: 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.popup-share-items i {
  font-size: var(--fs-18);
}

.popup-share-items button[title="copy"] {
  background: #6c757d;
}

.popup-share-items a[title="Facebook"] {
  background-color: #1877f2;
}

.popup-share-items a[title="X"] {
  background-color: #1da1f2;
}

.popup-share-items a[title="telegram"] {
  background-color: #0088cc;
}

.popup-share-items a[title="LinkedIn"] {
  background-color: #0a66c2;
}

.popup-share-items a[title="WhatsApp"] {
  background-color: #25d366;
}

.popup-share-items :is(a, .button):hover {
  -webkit-filter: brightness(0.9);
  filter: brightness(0.9);
}

.popup-share-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

/**************************/
/*  woocommerce */
/**************************/

.empty-error::before {
  content: "\e919";
  font-family: var(--ff-icon);
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.empty-error.col-12 {
  flex: 1;
}

.woocommerce-no-products-found {
  margin: 4rem 2rem 0;
}

.empty-error {
  text-align: center;
  font-size: var(--fs-16);
  /* color: #aeaeae; */
  margin: 4rem 2rem 0;
  text-align: center;
  padding: 3rem 1rem;
  background: var(--c-neutral-50);
  border: 1px solid var(--c-neutral-100);
  border-radius: 1.2rem;
  position: relative;
  z-index: 2;
}

.woocommerce-message {
  background: var(--c-success);
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: var(--fs-14);
}

.checkout-inline-error-message {
  display: none;
}

.woocommerce-error {
  background: var(--c-danger);
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: var(--fs-14);
}

.woocommerce-info {
  background: var(--c-info);
  /* color: #fff; */
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: var(--fs-14);
}

.single-product .woocommerce-notices-wrapper {
  width: 100%;
  padding: 0 var(--gutter-x);
  margin: 0 auto;
  max-width: var(--width-container);
}

.single-product .woocommerce-error,
.single-product .woocommerce-message,
.single-product .woocommerce-info {
  border-radius: 0 0 12px 12px;
  margin: 0;
}

.woocommerce-notices-wrapper .wc-forward {
  border-bottom: 1px solid var(--c-white);
  font-size: var(--fs-14);
  margin: 1rem;
  ;
}

.woocommerce-notices-wrapper .wc-forward:hover {
  opacity: 0.8;
}

.wc-backward {
  display: inline-block;
  margin: 2rem 0;
  border-bottom: 1px solid;
  color: currentColor;
}

.restore-item {
  margin: 1rem;
  border-bottom: 1px solid;
  color: currentColor;
}

/**************************/
/*copeid-alert  */
/**************************/
.copeid-alert {
  position: fixed;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-main);
  font-size: var(--fs-16);
  background: var(--c-black);
  padding: 1rem 2rem;
  color: var(--c-white);
  border-radius: 8px;
  width: min(22rem, 90%);
  text-align: center;
  z-index: 52;
  transition: 0s;
  box-shadow: 0 8px 10px #00000026;
}

.copeid-alert.hide {
  opacity: 0;
  transition: 0.2s;
}

/**************************/
/*Reusable class */
/**************************/

.tabcontent {
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  opacity: 0;
  /* animation: fadeIn 0.3s ease-in-out; */
}

.tabcontent.active {
  pointer-events: all;
  position: relative;
  /* display: block; */
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.layout-box {
  position: relative;
  padding: var(--gutter-x) 0 4rem;
  min-height: 22rem;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.container {
  width: 100%;
  padding: 0 var(--gutter-x);
  margin: 0 auto;
  max-width: var(--width-container);
}

.hidden-svg {
  position: absolute;
  display: block;
  pointer-events: none;
}

.swiper-slide {
  flex: none;
}

.swAutoCenter .swiper-slide,
.sw--autoplay .swiper-slide,
.swAuto .swiper-slide {
  height: auto;
}


.gutter-b {
  margin-bottom: var(--gutter-x);
}

.text-justify {
  text-align: justify;
}

.btns--box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 1rem;
  margin-top: 3rem;
}

.sw {
  position: relative;
}

.icon-cplus {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--anim);
}

.icon-cplus::before,
.icon-cplus::after {
  content: "";
  position: absolute;
  background-color: var(--c-white);
  transition: var(--anim);
}

.icon-cplus::before {
  width: 1.3rem;
  height: 0.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-cplus::after {
  width: 0.2rem;
  height: 1.3rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.active .icon-cplus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/**************************/
/*line clamp*/
/**************************/
.line-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.line-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.line-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/**************************/
/*positions*/
/**************************/
.position-static {
  position: static;
}

.relative {
  position: relative;
}

.subtitle-temp {
  text-align: center;
}

/**************************/
/*text align*/
/**************************/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/**************************/
/*spacing*/
/**************************/
.swiper-button-lock {
  display: none !important;
}

.pt-xs {
  padding-top: var(--space-xs);
}

.pt-sm {
  padding-top: var(--space-sm);
}

.pt-md {
  padding-top: var(--space-md);
}

.pt-lg {
  padding-top: var(--space-lg);
}

.pt-xl {
  padding-top: var(--space-xl);
}

.pt-xxl {
  padding-top: var(--space-xxl);
}

/* padding bottom */
.main-page {
  padding: 11rem 0 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-xs {
  padding-bottom: var(--space-xs);
}

.pb-sm {
  padding-bottom: var(--space-sm);
}

.pb-md {
  padding-bottom: var(--section-space);
}

.pb-lg {
  padding-bottom: var(--space-lg);
}

.pb-xl {
  padding-bottom: var(--space-xl);
}

.pb-xxl {
  padding-bottom: var(--space-xxl);
}

/**************************/
/*heading*/
/**************************/

.fs-14 {
  font-size: var(--fs-14);
}

.fs-15 {
  font-size: var(--fs-15);
}

.fs-16 {
  font-size: var(--fs-16);
}

.fs-18 {
  font-size: var(--fs-18);
}

.fs-20 {
  font-size: var(--fs-20);
  line-height: 1.8;
}

.fs-22 {
  font-size: var(--fs-22);
  line-height: 1.6;
}

.fs-24 {
  font-size: var(--fs-24);
  line-height: 1.5;
}

.fs-26 {
  font-size: var(--fs-26);
  line-height: 1.5;
}

.fs-28 {
  font-size: var(--fs-28);
  line-height: 1.5;
}

.fs-30 {
  font-size: var(--fs-30);
  line-height: 1.5;
}

.fs-32 {
  font-size: var(--fs-32);
  line-height: 1.5;
}

.fs-34 {
  font-size: var(--fs-34);
  line-height: 1.5;
}

.fs-36 {
  font-size: var(--fs-36);
  line-height: 1.5;
}

.fs-38 {
  font-size: var(--fs-38);
  line-height: 1.45;
}

.fs-40 {
  font-size: var(--fs-40);
  line-height: 1.4;
}

.fs-42 {
  font-size: var(--fs-42);
  line-height: 1.4;
}

/**************************/
/*Banneer sidebar*/
/**************************/
.banner--sidebar__item {
  display: block;
  overflow: hidden;
  border-radius: 3.2rem;
  position: relative;
}

.banner--sidebar__item img {
  width: 100%;
  transition: var(--anim);
  background-color: var(--bg-img);
}

.banner--sidebar__item::before {
  content: "";
  position: absolute;
  inset: -1px;
  background-image: linear-gradient(to top, #0030db59, #112c541c);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: var(--anim);
}

.banner--sidebar__item:hover::before {
  opacity: 1;
}

.banner--sidebar__item:hover img {
  scale: 1.05;
}

.sidebar-banner--single {
  margin-top: 2rem;
}

.mobile .sidebar-banner--single {
  margin: 4rem 0 2rem;
}

/**************************/
/*weight*/
/**************************/
.fw-bold {
  font-weight: bold;
}

/**************************/
/*Scrollbar config */
/**************************/
::-webkit-scrollbar {
  width: 6px;
  height: 0.5rem;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: silver;
  border-radius: 10px;
  cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-primary);
}

body::-webkit-scrollbar {
  width: 10px;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none !important;
}

.hide-scrollbar {
  -ms-overflow-style: none !important;
  /* IE and Edge */
  scrollbar-width: none !important;
  /* Firefox */
}

/**************************/
/* Head Section */
/**************************/
.editor--border {
  border: 1px solid var(--c-neutral-100);
  border-radius: 2.8rem;
  padding: 2.4rem;
  margin: 0 var(--space-md-x);
}

.main-text {
  font-size: var(--fs-editor);
  line-height: 2.5;
}

.subtitle__archive {
  margin-top: 1rem;
  opacity: .8;
}


.heading-base {
  align-items: center;
}


.heading-base .subtitle {
  margin-top: 1rem;
  color: var(--c-blue-150);
}


.heading-base .title b {
  color: var(--c-primary);
}

.heading--between {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20rem;
  column-gap: 20rem;
  row-gap: 2rem;
}

.heading-base {
  margin-bottom: var(--head-space);
}

.heading-base .title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.leaf--side .title-wrap {
  align-items: center;
}



.heading--between .btns--box {
  margin-top: 0;
}

.heading--between-right {
  flex: 1;
}

.accordion-content:not(.open-in-desktop) {
  display: none;
  position: static;
  clear: both;
  margin: 0;
}


.nanaara-leaf {
  position: relative;
  width: 3rem;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.nanaara__leafbox {
  opacity: 0;
  transform: translateY(1rem) scaleX(1.3);
  transition: all 0.6s ease-out;
}

.nanaara__leafs {
  position: absolute;
  left: 0.65rem;
  bottom: 0.7rem;
  width: 1.6rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(-1rem) rotateY(180deg);
  transition: all 0.8s ease-out;
}

.nanaara-leaf img {
  background: unset !important;
}

.nanaara-leaf.active .nanaara__leafs {
  opacity: 1;
  transform: rotateY(0deg) translateY(0);
}

.nanaara-leaf.active .nanaara__leafbox {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
  /* transition-delay: 0.4s; */
}

.loading-spinner {
  width: 4rem;
  height: 4rem;
  border: 0.35rem solid var(--c-primary-300);
  border-top-color: var(--c-primary-200);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* tooltip */
[data-tooltip] {
  position: relative;
}

[data-tooltip][drc="ltr"]:after {
  direction: ltr;
}

[data-tooltip]::before,
[data-tooltip]::after {
  font-size: 11px;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

[data-tooltip]::before {
  content: "";
  border: 5px solid transparent;
  z-index: 1001;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 20em;
  line-height: 1.5;
  padding: 1ch 1.5ch;
  border-radius: 0.3ch;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: var(--c-black);
  color: var(--c-white);
  z-index: 1000;
  white-space: initial;
}


[tooltip=""]::before,
[tooltip=""]::after {
  display: none !important;
}

[data-tooltip]:not([flow])::before,
[data-tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: var(--c-black);
}

[data-tooltip]:not([flow])::after,
[data-tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}

[data-tooltip]:not([flow])::before,
[data-tooltip]:not([flow])::after,
[data-tooltip][flow^="up"]::before,
[data-tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

[data-tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: var(--c-black);
}

[data-tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}

[data-tooltip][flow^="down"]::before,
[data-tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

[data-tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: var(--c-black);
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

[data-tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

[data-tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: var(--c-black);
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

[data-tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

@-webkit-keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}

@-webkit-keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}

@media (width >=1024px) {

  [data-tooltip]:hover::before,
  [data-tooltip]:hover::after {
    display: block;
  }

  [data-tooltip]:not([flow]):hover::before,
  [data-tooltip]:not([flow]):hover::after,
  [data-tooltip][flow^="up"]:hover::before,
  [data-tooltip][flow^="up"]:hover::after,
  [data-tooltip][flow^="down"]:hover::before,
  [data-tooltip][flow^="down"]:hover::after {
    -webkit-animation: tooltips-vert 300ms ease-out forwards;
    animation: tooltips-vert 300ms ease-out forwards;
  }

  [data-tooltip][flow^="left"]:hover::before,
  [data-tooltip][flow^="left"]:hover::after,
  [data-tooltip][flow^="right"]:hover::before,
  [data-tooltip][flow^="right"]:hover::after {
    -webkit-animation: tooltips-horz 300ms ease-out forwards;
    animation: tooltips-horz 300ms ease-out forwards;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* #root {
  overflow-x: hidden;
} */

.overlay-bg {
  padding: 4.5rem 0 3rem;

  position: relative;
}

.overlay-bg::before {
  content: '';
  position: absolute;
  background-color: var(--c-neutral-50);
  background: url(../../img/pattern-page.webp), var(--c-neutral-50);
  background-position: bottom;
  background-repeat: repeat;
  background-size: auto 52rem;
  opacity: .3;
  inset: 0;
  z-index: -1;
  background-attachment: fixed;
  pointer-events: none;
}

.overlay-bg::after {
  content: '';
  position: absolute;
  background: linear-gradient(to top, var(--c-neutral-50), transparent);
  inset: 0;
  z-index: -1;
  pointer-events: none;

}

:root {
  --fs-10: 1.2rem;
  --fs-11: 1.3rem;
  --fs-12: 1.3rem;
  --fs-13: 1.4rem;
  --fs-14: 1.5rem;
  --fs-15: 1.6rem;
  --fs-16: 1.6rem;
  --fs-18: 1.8rem;
  --fs-20: 1.9rem;
  --fs-22: 2.1rem;
  --fs-24: 2.1rem;
  --fs-26: 2.1rem;
  --fs-28: 2.2rem;
  --fs-30: 2.3rem;
  --fs-32: 2.4rem;
  --fs-34: 2.6rem;
  --fs-36: 2.8rem;
  --fs-38: 3rem;
  --fs-40: 3rem;
  --fs-42: 3rem;
  --gutter-x: 1.5rem;
  --r: 4rem;
  --space-md-x: 0;
  --space-box: var(--gutter-x);
  --fs-editor: 1.8rem;
  --width-container: 130rem;
}


@media (width>=1024px) {
  :root {
    --fs-10: 1rem;
    --fs-12: 1.2rem;
    --fs-13: 1.3rem;
    --fs-14: 1.4rem;
    --fs-15: 1.5rem;
    --fs-16: 1.6rem;
    --fs-18: 1.8rem;
    --fs-20: 2rem;
    --fs-22: 2.2rem;
    --fs-24: 2.4rem;
    --fs-26: 2.6rem;
    --fs-28: 2.8rem;
    --fs-30: 3rem;
    --fs-32: 3.2rem;
    --fs-34: 3.4rem;
    --fs-36: 3.6rem;
    --fs-38: 3.8rem;
    --fs-40: 4rem;
    --fs-42: 4.2rem;
    --gutter-x: 3rem;
    --r: 10rem;
    --space-md-x: 12rem;
    --space-box: 4rem;
    --fs-editor: 1.6rem;
    --width-container: 135rem;
    --section-space: 5rem;
  }

  .title-wrapper--page .heading-base {
    margin-bottom: var(--space-xs);
    margin-right: var(--space-md-x);
    margin-left: var(--space-md-x);
  }

  .sw--autoplay:not(.swiper-initialized) .swiper-slide,
  .swAutoCenter:not(.swiper-initialized) .swiper-slide,
  .swAuto:not(.swiper-initialized) .swiper-slide {
    margin-left: 20px;
  }

  .heading--between {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .heading--between .nanaara-leaf {
    margin-bottom: 0;
  }

  .comment-single,
  .box-faqs-notab {
    padding: 0 var(--space-md-x);
  }

  .layout-box {
    padding: var(--section-space) 0;
  }

  .leaf--side .title-wrap {
    flex-direction: row;
  }

  html {
    font-size: 10px;
  }

  .heading--center {
    margin-inline: auto;
    text-align: center;
  }

  .heading--center .title-wrap {
    justify-content: center;
    align-items: center;
  }
}

@media (width<1024px) {
  .heading-base {
    margin-inline: auto;
    text-align: center;
  }

  .heading-base .title-wrap {
    justify-content: center;
    align-items: center;
  }
}