/**************************/
/*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 {
  -webkit-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;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}
:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}
/**************************/
/*ROOT*/
/**************************/
:root {
  --c-primary: #009879;
  --c-primary-rgb: 0, 152, 121;
  --c-secondary: #e6c498;
  --c-secondary-rgb: 230, 196, 152;
  --c-secondary-light: #faf3ea;
  --c-secondary-shade: #c19277;

  --c-neutral-000: #fff;
  --c-neutral-100: #f5f5f5;
  --c-neutral-200: #d9d9d9;
  --c-neutral-300: #707070;
  --c-neutral-400: #505049;
  --c-neutral-500: #1d1d1b;

  /* --c--text: #242424; */
  --width-container: 135rem;
  --danger: #d53343;
  --bg_danger: #fff5f5;
  --success: #45bf55;
  --bg-success: #ecf9ee;
  --info: #0288d1;
  --bg-info: #e6f1fc;

  --ff-main: Dana;

  --fs-10: 10px;
  --fs-11: 11px;
  --fs-12: 12px;

  --fs-14: 14px;
  --fs-14-min: clamp(13px, 12.714px + 0.0893vw, 14px);
  --fs-15: clamp(14px, 13.7136px + 0.0893vw, 15px);
  --fs-16: clamp(15px, 14.714px + 0.0893vw, 16px);
  --fs-16-min: clamp(14px, 13.4288px + 0.1786vw, 16px);

  --fs-18: clamp(16px, 15.429px + 0.1786vw, 18px);
  --fs-20: clamp(18px, 17.429px + 0.1786vw, 20px);
  --fs-22: clamp(18px, 16.858px + 0.3571vw, 22px);
  --fs-24: clamp(18px, 16.286px + 0.5357vw, 24px);
  --fs-30: clamp(18px, 14.5712px + 1.0714vw, 30px);

  --fw-100: "wght" 100;
  --fw-200: "wght" 200;
  --fw-250: "wght" 250;
  --fw-400: "wght" 400;
  --fw-500: "wght" 500;
  --fw-600: "wght" 600;

  --gutter-x: 3rem;

  --heading_h1_fontsize: 2.8rem;
  /* --swiper-navigation-color: var(--c-primary); */
  --swiper-pagination-bullet-width: 6px;
  --swiper-pagination-bullet-height: 6px;
  --swiper-pagination-color: var(--c-primary);
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-inactive-color: var(--c-primary);
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-navigation-size: 3.6rem;

  --breakpoint-xs: 0;
  --breakpoint-sm: 36em;
  --breakpoint-md: 48em;
  --breakpoint-lg: 62em;
  --breakpoint-xl: 75em;
  --breakpoint-xxl: 87.5em;
}

/**************************/
/*    Bootstrap Grid*/
/**************************/
.container,
.container-fluid {
  width: 100%;
  padding-left: calc(var(--gutter-x) * 0.5);
  padding-right: calc(var(--gutter-x) * 0.5);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 0) {
  /* .container-sm,
  .container {
    max-width: 54rem;
  } */
  :root {
    --width-container: 540px;
  }
}
@media (min-width: 48em) {
  /* .container-md,
  .container-sm,
  .container {
    max-width: 72rem;
  } */
  :root {
    --width-container: 72rem;
  }
}
@media (min-width: 62em) {
  /* .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 96rem;
  } */
  :root {
    --width-container: 960px;
  }
}
@media (min-width: 75em) {
  /* .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 114rem;
  } */
  :root {
    --width-container: 1140px;
  }
}
@media (min-width: 87.5em) {
  /* .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    
    max-width: 135rem;
  } */
  :root {
    --width-container: 1350px;
  }
}
.container {
  max-width: var(--width-container);
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-0.5 * var(--gutter-x));
  margin-right: calc(-0.5 * var(--gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-left: calc(var(--gutter-x) * 0.5);
  padding-right: calc(var(--gutter-x) * 0.5);
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 36em) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 48em) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 62em) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 75em) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 87.5em) {
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

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

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon01.eot");
  src: url("../fonts/icomoon01.eot#iefix") format("embedded-opentype"),
    url("../fonts/icomoon01.ttf") format("truetype"),
    url("../fonts/icomoon01.woff") format("woff"),
    url("../fonts/icomoon01.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/**************************/
/*Icons*/
/**************************/

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-customer:before {
  content: "\e911";
}
.icon-aparat:before {
  content: "\e926";
}
.icon-pinterest:before {
  content: "\e935";
}
.icon-linkedin:before {
  content: "\e936";
}
.icon-youtube:before {
  content: "\e937";
}
.icon-star-fill:before {
  content: "\e918";
}
.icon-heart-fill:before {
  content: "\e919";
}
.icon-heart-stroke:before {
  content: "\e91c";
}
.icon-star-stroke:before {
  content: "\e91e";
}
.icon-play1:before {
  content: "\e922";
}
.icon-warranty:before {
  content: "\e923";
}
.icon-share:before {
  content: "\e927";
}
.icon-plus:before {
  content: "\e929";
}
.icon-minus:before {
  content: "\e932";
}
.icon-items:before {
  content: "\e933";
}
.icon-replay:before {
  content: "\e900";
}
.icon-quot:before {
  content: "\e902";
}
.icon-holder:before {
  content: "\e903";
}
.icon-zoom:before {
  content: "\e904";
}
.icon-link:before {
  content: "\e905";
}
.icon-pen:before {
  content: "\e90b";
}
.icon-home:before {
  content: "\e92f";
}
.icon-cat:before {
  content: "\e92e";
}
.icon-search:before {
  content: "\e92a";
}
.icon-compair:before {
  content: "\e92b";
}
.icon-account:before {
  content: "\e92c";
}
.icon-cart:before {
  content: "\e92d";
}
.icon-play:before {
  content: "\e906";
}
.icon-arrow-left:before {
  content: "\e907";
}
.icon-arrow-right:before {
  content: "\e908";
}
.icon-arrow-top:before {
  content: "\e90d";
}
.icon-arrow-down:before {
  content: "\e90e";
}
.icon-facebook:before {
  content: "\e913";
}
.icon-twitter:before {
  content: "\e914";
}
.icon-telegram:before {
  content: "\e915";
}
.icon-instagram:before {
  content: "\e916";
}
.icon-phone:before {
  content: "\e921";
}
.icon-user:before {
  content: "\e909";
}
.icon-date:before {
  content: "\e925";
}
.icon-tag:before {
  content: "\e93e";
}
.icon-location:before {
  content: "\e955";
}
.icon-telegram1:before {
  content: "\e924";
}
.icon-facebook1:before {
  content: "\e930";
}
.icon-close-circle:before {
  content: "\e90c";
}
.icon-close:before {
  content: "\e91a";
}
.icon-trush:before {
  content: "\e95b";
}
.icon-pause:before {
  content: "\e928";
}
.icon-copy:before {
  content: "\e91b";
}
.icon-whatsapp:before {
  content: "\e90a";
}
.icon-twitter1:before {
  content: "\e91d";
}
.icon-close3:before {
  content: "\e93d";
}
.icon-fax:before {
  content: "\e917";
}
.icon-clock:before {
  content: "\e920";
}
.icon-email:before {
  content: "\e901";
}
.icon-logout:before {
  content: "\e931";
}
.icon-large-right:before {
  content: "\e912";
}
.icon-large-left:before {
  content: "\e91f";
}
.icon-hamburger-menu:before {
  content: "\e90f";
}
.icon-clock1:before {
  content: "\e956";
}
.icon-notif:before {
  content: "\e910";
}
.icon-filter:before {
  content: "\e934";
}

.rotatey-180 {
  transform: rotateY(180deg);
}

.d-inblock {
  display: inline-block;
}
.d-block {
  display: block;
}
.letter-space-1px {
  letter-spacing: 1px;
}

/**************************/
/*Config*/
/**************************/
* {
  -webkit-tap-highlight-color: transparent;
}
::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: var(--c-primary);
}

::selection {
  color: #fff;
  background: var(--c-primary);
}
*:focus-visible {
  outline: none;
  /* outline: 2px dotted var(--c-primary); */
  outline-offset: 4px;
  /* box-shadow: 0 0 0 0.8rem rgba(230, 125, 34, 0.5); */
}
[role="button"] {
  cursor: pointer;
}
body {
  position: relative;
  direction: rtl;
  font-family: var(--ff-main), sans-serif;
  font-size: var(--fs-16);
  color: var(--c-neutral-400);
  line-height: 2;
  background: var(--c-neutral-000);
  min-height: 100vh;
  font-variation-settings: "wght" 300;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 13rem;
}

i,
svg {
  /* vertical-align: middle; */
  display: inline-block;
}

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

/* input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
} */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.mejs-container video {
  border-radius: 12px;
}
video {
  width: 100%;
  display: block;
  overflow: hidden;
}

a {
  transition: 0.3s;
  color: currentColor;
  text-decoration: none;
}
ins {
  text-decoration: none;
}
a:is(:hover, :focus-visible) {
  text-decoration: none;
  color: var(--c-primary);
}

del {
  text-decoration: line-through;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
/**************************/
/*config lightgallery*/
/**************************/
#percentage {
  position: fixed;
  left: 0;
  top: 0;
  font-size: 20px;
  background: red;
  color: #fff;
  padding: 0 9px;
}
.lg-outer .lg-thumb {
  margin: 0 auto;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
  direction: ltr;
}
/* .lg-sub-html {
  display: none;
}
.lg-outer .lg {
  background-color: var(--c-gray1);
}
.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a33;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.lg-outer .lg-toggle-thumb {
  background-color: var(--color-gray-1);
  color: #333;
}
.lg-outer .lg-thumb-item img {
  background-color: var(--color-gray-4);
}
.lg-toolbar {
  background-color: #0d0a0a33;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.lg-toolbar {
  display: flex;
}
.lg-actions .lg-next,
.lg-actions .lg-prev,
#lg-counter,
.lg-toolbar .lg-icon {
  color: #333;
  white-space: nowrap;
}
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: #676767;
} */

/**************************/
/*Reusable class */
/**************************/
.screen-reader-text{
    display:none!important;
}
@media screen and (min-width: 992px) {
  .in-mobile {
    display: none;
  }
}
html.desktop .init-cols--6:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(19.5rem, 60vw);
  gap: 3rem;
}
html.desktop .sw--blog:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(48rem, 60vw);
  gap: 3rem;
}
html.desktop .init-cols--4:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(30.5rem, 60vw);
  gap: 3rem;
}
.ltr {
  direction: ltr;
}
.mb-3-min {
  margin-bottom: min(3rem, 5vw);
}
.mb-4-min {
  margin-bottom: min(4rem, 6vw);
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 6rem;
}
.mt-3-min {
  margin-top: min(3rem, 5vw);
}

.mt-3 {
  margin-top: 3rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 5rem;
}

.mt-4 {
  margin-top: 4rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.pb-3 {
  padding-bottom: 3rem;
}
.mb-0 {
  margin-bottom: 0 !important;
}
/* tabs */
.tabcontent.active {
  display: block !important;
}
.tabcontent {
  display: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}
@-webkit-keyframes fadeEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mobile .swiper-arrows,
.mobile .side-arrows {
  display: none;
}
p.wbs-notif {
  background: var(--bg_danger);
  color: var(--danger);
  padding: 1rem 2rem;
  border-radius: 12px;
}
/**************************/
/*others*/
/**************************/
.main-text {
  line-height: 2.7;
  font-size: 16px;
}

.nowrap {
  white-space: nowrap;
}
.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}
.hover-card {
  pointer-events: none;
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

/**************************/
/*overflow*/
/**************************/
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-h {
  overflow: hidden;
}

/**************************/
/*line clamp*/
/**************************/
.line-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
/**************************/
/*line height*/
/**************************/
.line-h-2 {
  line-height: 2 !important;
}
/**************************/
/*positions*/
/**************************/
.position-static {
  position: static;
}
.relative {
  position: relative;
}
/**************************/
/*container*/
/**************************/

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

.tb-rl {
  -webkit-writing-mode: tb-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: tb-rl;
}
/**************************/
/*spacing*/
/**************************/
/* .space-xs {
  margin-bottom: 8rem;
} */
.space-sm {
  margin-bottom: min(5rem, 7vw);
}
.space-md {
  margin-bottom: min(10rem, 15vw);
}
.space-lg {
  margin-bottom: min(14rem, 20vw);
}

.section-banners.pb-sm {
  padding-bottom: 20px;
}
.section-banners.pb-md {
  padding-bottom: min(7rem, 15vw);
}
.section-banners.pb-lg {
  padding-bottom: min(11rem, 20vw);
}

.pt-sm {
  padding-top: 50px;
}
.pt-md {
  padding-top: min(10rem, 15vw);
}
.pt-lg {
  padding-top: min(14rem, 20vw);
}

.pb-sm {
  padding-bottom: 50px;
}
.pb-md {
  padding-bottom: min(10rem, 15vw);
}
.pb-lg {
  padding-bottom: min(14rem, 20vw);
}

.mt-sm {
  margin-top: 50px;
}
.mt-md {
  margin-top: min(10rem, 15vw);
}
.mt-lg {
  margin-top: min(14rem, 20vw);
}

.mb-sm {
  margin-bottom: 50px;
}
.mb-md {
  margin-bottom: min(10rem, 15vw);
}
.mb-lg {
  margin-bottom: min(14rem, 2vw);
}
/* .space-xl {
  margin-bottom: min(15rem, 15vw);
} */
.space-top-xl {
  margin-top: min(11rem, 16vw);
}
.space-xxl {
  margin-bottom: 15rem;
}
/* .comment-single {
  padding: 0 2.8rem;
} */
/* section:last-child {
  margin-bottom: 0;
} */

/**************************/
/*loading*/
/**************************/
/* .loader circle {
  transform: rotate(-90deg);
}
.loader circle {
  transform-origin: 50% 50%;
  animation: spinner 2s linear infinite;
  -webkit-animation: spinner 2s linear infinite;
}
.loader circle {
  stroke: #ffffff89;
  stroke-dasharray: 132;
  fill: #0000;
}
.loader-search {
  display: none;
  top: calc(100% + 6rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.loader-search svg {
  width: 6rem;
  height: 6rem;
} */
/* @-webkit-keyframes spinner {
  0% {
    transform: rotate(-90deg);
    stroke-dashoffset: 132;
  }

  50% {
    transform: rotate(270deg);
    stroke-dashoffset: 28;
  }
  100% {
    transform: rotate(630deg);
    stroke-dashoffset: 132;
  }
} */
/* @keyframes spinner {
  0% {
    transform: rotate(-90deg);
    stroke-dashoffset: 132;
  }

  50% {
    transform: rotate(270deg);
    stroke-dashoffset: 28;
  }
  100% {
    transform: rotate(630deg);
    stroke-dashoffset: 132;
  }
} */
.default-bg::after,
.default-bg::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-size: auto var(--h);
  background-repeat: repeat;
  pointer-events: none;
}
.default-bg::before {
  background-image: url(../img/bg1.png);
  -webkit-animation: bgMoved 25s linear infinite forwards;
  animation: bgMoved 25s linear infinite forwards;
}
.default-bg::after {
  background-image: url(../img/bg2.png);
  -webkit-animation: bgMoved 15s linear infinite forwards;
  animation: bgMoved 15s linear infinite forwards;
}
@-webkit-keyframes bgMoved {
  100% {
    background-position: 0 var(--h);
  }
}
@keyframes bgMoved {
  100% {
    background-position: 0 var(--h);
  }
}
/**************************/
/*colors*/
/**************************/

.clr-000 {
  color: var(--c-neutral-000);
}
.clr-500 {
  color: var(--c-neutral-500);
}
.clr-primary {
  color: var(--c-primary);
}
.clr-secondary {
  color: var(--c-secondary);
}

/**************************/
/*heading*/
/**************************/
.fs-14 {
  font-size: var(--fs-14);
}
.fs-16 {
  font-size: var(--fs-16);
}
.fs-18 {
  font-size: var(--fs-18);
}
.fs-20 {
  font-size: var(--fs-20);
}
.fs-22 {
  font-size: var(--fs-22);
}
.fs-24 {
  font-size: var(--fs-24);
}

/**************************/
/*sizes icon*/
/**************************/
.size-20 {
  font-size: 20px;
}
.size-18 {
  font-size: 18px;
}

.size-16 {
  font-size: 16px;
}
/**************************/
/*wieght*/
/**************************/
.fw-200 {
  font-variation-settings: var(--fw-200);
}
.fw-250 {
  font-variation-settings: var(--fw-250);
}

.fw-400 {
  font-variation-settings: var(--fw-400);
}
.fw-500 {
  font-variation-settings: var(--fw-500);
}
.fw-600 {
  font-variation-settings: var(--fw-600);
}
/**************************/
/*accordion*/
/**************************/
.accordion-content:not(.open-in-desktop) {
  display: none;
}
.accordion-content.show {
  display: block;
}
/**************************/
/*font size*/
/**************************/

/**************************/
/*Scrollbar config */
/**************************/
::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

::-webkit-scrollbar-track {
  background: #eaeaea7a;
  border-radius: 100vw;

  /* border: 2px solid #fff; */
}

::-webkit-scrollbar-thumb {
  background: #dedbdb;
  border-radius: 100vw;
  cursor: pointer;
}
body::-webkit-scrollbar-thumb {
  background: var(--c-primary);
}
body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-primary);
}
/* Hide scrollbar for Chrome, Safari and Opera */

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

/* Hide scrollbar for IE, Edge and Firefox */

.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.style-scrollbar {
  padding-bottom: 8px;
}
.style-scrollbar::-webkit-scrollbar-track {
  background: #dadada;
  border-radius: 100vw;
  border: 1px solid #fff;
}

.style-scrollbar::-webkit-scrollbar-thumb {
  background: var(--c-secondary);
  /* border: 0.25em solid hsl(120 75% 50% / 1); */
  border-radius: 100vw;
  cursor: pointer;
}
.style-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--c-primary);
}
/**************************/
/*Swiper Config */
/**************************/

html.desktop .sw--product:not(.swiper-initialized) .swiper-slide,
html.desktop .sw--product-c:not(.swiper-initialized) .swiper-slide {
  flex-shrink: unset;
  margin-inline: 7px;
  width: 238px;
  flex: 0 0 238px;
}
html.desktop .sw--feature:not(.swiper-initialized) .swiper-slide,
html.desktop .sw--gallery:not(.swiper-initialized) .swiper-slide {
  flex-shrink: unset;
  margin-inline: 7px;
  width: 138px;
  flex: 0 0 138px;
}
html.desktop .sw--imgstype2:not(.swiper-initialized) .swiper-slide,
html.desktop .sw--feature2:not(.swiper-initialized) .swiper-slide {
  flex-shrink: unset;
  margin-inline: 7px;
  width: 300px;
  flex: 0 0 300px;
}
html.desktop .sw--contactinfo:not(.swiper-initialized) .swiper-slide {
  flex-shrink: unset;
  margin-inline: 7px;
  width: 277px;
  flex: 0 0 277px;
}
html.desktop .sw--imgstype1:not(.swiper-initialized) .swiper-slide {
  flex-shrink: unset;
  margin-inline: 7px;
  width: 261px;
  flex: 0 0 261px;
}
html.desktop .sw--inversecards:not(.swiper-initialized) .swiper-slide {
  flex-shrink: unset;
  margin-inline: 7px;
  width: 477px;
  flex: 0 0 477px;
}
html.desktop .sw--cat:not(.swiper-initialized) .swiper-slide {
  flex-shrink: unset;
  margin-inline: 7px;
  width: 178px;
  flex: 0 0 178px;
}
.swiper-pagination:not(.arr-c) {
  position: static;
  margin-top: min(3rem, 2vw);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
  cursor: auto;
  pointer-events: auto;
}
.swiper-pagination:not(.arr-c) .swiper-pagination-bullet-active {
  width: 2.1rem;
}
.swiper-pagination > span {
  transition: 0.3s !important;
  -webkit-transition: 0.3s !important;
  -moz-transition: 0.3s !important;
  -ms-transition: 0.3s !important;
  -o-transition: 0.3s !important;
}
.swiper-pagination-bullet {
  border-radius: 100vw;
}

/* arrow top */

/* default arrow */
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "\e908";
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "\e907";
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  color: inherit;
  font-family: "icomoon";
  font-size: 14px;
  transition: 0.3s;
}
.swiper-button-next:not(.arr-c),
.swiper-button-prev:not(.arr-c) {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 100vw;
  color: var(--c-neutral-500);
  transition: 0.3s;
}
.swiper-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}
.swiper-arrows .swiper-button-next,
.swiper-arrows .swiper-button-prev {
  position: static;
  margin: 0;
}
.side-arrows {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
}

/* .side-arrows:has(:not([role="button"])),
.side-arrows
  :is(
    .swiper-button-next:not([role="button"]),
    .swiper-button-prev:not([role="button"])
  ) {
  display: none;
} */
.swiper-button-next:not(.arr-c, .swiper-button-disabled):is(
    :hover,
    :focus-visible
  ):after,
.swiper-button-prev:not(.arr-c, .swiper-button-disabled):is(
    :hover,
    :focus-visible
  ):after {
  color: var(--c-neutral-000);
}
.swiper-button-next:not(.arr-c, .swiper-button-disabled):is(
    :hover,
    :focus-visible
  ),
.swiper-button-prev:not(.arr-c, .swiper-button-disabled):is(
    :hover,
    :focus-visible
  ) {
  background-color: var(--c-secondary);
  color: var(--c-neutral-000);
}

.swiper-scrollbar-drag {
  background-color: var(--c-primary);
  transition: 0.3s;
}
.swiper-button-next:not(.arr-c),
.swiper-rtl .swiper-button-prev:not(.arr-c) {
  right: calc(-3.6rem / 2);
  left: auto;
}
.swiper-button-prev:not(.arr-c),
.swiper-rtl .swiper-button-next:not(.arr-c) {
  left: calc(-3.6rem / 2);
  right: auto;
}
/* faq button swiper */
.arrows div[role="button"] {
  background: var(--color-gray-3);
  border-radius: 4px;
  width: 4.6rem;
}
.arrows div[role="button"]:after {
  color: rgba(51, 51, 51, 0.8);
}

.swiper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sw {
  position: relative;
}
.swiper-button-lock {
  display: none !important;
}
/**************************/
/*grids*/
/**************************/

/**************************/
/*gaps*/
/**************************/
[tooltip] {
  position: relative;
}
[tooltip][drc="ltr"]:after {
  direction: ltr;
}
[tooltip]::before,
[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;
}
[tooltip]::before {
  content: "";
  border: 5px solid transparent;
  z-index: 1001;
}
[tooltip]::after {
  content: attr(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-neutral-500);
  color: var(--c-neutral-000);
  z-index: 1000;
  white-space: initial;
}

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

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

[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: var(--c-neutral-500);
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: var(--c-neutral-500);
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

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

[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: var(--c-neutral-500);
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}
[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%);
  }
}

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

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  -webkit-animation: tooltips-horz 300ms ease-out forwards;
  animation: tooltips-horz 300ms ease-out forwards;
}
/* classes */
.gutter-b {
  margin-bottom: var(--gutter-x);
}
.title--between {
  display: flex;
  justify-content: space-between;
  gap: min(2rem, 3vw);
  flex-wrap: wrap;
  align-items: center;
}

.empty-error {
  color: var(--danger);
  background-color: var(--bg_danger);
  border: 1px solid var(--danger);
  font-size: var(--fs-14);
  padding: 1rem 3rem;
  text-align: center;
}
.justify-center {
  justify-content: center;
}
.mx-auto {
  margin-inline: auto;
}
.mt-auto {
  margin-top: auto;
}

.mt-0 {
  margin-top: 0 !important;
}
.btns--box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 1rem;
  margin-top: 3rem;
}
.btns--box .btn {
  min-width: 13.9rem;
}
@media (62em < width<=120em) {
  .container.full--left {
    max-width: calc(
      (((100vw - var(--width-container)) / 2) + var(--width-container))
    );
    margin-right: auto;
    margin-left: initial;
    padding-left: 0;
  }
  .full--left {
    width: calc(
      var(--width-container) - (var(--width-container) - 100%) +
        ((100vw - var(--width-container)) / 2) + (var(--gutter-x) * 0.5) - 2.5px
    );
  }
  .sectiob-producttab.type1 .products__arrows,
  .sectiob-producttab.type1 .products--head,
  .sectiob-producttab.type1 .title-notchange {
    padding-right: 15px;
  }
  .full--right {
    width: calc(
      var(--width-container) - (var(--width-container) - 100%) +
        ((100vw - var(--width-container)) / 2) + (var(--gutter-x) * 0.5) - 2.5px
    );
    margin-right: calc(
      -1 * (((100vw - var(--width-container)) / 2) + (var(--gutter-x) * 0.5)) + 2.5px
    );
  }
  .products__arrows {
    width: calc(
      100% + 2.5px - (var(--gutter-x) * 0.5) - (100vw - var(--width-container)) /
        2
    );
  }
  /* .full--right .swiper {
    direction: ltr;
  } */
}
.align-center {
  align-items: center;
}
.mr-auto {
  margin-right: auto;
}
/**************************/
/* shaer */
/**************************/
.gb-share {
  position: relative;
}
.share-links-box {
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
  width: auto;
  will-change: transform, opacity;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 12%), 0 8px 16px 0 rgb(0 0 0 / 16%);
  z-index: 2;
  transition: 0.3s;
  display: flex;
  right: calc(86% + 14px);
}
.share-links-box.show {
  opacity: 1;
  pointer-events: all;
  right: calc(100% + 14px);
}
.share-product {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  font-size: 18px;
  gap: 12px;
  line-height: 28px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
  line-height: 1;
}
.share-product :is(a, button):hover {
  color: var(--c-primary);
}
.close-share-box {
  width: 50px;
  border-right: 1.5px solid #eae8e4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.share-links-box::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 100%;
  height: 0;
  width: 0;
  pointer-events: none;
  /* left: 50%; */
  transform: translateY(-50%);
  border-top: 7px solid #0000;
  /* border-right: 7px solid #0000; */
  border-left: 7px solid #fff;
  border-bottom: 7px solid transparent;
}

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

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

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

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

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

/**************************/
/* BELOW 576px */
/**************************/
@media (min-width: 36em) {
}
/**************************/
/* ABOVE 768px */
/**************************/
@media (min-width: 48em) {
  .pb-sm {
    padding-bottom: 3rem;
  }
  .section-banners.pb-sm {
    padding-bottom: 0;
  }
  .mb-sm {
    padding-top: 3rem;
  }
  .mt-sm {
    margin-top: 3rem;
  }
  .pt-sm {
    padding-top: 3rem;
  }
}
/**************************/
/* ABOVE 992px */
/**************************/
@media (min-width: 62em) {
  .order-mnlg-first {
    order: -1;
  }
}
/**************************/
/* ABOVE 1200px */
/**************************/
@media (min-width: 75em) {
}

/**************************/
/* BELOW 1200px */
/**************************/
@media (max-width: 75em) {
  html {
    font-size: 59.5%;
  }
  .d-xl-none {
    display: none;
  }
}
/**************************/
/* BELOW 992px */
/**************************/
@media (max-width: 62em) {
  html {
    font-size: 56.5%;
  }
  .mt-lg-4 {
    margin-top: 4rem;
  }
  .mb-mxlg-4 {
    margin-bottom: 4rem;
  }
  .mb-mxlg-6 {
    margin-bottom: 6rem;
  }
  .mb-mxlg-4 {
    margin-bottom: 4rem;
  }
  .order-mxlg-first {
    order: -1;
  }
  .mb-mxlg-3 {
    margin-bottom: 3rem;
  }
  .d-mxlg-none {
    display: none;
  }
}
/**************************/
/* BELOW 768px */
/**************************/
@media (max-width: 48em) {
  html {
    font-size: 53.5%;
  }
}
/**************************/
/* BELOW 576px */
/**************************/
@media (max-width: 36em) {
  html {
    font-size: 51.5%;
  }
  html.desktop .swiper:not(.sw--hero, .sw-product-gallery) {
    width: calc(100% + var(--gutter-x));
    margin-right: calc(var(--gutter-x) * -0.5);
    padding: 0 2rem;
  }
  /* :root {
    --gutter-x: 2rem;
  } */
  .text-sm-center {
    text-align: center;
  }
  .accordion-content.open-in-desktop {
    display: none;
  }
  .side-arrows :is(.swiper-button-next, .swiper-button-prev) {
    position: static;
    margin: 0;
  }
  .side-arrows {
    margin-top: 2rem;
  }
  .main-text {
    font-size: 15px;
  }
  .mt-mxsm-2 {
    margin-top: 2rem;
  }
}

/* .s-modular {
  contain-intrinsic-size: 500px;
  content-visibility: auto;
} */
/* .footer-sub-menu li {
  opacity: 0;
} */
