@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*!
	By André Rinas, www.andrerinas.de
	Documentation, www.simplelightbox.com
	Available for use under the MIT License
	Version 2.14.2
*/
body.hidden-scroll{overflow:hidden}.sl-overlay{position:fixed;left:0;right:0;top:0;bottom:0;background:#fff;display:none;z-index:1035}.sl-wrapper{z-index:1040;width:100%;height:100%;left:0;top:0;position:fixed}.sl-wrapper *{box-sizing:border-box}.sl-wrapper button{border:0 none;background:rgba(0,0,0,0);font-size:28px;padding:0;cursor:pointer}.sl-wrapper button:hover{opacity:.7}.sl-wrapper .sl-close{display:none;position:fixed;right:30px;top:30px;z-index:10060;margin-top:-14px;margin-right:-14px;height:44px;width:44px;line-height:44px;font-family:Arial,Baskerville,monospace;color:#000;font-size:3rem}.sl-wrapper .sl-counter{display:none;position:fixed;top:30px;left:30px;z-index:10060;color:#000;font-size:1rem}.sl-wrapper .sl-download{display:none;position:fixed;bottom:5px;width:100%;text-align:center;z-index:10060;color:#fff;font-size:1rem}.sl-wrapper .sl-download a{color:#fff}.sl-wrapper .sl-navigation{width:100%;display:none}.sl-wrapper .sl-navigation button{position:fixed;top:50%;margin-top:-22px;height:44px;width:22px;line-height:44px;text-align:center;display:block;z-index:10060;font-family:Arial,Baskerville,monospace;color:#000}.sl-wrapper .sl-navigation button.sl-next{right:5px;font-size:2rem}.sl-wrapper .sl-navigation button.sl-prev{left:5px;font-size:2rem}@media(min-width: 35.5em){.sl-wrapper .sl-navigation button{width:44px}.sl-wrapper .sl-navigation button.sl-next{right:10px;font-size:3rem}.sl-wrapper .sl-navigation button.sl-prev{left:10px;font-size:3rem}}@media(min-width: 50em){.sl-wrapper .sl-navigation button{width:44px}.sl-wrapper .sl-navigation button.sl-next{right:20px;font-size:3rem}.sl-wrapper .sl-navigation button.sl-prev{left:20px;font-size:3rem}}.sl-wrapper.sl-dir-rtl .sl-navigation{direction:ltr}.sl-wrapper .sl-image{position:fixed;touch-action:none;z-index:10000}.sl-wrapper .sl-image img{margin:0;padding:0;display:block;border:0 none;width:100%;height:auto}@media(min-width: 35.5em){.sl-wrapper .sl-image img{border:0 none}}@media(min-width: 50em){.sl-wrapper .sl-image img{border:0 none}}.sl-wrapper .sl-image iframe{background:#000;border:0 none}@media(min-width: 35.5em){.sl-wrapper .sl-image iframe{border:0 none}}@media(min-width: 50em){.sl-wrapper .sl-image iframe{border:0 none}}.sl-wrapper .sl-image .sl-caption{display:none;padding:10px;color:#fff;background:rgba(0,0,0,.8);font-size:1rem;position:absolute;bottom:0;left:0;right:0}.sl-wrapper .sl-image .sl-caption.pos-top{bottom:auto;top:0}.sl-wrapper .sl-image .sl-caption.pos-outside{bottom:auto}.sl-spinner{display:none;border:5px solid #333;border-radius:40px;height:40px;left:50%;margin:-20px 0 0 -20px;opacity:0;position:fixed;top:50%;width:40px;z-index:1007;animation:pulsate 1s ease-out infinite}.sl-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.sl-transition{transition:transform ease 200ms}@keyframes pulsate{0%{transform:scale(0.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}
.range-slider{touch-action:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer;display:block;position:relative;width:100%;height:8px;background:#ddd;border-radius:4px}.range-slider[data-vertical]{height:100%;width:8px}.range-slider[data-disabled]{opacity:.5;cursor:not-allowed}.range-slider .range-slider__thumb{position:absolute;z-index:3;top:50%;width:24px;height:24px;transform:translate(-50%,-50%);border-radius:50%;background:#2196f3}.range-slider .range-slider__thumb:focus-visible{outline:0;box-shadow:0 0 0 6px rgba(33,150,243,.5)}.range-slider[data-vertical] .range-slider__thumb{left:50%}.range-slider .range-slider__thumb[data-disabled]{z-index:2}.range-slider .range-slider__range{position:absolute;z-index:1;transform:translate(0,-50%);top:50%;width:100%;height:100%;background:#51adf6}.range-slider[data-vertical] .range-slider__range{left:50%;transform:translate(-50%,0)}.range-slider input[type=range]{-webkit-appearance:none;pointer-events:none;position:absolute;z-index:2;top:0;left:0;width:0;height:0;background-color:transparent}.range-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;appearance:none}.range-slider input[type=range]::-moz-range-thumb{width:0;height:0;border:0}.range-slider input[type=range]:focus{outline:0}
@charset "UTF-8";
@font-face {
  font-family: "iransans";
  src: url("/fonts/IRANSansWeb.woff");
  font-display: swap;
}
@font-face {
  font-family: "IranNastaliq";
  src: url("/fonts/nastaliq/IranNastaliq.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: KalamehWeb;
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/kalameh/woff/KalamehWeb-Medium.woff") format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
  font-family: KalamehWeb;
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/kalameh/woff/KalamehWeb-Bold.woff") format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
  font-family: KalamehWeb;
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/kalameh/woff/KalamehWeb-ExtraBold.woff") format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
  font-family: KalamehWeb;
  font-style: normal;
  font-weight: 900;
  src: url("/fonts/kalameh/woff/KalamehWeb-Black.woff") format("woff");
}
@font-face {
  font-family: iransansNum;
  src: url("/fonts/iransans/numbers/woff/IRANSansXFaNum-Regular.woff") format("woff"); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "iconix";
  src: url("/fonts/iconix83.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.iconix {
  font-family: "iconix";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  min-width: 1em;
  margin-right: 0;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  margin-left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.animate-spin {
  animation: spin 2s infinite linear;
  display: inline-block;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.icon-globe-alt:before {
  content: "\e800";
} /* '' */
.icon-cup:before {
  content: "\e801";
} /* '' */
.icon-aparat:before {
  content: "\e802";
} /* '' */
.icon-youtube:before {
  content: "\e803";
} /* '' */
.icon-home-1:before {
  content: "\e804";
} /* '' */
.icon-tick:before {
  content: "\e805";
} /* '' */
.icon-heart:before {
  content: "\e806";
} /* '' */
.icon-settings:before {
  content: "\e807";
} /* '' */
.icon-magnifier:before {
  content: "\e808";
} /* '' */
.icon-bell:before {
  content: "\e809";
} /* '' */
.icon-wrench:before {
  content: "\e80a";
} /* '' */
.icon-film:before {
  content: "\e80b";
} /* '' */
.icon-rss:before {
  content: "\e80c";
} /* '' */
.icon-eye-off:before {
  content: "\e80d";
} /* '' */
.icon-telegram-plane:before {
  content: "\e80e";
} /* '' */
.icon-heart-full:before {
  content: "\e80f";
} /* '' */
.icon-play:before {
  content: "\e810";
} /* '' */
.icon-facebook-f:before {
  content: "\e811";
} /* '' */
.icon-md-arrow-round-back:before {
  content: "\e812";
} /* '' */
.icon-circle-out:before {
  content: "\e813";
} /* '' */
.icon-doc-1:before {
  content: "\e814";
} /* '' */
.icon-md-arrow-round-forward:before {
  content: "\e815";
} /* '' */
.icon-instagram:before {
  content: "\e816";
} /* '' */
.icon-clock-alt:before {
  content: "\e817";
} /* '' */
.icon-note:before {
  content: "\e818";
} /* '' */
.icon-cog:before {
  content: "\e819";
} /* '' */
.icon-exclamation:before {
  content: "\e81a";
} /* '' */
.icon-bubble:before {
  content: "\e81b";
} /* '' */
.icon-camera:before {
  content: "\e81c";
} /* '' */
.icon-gavel:before {
  content: "\e81d";
} /* '' */
.icon-dollar:before {
  content: "\e81e";
} /* '' */
.icon-house-user:before {
  content: "\e81f";
} /* '' */
.icon-id-card-alt:before {
  content: "\e820";
} /* '' */
.icon-search:before {
  content: "\e821";
} /* '' */
.icon-info-circle:before {
  content: "\e822";
} /* '' */
.icon-attention-alt:before {
  content: "\e823";
} /* '' */
.icon-pencil-alt:before {
  content: "\e824";
} /* '' */
.icon-search-1:before {
  content: "\e825";
} /* '' */
.icon-share:before {
  content: "\e826";
} /* '' */
.icon-shopping-cart:before {
  content: "\e827";
} /* '' */
.icon-stamp:before {
  content: "\e828";
} /* '' */
.icon-user:before {
  content: "\e829";
} /* '' */
.icon-user-cog:before {
  content: "\e82a";
} /* '' */
.icon-tick-c:before {
  content: "\e82b";
} /* '' */
.icon-emo-happy:before {
  content: "\e82c";
} /* '' */
.icon-emo-unhappy:before {
  content: "\e82d";
} /* '' */
.icon-life-ring:before {
  content: "\e82e";
} /* '' */
.icon-spin6:before {
  content: "\e82f";
} /* '' */
.icon-home-simple:before {
  content: "\e830";
} /* '' */
.icon-lock:before {
  content: "\e831";
} /* '' */
.icon-book:before {
  content: "\e832";
} /* '' */
.icon-bag-plus:before {
  content: "\e833";
} /* '' */
.icon-envelope:before {
  content: "\e834";
} /* '' */
.icon-circle:before {
  content: "\e835";
} /* '' */
.icon-angle-down:before {
  content: "\e836";
} /* '' */
.icon-angle-up:before {
  content: "\e837";
} /* '' */
.icon-angle-right:before {
  content: "\e838";
} /* '' */
.icon-angle-left:before {
  content: "\e839";
} /* '' */
.icon-help-circled-alt:before {
  content: "\e83a";
} /* '' */
.icon-left-open-big:before {
  content: "\e83b";
} /* '' */
.icon-times:before {
  content: "\e83c";
} /* '' */
.icon-linkedin-in:before {
  content: "\e83d";
} /* '' */
.icon-twitter:before {
  content: "\e83e";
} /* '' */
.icon-desktop:before {
  content: "\e83f";
} /* '' */
.icon-right-open-big:before {
  content: "\e840";
} /* '' */
.icon-sun:before {
  content: "\e841";
} /* '' */
.icon-moon:before {
  content: "\e842";
} /* '' */
.icon-whatsapp:before {
  content: "\e843";
} /* '' */
.icon-sms:before {
  content: "\e844";
} /* '' */
.icon-key:before {
  content: "\e845";
} /* '' */
.icon-comment:before {
  content: "\e846";
} /* '' */
.icon-headphones:before {
  content: "\e847";
} /* '' */
.icon-times-circle:before {
  content: "\e848";
} /* '' */
.icon-exclamation-circle:before {
  content: "\e849";
} /* '' */
.icon-error-alt:before {
  content: "\e84a";
} /* '' */
.icon-chevron-up:before {
  content: "\e84b";
} /* '' */
.icon-chevron-left:before {
  content: "\e84c";
} /* '' */
.icon-chevron-right:before {
  content: "\e84d";
} /* '' */
.icon-globe-1:before {
  content: "\e84e";
} /* '' */
.icon-clock:before {
  content: "\e84f";
} /* '' */
.icon-chevron-down:before {
  content: "\e850";
} /* '' */
.icon-md-arrow-round-down:before {
  content: "\e851";
} /* '' */
.icon-md-arrow-round-up:before {
  content: "\e852";
} /* '' */
.icon-circle-notch:before {
  content: "\e853";
} /* '' */
.icon-sync-alt:before {
  content: "\e854";
} /* '' */
.icon-hotjar:before {
  content: "\e855";
} /* '' */
.icon-eye:before {
  content: "\e856";
} /* '' */
.icon-chat:before {
  content: "\e857";
} /* '' */
.icon-sign-out-alt:before {
  content: "\e858";
} /* '' */
.icon-bookmark:before {
  content: "\e859";
} /* '' */
.icon-location:before {
  content: "\e85a";
} /* '' */
.icon-folder-open:before {
  content: "\e85b";
} /* '' */
.icon-folder:before {
  content: "\e85c";
} /* '' */
.icon-flow-tree:before {
  content: "\e85d";
} /* '' */
.icon-shop:before {
  content: "\e85e";
} /* '' */
.icon-print:before {
  content: "\e85f";
} /* '' */
.icon-doc-empty:before {
  content: "\e860";
} /* '' */
.icon-link:before {
  content: "\e861";
} /* '' */
.icon-box:before {
  content: "\e862";
} /* '' */
.icon-trash-empty:before {
  content: "\e863";
} /* '' */
.icon-trash-soft:before {
  content: "\e864";
} /* '' */
.icon-list:before {
  content: "\e865";
} /* '' */
.icon-attention:before {
  content: "\e866";
} /* '' */
.icon-doc-text-inv:before {
  content: "\e867";
} /* '' */
.icon-money-2:before {
  content: "\e868";
} /* '' */
.icon-x:before {
  content: "\e869";
} /* '' */
.icon-24-support:before {
  content: "\e86a";
} /* '' */
.icon-dynamite-1:before {
  content: "\e86b";
} /* '' */
.icon-dynamite-2:before {
  content: "\e86c";
} /* '' */
.icon-hospital:before {
  content: "\e86d";
} /* '' */
.icon-users:before {
  content: "\e86e";
} /* '' */
.icon-customer-service:before {
  content: "\e86f";
} /* '' */
.icon-ok:before {
  content: "\e870";
} /* '' */
.icon-plus:before {
  content: "\e871";
} /* '' */
.icon-blog:before {
  content: "\e872";
} /* '' */
.icon-minus:before {
  content: "\e873";
} /* '' */
.icon-code:before {
  content: "\e874";
} /* '' */
.icon-check-circle:before {
  content: "\e875";
} /* '' */
.icon-key-inv:before {
  content: "\e876";
} /* '' */
.icon-camera-alt:before {
  content: "\e877";
} /* '' */
.icon-truck-1:before {
  content: "\e878";
} /* '' */
.icon-unlock-out:before {
  content: "\e879";
} /* '' */
.icon-megaphone-fill:before {
  content: "\e87a";
} /* '' */
.icon-dynamits:before {
  content: "\e87b";
} /* '' */
.icon-bomb:before {
  content: "\e87c";
} /* '' */
.icon-newspaper:before {
  content: "\e87d";
} /* '' */
.icon-tick-s:before {
  content: "\e87e";
} /* '' */
.icon-pen:before {
  content: "\e87f";
} /* '' */
.icon-phone-2:before {
  content: "\e880";
} /* '' */
.icon-pin:before {
  content: "\e881";
} /* '' */
.icon-home:before {
  content: "\e882";
} /* '' */
.icon-download:before {
  content: "\e883";
} /* '' */
.icon-comment-text:before {
  content: "\e884";
} /* '' */
.icon-qr-code:before {
  content: "\e8a6";
} /* '' */
.icon-scan:before {
  content: "\e8a8";
} /* '' */
.icon-bag:before {
  content: "\e8a9";
} /* '' */
.icon-heart-1:before {
  content: "\e8aa";
} /* '' */
.icon-bag-dash:before {
  content: "\e8ab";
} /* '' */
.icon-dinamit:before {
  content: "\e8ac";
} /* '' */
.icon-heart-fill:before {
  content: "\e8ad";
} /* '' */
.icon-house:before {
  content: "\e8af";
} /* '' */
.icon-shop-1:before {
  content: "\e8b0";
} /* '' */
.icon-bag-fill:before {
  content: "\e8b1";
} /* '' */
.icon-paperclip:before {
  content: "\e8b2";
} /* '' */
.icon-lock-out:before {
  content: "\e8b3";
} /* '' */
.icon-truck:before {
  content: "\e8b4";
} /* '' */
.icon-geo-alt:before {
  content: "\e8c3";
} /* '' */
.icon-geo-alt-fill:before {
  content: "\e8c4";
} /* '' */
.icon-bookmark-1:before {
  content: "\e8c6";
} /* '' */
.icon-bookmark-fill:before {
  content: "\e8c7";
} /* '' */
.icon-chat-square:before {
  content: "\e8c9";
} /* '' */
.icon-sliders2:before {
  content: "\e8ca";
} /* '' */
.icon-x-circle-fill:before {
  content: "\e8cb";
} /* '' */
.icon-at:before {
  content: "\e8cc";
} /* '' */
.icon-envelope-fill:before {
  content: "\e8cd";
} /* '' */
.icon-envelope-at-fill:before {
  content: "\e8ce";
} /* '' */
.icon-c-square-fill:before {
  content: "\e8cf";
} /* '' */
.icon-receipt:before {
  content: "\e8d0";
} /* '' */
.icon-wallet-fill:before {
  content: "\e8d1";
} /* '' */
.icon-credit-card-fill:before {
  content: "\e8d2";
} /* '' */
.icon-upload:before {
  content: "\e8d3";
} /* '' */
.icon-thumbtack:before {
  content: "\e910";
} /* '' */
.icon-reply:before {
  content: "\e913";
} /* '' */
.icon-coins:before {
  content: "\e915";
} /* '' */
.icon-car:before {
  content: "\e916";
} /* '' */
.icon-vote-yea:before {
  content: "\e917";
} /* '' */
.icon-mobile-alt:before {
  content: "\e918";
} /* '' */
.icon-pepper-hot:before {
  content: "\e919";
} /* '' */
.icon-newspaper-1:before {
  content: "\e91b";
} /* '' */
.icon-chart-line:before {
  content: "\e91c";
} /* '' */
.icon-upload-cloud:before {
  content: "\f014";
} /* '' */
.icon-download-cloud:before {
  content: "\f015";
} /* '' */
.icon-globe:before {
  content: "\f018";
} /* '' */
.icon-hash:before {
  content: "\f029";
} /* '' */
.icon-ruler:before {
  content: "\f044";
} /* '' */
.icon-info-circled-alt:before {
  content: "\f086";
} /* '' */
.icon-bookmark-empty:before {
  content: "\f097";
} /* '' */
.icon-github-circled:before {
  content: "\f09b";
} /* '' */
.icon-certificate:before {
  content: "\f0a3";
} /* '' */
.icon-menu:before {
  content: "\f0c9";
} /* '' */
.icon-table:before {
  content: "\f0ce";
} /* '' */
.icon-money:before {
  content: "\f0d6";
} /* '' */
.icon-gauge:before {
  content: "\f0e4";
} /* '' */
.icon-user-md:before {
  content: "\f0f0";
} /* '' */
.icon-stethoscope:before {
  content: "\f0f1";
} /* '' */
.icon-bell-alt:before {
  content: "\f0f3";
} /* '' */
.icon-medkit:before {
  content: "\f0fa";
} /* '' */
.icon-h-sigh:before {
  content: "\f0fd";
} /* '' */
.icon-folder-empty:before {
  content: "\f114";
} /* '' */
.icon-folder-open-empty:before {
  content: "\f115";
} /* '' */
.icon-unlink:before {
  content: "\f127";
} /* '' */
.icon-calendar-empty:before {
  content: "\f133";
} /* '' */
.icon-rocket:before {
  content: "\f135";
} /* '' */
.icon-lock-open-alt:before {
  content: "\f13e";
} /* '' */
.icon-bitcoin:before {
  content: "\f15a";
} /* '' */
.icon-doc:before {
  content: "\f15b";
} /* '' */
.icon-doc-text:before {
  content: "\f15c";
} /* '' */
.icon-apple:before {
  content: "\f179";
} /* '' */
.icon-bug:before {
  content: "\f188";
} /* '' */
.icon-graduation-cap:before {
  content: "\f19d";
} /* '' */
.icon-google:before {
  content: "\f1a0";
} /* '' */
.icon-database:before {
  content: "\f1c0";
} /* '' */
.icon-file-excel:before {
  content: "\f1c3";
} /* '' */
.icon-trash:before {
  content: "\f1f8";
} /* '' */
.icon-brush:before {
  content: "\f1fc";
} /* '' */
.icon-chart-pie:before {
  content: "\f200";
} /* '' */
.icon-diamond:before {
  content: "\f219";
} /* '' */
.icon-heartbeat:before {
  content: "\f21e";
} /* '' */
.icon-server:before {
  content: "\f233";
} /* '' */
.icon-shopping-bag:before {
  content: "\f290";
} /* '' */
.icon-shopping-basket:before {
  content: "\f291";
} /* '' */
.icon-percent:before {
  content: "\f295";
} /* '' */
@font-face {
  font-family: "svgrepo";
  src: url("/fonts/svgrepo2.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.svgrepo {
  font-family: "svgrepo";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  min-width: 1em;
  margin-right: 0;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  margin-left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-svg-lamp:before {
  content: "\e801";
} /* '' */
.icon-svg-makeup:before {
  content: "\e802";
} /* '' */
.icon-svg-palette:before {
  content: "\e804";
} /* '' */
.icon-svg-realestate:before {
  content: "\e805";
} /* '' */
.icon-svg-vehicle:before {
  content: "\e807";
} /* '' */
.icon-svg-paint-brush:before {
  content: "\e809";
} /* '' */
.icon-svg-box:before {
  content: "\e80a";
} /* '' */
.icon-svg-couch:before {
  content: "\e80b";
} /* '' */
.icon-svg-employee:before {
  content: "\e80c";
} /* '' */
.icon-svg-apple:before {
  content: "\e80d";
} /* '' */
.icon-svg-tools:before {
  content: "\e80e";
} /* '' */
.icon-svg-iphone:before {
  content: "\e80f";
} /* '' */
.icon-svg-stethoscope:before {
  content: "\e810";
} /* '' */
.icon-svg-working:before {
  content: "\e811";
} /* '' */
.icon-svg-handshake:before {
  content: "\e812";
} /* '' */
.icon-svg-smartphone:before {
  content: "\e813";
} /* '' */
.icon-svg-paint-bin:before {
  content: "\e814";
} /* '' */
.icon-svg-watch:before {
  content: "\e817";
} /* '' */
.icon-svg-diamond:before {
  content: "\e819";
} /* '' */
@font-face {
  font-family: "icong";
  src: url("/fonts/icong-14.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.icong {
  font-family: "icong";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  min-width: 1em;
  margin-right: 0;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  margin-left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-g-car:before {
  content: "\e800";
} /* '' */
.icon-g-chair:before {
  content: "\e801";
} /* '' */
.icon-g-diamond:before {
  content: "\e802";
} /* '' */
.icon-g-handshake:before {
  content: "\e803";
} /* '' */
.icon-g-handyman:before {
  content: "\e804";
} /* '' */
.icon-g-imagesearch-roller:before {
  content: "\e805";
} /* '' */
.icon-g-lunch-dining:before {
  content: "\e806";
} /* '' */
.icon-g-package:before {
  content: "\e807";
} /* '' */
.icon-g-palette:before {
  content: "\e808";
} /* '' */
.icon-g-phone:before {
  content: "\e809";
} /* '' */
.icon-g-real-estate:before {
  content: "\e80a";
} /* '' */
.icon-g-watch:before {
  content: "\e80b";
} /* '' */
.icon-g-badge:before {
  content: "\e80c";
} /* '' */
.icon-g-beauty:before {
  content: "\e80d";
} /* '' */
.icon-g-garage_home:before {
  content: "\e80e";
} /* '' */
.icon-g-grocery:before {
  content: "\e80f";
} /* '' */
.icon-g-home_and_garden:before {
  content: "\e810";
} /* '' */
.icon-g-other_houses:before {
  content: "\e811";
} /* '' */
.icon-g-psychiatry:before {
  content: "\e812";
} /* '' */
.icon-g-source_environment:before {
  content: "\e813";
} /* '' */
.icon-g-storefront:before {
  content: "\e814";
} /* '' */
.icon-g-universal_local:before {
  content: "\e815";
} /* '' */
.icon-g-villa:before {
  content: "\e816";
} /* '' */
.icon-g-warehouse:before {
  content: "\e817";
} /* '' */
.icon-g-apartment:before {
  content: "\e818";
} /* '' */
.icon-g-arrow_selector_tool:before {
  content: "\e819";
} /* '' */
.icon-g-crop_landscape:before {
  content: "\e81a";
} /* '' */
.icon-g-explosion:before {
  content: "\e81b";
} /* '' */
.icon-g-factory:before {
  content: "\e81c";
} /* '' */
.icon-g-living:before {
  content: "\e81d";
} /* '' */
.icon-g-location_away:before {
  content: "\e81e";
} /* '' */
.icon-g-night_shelter:before {
  content: "\e81f";
} /* '' */
.icon-g-receipt_long:before {
  content: "\e820";
} /* '' */
.icon-g-roofing:before {
  content: "\e821";
} /* '' */
.icon-g-store:before {
  content: "\e822";
} /* '' */
.icon-g-account_balance:before {
  content: "\e823";
} /* '' */
.icon-g-foundation:before {
  content: "\e824";
} /* '' */
.icon-g-house_siding:before {
  content: "\e825";
} /* '' */
.icon-g-bike:before {
  content: "\e826";
} /* '' */
.icon-g-sailing:before {
  content: "\e827";
} /* '' */
.icon-g-car-1:before {
  content: "\e828";
} /* '' */
.icon-g-transport:before {
  content: "\e829";
} /* '' */
.icon-g-flight:before {
  content: "\e82a";
} /* '' */
.icon-g-truck:before {
  content: "\e82b";
} /* '' */
.icon-g-swap_driving:before {
  content: "\e82c";
} /* '' */
.icon-g-car_tag:before {
  content: "\e82d";
} /* '' */
.icon-g-motor:before {
  content: "\e82e";
} /* '' */
.icon-g-service_toolbox:before {
  content: "\e82f";
} /* '' */
.icon-g-minor_crash:before {
  content: "\e830";
} /* '' */
.icon-g-car_repair:before {
  content: "\e831";
} /* '' */
.icon-g-shuttle:before {
  content: "\e832";
} /* '' */
.icon-g-no_crash:before {
  content: "\e833";
} /* '' */
.icon-car-crash:before {
  content: "\e834";
} /* '' */
.icon-g-car-rental:before {
  content: "\e835";
} /* '' */
.icon-g-taxi:before {
  content: "\e836";
} /* '' */
.icon-g-towing:before {
  content: "\e837";
} /* '' */
.icon-g-agriculture:before {
  content: "\e838";
} /* '' */
.icon-g-forklift:before {
  content: "\e839";
} /* '' */
.icon-g-subway:before {
  content: "\e83a";
} /* '' */
.icon-g-hookup:before {
  content: "\e83b";
} /* '' */
.icon-g-bus:before {
  content: "\e83c";
} /* '' */
.icon-g-loader:before {
  content: "\e83d";
} /* '' */
.icon-g-select_all:before {
  content: "\e83e";
} /* '' */
.icon-g-snowmobile:before {
  content: "\e83f";
} /* '' */
.icon-g-ship:before {
  content: "\e840";
} /* '' */
.icon-g-binoculars:before {
  content: "\e841";
} /* '' */
.icon-g-hangout_video:before {
  content: "\e842";
} /* '' */
.icon-g-tv:before {
  content: "\e843";
} /* '' */
.icon-g-music_video:before {
  content: "\e844";
} /* '' */
.icon-g-router:before {
  content: "\e845";
} /* '' */
.icon-g-print:before {
  content: "\e846";
} /* '' */
.icon-g-watch_screentime:before {
  content: "\e847";
} /* '' */
.icon-g-watch-1:before {
  content: "\e848";
} /* '' */
.icon-g-laptop_mac:before {
  content: "\e849";
} /* '' */
.icon-g-sim_card:before {
  content: "\e84a";
} /* '' */
.icon-g-tablet_mac:before {
  content: "\e84b";
} /* '' */
.icon-g-more:before {
  content: "\e84c";
} /* '' */
.icon-g-solar_power:before {
  content: "\e84d";
} /* '' */
.icon-g-nest_cam:before {
  content: "\e84e";
} /* '' */
.icon-g-party_mode:before {
  content: "\e84f";
} /* '' */
.icon-g-call:before {
  content: "\e850";
} /* '' */
.icon-g-stadia_controller:before {
  content: "\e851";
} /* '' */
.icon-g-mic:before {
  content: "\e852";
} /* '' */
.icon-g-computer:before {
  content: "\e853";
} /* '' */
.icon-g-videocam:before {
  content: "\e854";
} /* '' */
.icon-g-dark_mode:before {
  content: "\e855";
} /* '' */
.icon-g-shopping_basket:before {
  content: "\e856";
} /* '' */
.icon-g-glass:before {
  content: "\e857";
} /* '' */
.icon-g-wine_bar:before {
  content: "\e858";
} /* '' */
.icon-g-check_box:before {
  content: "\e859";
} /* '' */
.icon-g-view_compact:before {
  content: "\e85a";
} /* '' */
.icon-g-king_bed:before {
  content: "\e85b";
} /* '' */
.icon-g-stockpot:before {
  content: "\e85c";
} /* '' */
.icon-g-countertops:before {
  content: "\e85d";
} /* '' */
.icon-g-cut:before {
  content: "\e85e";
} /* '' */
.icon-g-dry_cleaning:before {
  content: "\e85f";
} /* '' */
.icon-g-work:before {
  content: "\e860";
} /* '' */
.icon-g-eyeglasses:before {
  content: "\e861";
} /* '' */
.icon-g-endocrinology:before {
  content: "\e862";
} /* '' */
.icon-g-crop:before {
  content: "\e863";
} /* '' */
.icon-g-shoes:before {
  content: "\e864";
} /* '' */
.icon-g-girl:before {
  content: "\e865";
} /* '' */
.icon-g-woman:before {
  content: "\e866";
} /* '' */
.icon-g-man:before {
  content: "\e867";
} /* '' */
.icon-g-food_bank:before {
  content: "\e868";
} /* '' */
.icon-g-vaping_rooms:before {
  content: "\e869";
} /* '' */
.icon-g-pill:before {
  content: "\e86a";
} /* '' */
.icon-g-face:before {
  content: "\e86b";
} /* '' */
.icon-g-soap:before {
  content: "\e86c";
} /* '' */
.icon-g-sanitizer:before {
  content: "\e86d";
} /* '' */
.icon-g-dentistry:before {
  content: "\e86e";
} /* '' */
.icon-g-face_2:before {
  content: "\e86f";
} /* '' */
.icon-g-cleaning:before {
  content: "\e870";
} /* '' */
.icon-g-groups:before {
  content: "\e871";
} /* '' */
.icon-g-category:before {
  content: "\e872";
} /* '' */
.icon-g-landscape:before {
  content: "\e873";
} /* '' */
.icon-g-potted_plant:before {
  content: "\e874";
} /* '' */
.icon-g-pets:before {
  content: "\e875";
} /* '' */
.icon-g-sports_soccer:before {
  content: "\e876";
} /* '' */
.icon-g-toys:before {
  content: "\e877";
} /* '' */
.icon-g-square_foot:before {
  content: "\e878";
} /* '' */
.icon-g-book:before {
  content: "\e879";
} /* '' */
.icon-g-piano:before {
  content: "\e87a";
} /* '' */
.icon-g-flight_takeoff:before {
  content: "\e87b";
} /* '' */
.icon-g-ad:before {
  content: "\e87c";
} /* '' */
.icon-g-encrypted:before {
  content: "\e87d";
} /* '' */
.icon-g-gesture:before {
  content: "\e87e";
} /* '' */
.icon-g-checkroom:before {
  content: "\e87f";
} /* '' */
.icon-g-home_repair:before {
  content: "\e880";
} /* '' */
.icon-g-medical_services:before {
  content: "\e881";
} /* '' */
.icon-g-work_alert:before {
  content: "\e882";
} /* '' */
.icon-g-mystery:before {
  content: "\e883";
} /* '' */
.icon-g-key:before {
  content: "\e884";
} /* '' */
.icon-g-cleaning_services:before {
  content: "\e885";
} /* '' */
.icon-g-local_florist:before {
  content: "\e886";
} /* '' */
.icon-g-payments:before {
  content: "\e887";
} /* '' */
.icon-g-school:before {
  content: "\e888";
} /* '' */
.icon-g-bolt:before {
  content: "\e889";
} /* '' */
.icon-g-location:before {
  content: "\e88a";
} /* '' */
/*!
 * Bootstrap  v5.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.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%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .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%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .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%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .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%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .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%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .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%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #bacbe6;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #cbccce;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #bcd0c7;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #badce3;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #e6dbb9;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #dfc2c4;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #dfe0e1;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #373b3e;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + var(--bs-border-width));
  padding-bottom: calc(0.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  -webkit-appearance: none;
          appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-tertiary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  -moz-appearance: none;
       appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-tertiary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-select ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}
.form-floating > :disabled ~ label::after,
.form-floating > .form-control:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--bs-form-valid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: var(--bs-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(var(--bs-border-width) * -1);
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(var(--bs-border-width) * -1);
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark,
.navbar[data-bs-theme=dark] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme=dark] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(var(--bs-border-width) * -1);
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: var(--bs-border-radius);
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
  color: var(--bs-alert-link-color);
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}

.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}

.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress,
.progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #0d6efd;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-stacked > .progress {
  overflow: visible;
}

.progress-stacked > .progress > .progress-bar {
  width: 100%;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white {
  filter: var(--bs-btn-close-white-filter);
}

[data-bs-theme=dark] .btn-close {
  filter: var(--bs-btn-close-white-filter);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-border-width: var(--bs-border-width);
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: var(--bs-border-radius);
  --bs-toast-box-shadow: var(--bs-box-shadow);
  --bs-toast-header-color: var(--bs-secondary-color);
  --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-header-border-color: var(--bs-border-color-translucent);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: var(--bs-body-bg);
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

[data-bs-theme=dark] .carousel .carousel-control-prev-icon,
[data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon,
[data-bs-theme=dark].carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  background-color: #000;
}
[data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
  color: #000;
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: var(--bs-border-width);
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition);
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
          mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
            mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
     object-fit: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

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

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

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

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  -moz-column-gap: 0 !important;
       column-gap: 0 !important;
}

.column-gap-1 {
  -moz-column-gap: 0.25rem !important;
       column-gap: 0.25rem !important;
}

.column-gap-2 {
  -moz-column-gap: 0.5rem !important;
       column-gap: 0.5rem !important;
}

.column-gap-3 {
  -moz-column-gap: 1rem !important;
       column-gap: 1rem !important;
}

.column-gap-4 {
  -moz-column-gap: 1.5rem !important;
       column-gap: 1.5rem !important;
}

.column-gap-5 {
  -moz-column-gap: 3rem !important;
       column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-md-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  transition: all 0s;
}
.tns-slider > .tns-item {
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: 2333.3333333333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714286%;
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

.swal2-popup.swal2-toast {
  box-sizing: border-box;
  grid-column: 1/4 !important;
  grid-row: 1/4 !important;
  grid-template-columns: min-content auto min-content;
  padding: 1em;
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0 0 1px hsla(0, 0%, 0%, 0.075), 0 1px 2px hsla(0, 0%, 0%, 0.075), 1px 2px 4px hsla(0, 0%, 0%, 0.075), 1px 3px 8px hsla(0, 0%, 0%, 0.075), 2px 4px 16px hsla(0, 0%, 0%, 0.075);
  pointer-events: all;
}
.swal2-popup.swal2-toast > * {
  grid-column: 2;
}
.swal2-popup.swal2-toast .swal2-title {
  margin: 0.5em 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial;
}
.swal2-popup.swal2-toast .swal2-loading {
  justify-content: center;
}
.swal2-popup.swal2-toast .swal2-input {
  height: 2em;
  margin: 0.5em;
  font-size: 1em;
}
.swal2-popup.swal2-toast .swal2-validation-message {
  font-size: 1em;
}
.swal2-popup.swal2-toast .swal2-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}
.swal2-popup.swal2-toast .swal2-close {
  grid-column: 3/3;
  grid-row: 1/99;
  align-self: center;
  width: 0.8em;
  height: 0.8em;
  margin: 0;
  font-size: 2em;
}
.swal2-popup.swal2-toast .swal2-html-container {
  margin: 0.5em 1em;
  padding: 0;
  overflow: initial;
  font-size: 1em;
  text-align: initial;
}
.swal2-popup.swal2-toast .swal2-html-container:empty {
  padding: 0;
}
.swal2-popup.swal2-toast .swal2-loader {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  height: 2em;
  margin: 0.25em;
}
.swal2-popup.swal2-toast .swal2-icon {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0 0.5em 0 0;
}
.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  top: 0.875em;
  width: 1.375em;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 0.3125em;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 0.3125em;
}
.swal2-popup.swal2-toast .swal2-actions {
  justify-content: flex-start;
  height: auto;
  margin: 0;
  margin-top: 0.5em;
  padding: 0 0.5em;
}
.swal2-popup.swal2-toast .swal2-styled {
  margin: 0.25em 0.5em;
  padding: 0.4em 0.6em;
  font-size: 1em;
}
.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 1.6em;
  height: 3em;
  transform: rotate(45deg);
  border-radius: 50%;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.8em;
  left: -0.5em;
  transform: rotate(-45deg);
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.25em;
  left: 0.9375em;
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0;
}
.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}
.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: 0.4375em;
  width: 0.4375em;
  height: 2.6875em;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
  height: 0.3125em;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  top: 1.125em;
  left: 0.1875em;
  width: 0.75em;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  top: 0.9375em;
  right: 0.1875em;
  width: 1.375em;
}
.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
  animation: swal2-toast-animate-success-line-tip 0.75s;
}
.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
  animation: swal2-toast-animate-success-line-long 0.75s;
}
.swal2-popup.swal2-toast.swal2-show {
  animation: swal2-toast-show 0.5s;
}
.swal2-popup.swal2-toast.swal2-hide {
  animation: swal2-toast-hide 0.1s forwards;
}

div:where(.swal2-container) {
  display: grid;
  position: fixed;
  z-index: 1060;
  inset: 0;
  box-sizing: border-box;
  grid-template-areas: "top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end";
  grid-template-rows: minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);
  height: 100%;
  padding: 0.625em;
  overflow-x: hidden;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch;
}
div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
  background: rgba(0, 0, 0, 0.4);
}
div:where(.swal2-container).swal2-backdrop-hide {
  background: transparent !important;
}
div:where(.swal2-container).swal2-top-start, div:where(.swal2-container).swal2-center-start, div:where(.swal2-container).swal2-bottom-start {
  grid-template-columns: minmax(0, 1fr) auto auto;
}
div:where(.swal2-container).swal2-top, div:where(.swal2-container).swal2-center, div:where(.swal2-container).swal2-bottom {
  grid-template-columns: auto minmax(0, 1fr) auto;
}
div:where(.swal2-container).swal2-top-end, div:where(.swal2-container).swal2-center-end, div:where(.swal2-container).swal2-bottom-end {
  grid-template-columns: auto auto minmax(0, 1fr);
}
div:where(.swal2-container).swal2-top-start > .swal2-popup {
  align-self: start;
}
div:where(.swal2-container).swal2-top > .swal2-popup {
  grid-column: 2;
  align-self: start;
  justify-self: center;
}
div:where(.swal2-container).swal2-top-end > .swal2-popup, div:where(.swal2-container).swal2-top-right > .swal2-popup {
  grid-column: 3;
  align-self: start;
  justify-self: end;
}
div:where(.swal2-container).swal2-center-start > .swal2-popup, div:where(.swal2-container).swal2-center-left > .swal2-popup {
  grid-row: 2;
  align-self: center;
}
div:where(.swal2-container).swal2-center > .swal2-popup {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
}
div:where(.swal2-container).swal2-center-end > .swal2-popup, div:where(.swal2-container).swal2-center-right > .swal2-popup {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}
div:where(.swal2-container).swal2-bottom-start > .swal2-popup, div:where(.swal2-container).swal2-bottom-left > .swal2-popup {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}
div:where(.swal2-container).swal2-bottom > .swal2-popup {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  align-self: end;
}
div:where(.swal2-container).swal2-bottom-end > .swal2-popup, div:where(.swal2-container).swal2-bottom-right > .swal2-popup {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  justify-self: end;
}
div:where(.swal2-container).swal2-grow-row > .swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen > .swal2-popup {
  grid-column: 1/4;
  width: 100%;
}
div:where(.swal2-container).swal2-grow-column > .swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen > .swal2-popup {
  grid-row: 1/4;
  align-self: stretch;
}
div:where(.swal2-container).swal2-no-transition {
  transition: none !important;
}
div:where(.swal2-container) div:where(.swal2-popup) {
  display: none;
  position: relative;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 32em;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #545454;
  font-family: inherit;
  font-size: 1rem;
}
div:where(.swal2-container) div:where(.swal2-popup):focus {
  outline: none;
}
div:where(.swal2-container) div:where(.swal2-popup).swal2-loading {
  overflow-y: hidden;
}
div:where(.swal2-container) h2:where(.swal2-title), div:where(.swal2-container) .h2:where(.swal2-title) {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0.8em 1em 0;
  color: inherit;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}
div:where(.swal2-container) div:where(.swal2-actions) {
  display: flex;
  z-index: 1;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 1.25em auto 0;
  padding: 0;
}
div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled[disabled] {
  opacity: 0.4;
}
div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}
div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
div:where(.swal2-container) div:where(.swal2-loader) {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin: 0 1.875em;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border-width: 0.25em;
  border-style: solid;
  border-radius: 100%;
  border-color: #2778c4 transparent #2778c4 transparent;
}
div:where(.swal2-container) button:where(.swal2-styled) {
  margin: 0.3125em;
  padding: 0.625em 1.1em;
  transition: box-shadow 0.1s;
  box-shadow: 0 0 0 3px transparent;
  font-weight: 500;
}
div:where(.swal2-container) button:where(.swal2-styled):not([disabled]) {
  cursor: pointer;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #7066e0;
  color: #fff;
  font-size: 1em;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(112, 102, 224, 0.5);
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-deny {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #dc3741;
  color: #fff;
  font-size: 1em;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-deny:focus {
  box-shadow: 0 0 0 3px rgba(220, 55, 65, 0.5);
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #6e7881;
  color: #fff;
  font-size: 1em;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel:focus {
  box-shadow: 0 0 0 3px rgba(110, 120, 129, 0.5);
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus {
  box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
}
div:where(.swal2-container) button:where(.swal2-styled):focus {
  outline: none;
}
div:where(.swal2-container) button:where(.swal2-styled)::-moz-focus-inner {
  border: 0;
}
div:where(.swal2-container) div:where(.swal2-footer) {
  margin: 1em 0 0;
  padding: 1em 1em 0;
  border-top: 1px solid #eee;
  color: inherit;
  font-size: 1em;
  text-align: center;
}
div:where(.swal2-container) .swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  grid-column: auto !important;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
div:where(.swal2-container) div:where(.swal2-timer-progress-bar) {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2);
}
div:where(.swal2-container) img:where(.swal2-image) {
  max-width: 100%;
  margin: 2em auto 1em;
}
div:where(.swal2-container) button:where(.swal2-close) {
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: -1.2em;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s, box-shadow 0.1s;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: #ccc;
  font-family: monospace;
  font-size: 2.5em;
  cursor: pointer;
  justify-self: end;
}
div:where(.swal2-container) button:where(.swal2-close):hover {
  transform: none;
  background: transparent;
  color: #f27474;
}
div:where(.swal2-container) button:where(.swal2-close):focus {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
}
div:where(.swal2-container) button:where(.swal2-close)::-moz-focus-inner {
  border: 0;
}
div:where(.swal2-container) .swal2-html-container {
  z-index: 1;
  justify-content: center;
  margin: 1em 1.6em 0.3em;
  padding: 0;
  overflow: auto;
  color: inherit;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
}
div:where(.swal2-container) input:where(.swal2-input),
div:where(.swal2-container) input:where(.swal2-file),
div:where(.swal2-container) textarea:where(.swal2-textarea),
div:where(.swal2-container) select:where(.swal2-select),
div:where(.swal2-container) div:where(.swal2-radio),
div:where(.swal2-container) label:where(.swal2-checkbox) {
  margin: 1em 2em 3px;
}
div:where(.swal2-container) input:where(.swal2-input),
div:where(.swal2-container) input:where(.swal2-file),
div:where(.swal2-container) textarea:where(.swal2-textarea) {
  box-sizing: border-box;
  width: auto;
  transition: border-color 0.1s, box-shadow 0.1s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: transparent;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
  color: inherit;
  font-size: 1.125em;
}
div:where(.swal2-container) input:where(.swal2-input).swal2-inputerror,
div:where(.swal2-container) input:where(.swal2-file).swal2-inputerror,
div:where(.swal2-container) textarea:where(.swal2-textarea).swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}
div:where(.swal2-container) input:where(.swal2-input):focus,
div:where(.swal2-container) input:where(.swal2-file):focus,
div:where(.swal2-container) textarea:where(.swal2-textarea):focus {
  border: 1px solid #b4dbed;
  outline: none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(100, 150, 200, 0.5);
}
div:where(.swal2-container) input:where(.swal2-input)::-moz-placeholder, div:where(.swal2-container) input:where(.swal2-file)::-moz-placeholder, div:where(.swal2-container) textarea:where(.swal2-textarea)::-moz-placeholder {
  color: #ccc;
}
div:where(.swal2-container) input:where(.swal2-input)::placeholder,
div:where(.swal2-container) input:where(.swal2-file)::placeholder,
div:where(.swal2-container) textarea:where(.swal2-textarea)::placeholder {
  color: #ccc;
}
div:where(.swal2-container) .swal2-range {
  margin: 1em 2em 3px;
  background: #fff;
}
div:where(.swal2-container) .swal2-range input {
  width: 80%;
}
div:where(.swal2-container) .swal2-range output {
  width: 20%;
  color: inherit;
  font-weight: 600;
  text-align: center;
}
div:where(.swal2-container) .swal2-range input,
div:where(.swal2-container) .swal2-range output {
  height: 2.625em;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}
div:where(.swal2-container) .swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}
div:where(.swal2-container) .swal2-file {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
  background: transparent;
  font-size: 1.125em;
}
div:where(.swal2-container) .swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}
div:where(.swal2-container) .swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: 0.375em 0.625em;
  background: transparent;
  color: inherit;
  font-size: 1.125em;
}
div:where(.swal2-container) .swal2-radio,
div:where(.swal2-container) .swal2-checkbox {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit;
}
div:where(.swal2-container) .swal2-radio label,
div:where(.swal2-container) .swal2-checkbox label {
  margin: 0 0.6em;
  font-size: 1.125em;
}
div:where(.swal2-container) .swal2-radio input,
div:where(.swal2-container) .swal2-checkbox input {
  flex-shrink: 0;
  margin: 0 0.4em;
}
div:where(.swal2-container) label:where(.swal2-input-label) {
  display: flex;
  justify-content: center;
  margin: 1em auto 0;
}
div:where(.swal2-container) div:where(.swal2-validation-message) {
  align-items: center;
  justify-content: center;
  margin: 1em 0 0;
  padding: 0.625em;
  overflow: hidden;
  background: #f0f0f0;
  color: #666666;
  font-size: 1em;
  font-weight: 300;
}
div:where(.swal2-container) div:where(.swal2-validation-message)::before {
  content: "!";
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 0.625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}
div:where(.swal2-container) .swal2-progress-steps {
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin: 1.25em auto;
  padding: 0;
  background: transparent;
  font-weight: 600;
}
div:where(.swal2-container) .swal2-progress-steps li {
  display: inline-block;
  position: relative;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #2778c4;
  color: #fff;
  line-height: 2em;
  text-align: center;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #2778c4;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
  background: #add8e6;
  color: #fff;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
  background: #add8e6;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  flex-shrink: 0;
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #2778c4;
}

div:where(.swal2-icon) {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 2.5em auto 0.6em;
  border: 0.25em solid transparent;
  border-radius: 50%;
  border-color: #000;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
div:where(.swal2-icon) .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 3.75em;
}
div:where(.swal2-icon).swal2-error {
  border-color: #f27474;
  color: #f27474;
}
div:where(.swal2-icon).swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1;
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #f27474;
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 1.0625em;
  transform: rotate(45deg);
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 1em;
  transform: rotate(-45deg);
}
div:where(.swal2-icon).swal2-error.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
div:where(.swal2-icon).swal2-error.swal2-icon-show .swal2-x-mark {
  animation: swal2-animate-error-x-mark 0.5s;
}
div:where(.swal2-icon).swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}
div:where(.swal2-icon).swal2-warning.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
div:where(.swal2-icon).swal2-warning.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-i-mark 0.5s;
}
div:where(.swal2-icon).swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}
div:where(.swal2-icon).swal2-info.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
div:where(.swal2-icon).swal2-info.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-i-mark 0.8s;
}
div:where(.swal2-icon).swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}
div:where(.swal2-icon).swal2-question.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
div:where(.swal2-icon).swal2-question.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-question-mark 0.8s;
}
div:where(.swal2-icon).swal2-success {
  border-color: #a5dc86;
  color: #a5dc86;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  transform: rotate(45deg);
  border-radius: 50%;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}
div:where(.swal2-icon).swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
}
div:where(.swal2-icon).swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  transform: rotate(-45deg);
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #a5dc86;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip] {
  top: 2.875em;
  left: 0.8125em;
  width: 1.5625em;
  transform: rotate(45deg);
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  transform: rotate(-45deg);
}
div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-tip {
  animation: swal2-animate-success-line-tip 0.75s;
}
div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-long {
  animation: swal2-animate-success-line-long 0.75s;
}
div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right {
  animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

[class^=swal2] {
  -webkit-tap-highlight-color: transparent;
}

.swal2-show {
  animation: swal2-show 0.3s;
}

.swal2-hide {
  animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
  transition: none;
}

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.swal2-rtl .swal2-close {
  margin-right: initial;
  margin-left: 0;
}
.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto;
}

@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(0deg);
  }
}
@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes swal2-animate-question-mark {
  0% {
    transform: rotateY(-360deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes swal2-animate-i-mark {
  0% {
    transform: rotateZ(45deg);
    opacity: 0;
  }
  25% {
    transform: rotateZ(-25deg);
    opacity: 0.4;
  }
  50% {
    transform: rotateZ(15deg);
    opacity: 0.8;
  }
  75% {
    transform: rotateZ(-5deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}
body.swal2-height-auto {
  height: auto !important;
}
body.swal2-no-backdrop .swal2-container {
  background-color: transparent !important;
  pointer-events: none;
}
body.swal2-no-backdrop .swal2-container .swal2-popup {
  pointer-events: all;
}
body.swal2-no-backdrop .swal2-container .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
    display: none;
  }
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
    position: static !important;
  }
}
body.swal2-toast-shown .swal2-container {
  box-sizing: border-box;
  width: 360px;
  max-width: 100%;
  background-color: transparent;
  pointer-events: none;
}
body.swal2-toast-shown .swal2-container.swal2-top {
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
  inset: 0 0 auto auto;
}
body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
  inset: 0 auto auto 0;
}
body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
  inset: 50% auto auto 0;
  transform: translateY(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-center {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
  inset: 50% 0 auto auto;
  transform: translateY(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  inset: auto auto 0 0;
}
body.swal2-toast-shown .swal2-container.swal2-bottom {
  inset: auto auto 0 50%;
  transform: translateX(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  inset: auto 0 0 auto;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
  font-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  transform: translate3d(1, 1, 1);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  margin: 0;
  font-family: "iransans";
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  border-top: 1px solid #ebebeb;
}

body.overlay .search-overlay {
  opacity: 1;
  pointer-events: all;
}

body.modal-open {
  height: 100vh;
  overflow-y: hidden;
  padding-right: 15px;
  /* Avoid width reflow */
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

a {
  text-decoration: none;
  color: #13426b;
}

a:hover {
  color: #0056b3;
}

ol, ul {
  direction: rtl;
  text-align: right;
  font-size: 0.9rem;
  line-height: 1.6rem;
  color: #464646;
}

input, table {
  text-align: right;
  direction: rtl;
}

.modal-backdrop {
  z-index: 100000;
}

.modal {
  z-index: 1000000;
}

.tooltip {
  z-index: 10000;
}

.persian-number {
  font-family: "iransansNum";
}

.number {
  font-family: "iransansNum";
}

.invisible {
  opacity: 0;
  visibility: hidden;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-header {
  direction: rtl;
}

.cursor-pointer {
  cursor: pointer;
}

.accordion-button:focus {
  box-shadow: 0 0 0 1px rgb(206, 212, 218);
}

.accordion-button:hover {
  z-index: 2;
  background: #f3f3f3;
}

.accordion-button::after {
  margin-left: inherit;
  margin-right: auto;
}

.form-select {
  direction: rtl;
  padding: 0.44rem 0.75rem 0.375rem 2.25rem;
  background-position: left 0.75rem center;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.btn-link {
  text-decoration: none;
}

.btn-link:focus, .btn-link:active {
  outline: none !important;
  box-shadow: none;
}

.main-title {
  font-size: 17pt;
  font-weight: 700;
  letter-spacing: 2pt;
  line-height: 32pt;
  color: #1b1b1b;
  text-transform: uppercase;
}

.navbar {
  z-index: 1057;
}

.main {
  min-height: calc(100vh - 316px);
}

.main .navbar {
  z-index: 0;
}

.dir-rtl {
  direction: rtl !important;
}

.dir-ltr {
  direction: ltr !important;
}

.text-right {
  text-align: right !important;
}

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

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

.text-blue {
  color: #2098D1 !important;
}

.bg-blue {
  background-color: #2098D1 !important;
}

.text-tomato {
  color: tomato !important;
}

.bg-light-dark {
  background-color: #464646 !important;
}

.bg-tomato {
  background-color: tomato !important;
}

.bg-darktomato {
  background-color: #e04622 !important;
}

.text-darktomato {
  color: #e04622 !important;
}

.bg-whitesmoke {
  background-color: whitesmoke !important;
}

.bg-flat-warning {
  background-color: #f0c24b !important;
}

.bg-flat-danger {
  background-color: #ea7066 !important;
}

.bg-flat-success {
  background-color: #b5d56a !important;
}

.bg-medic-success {
  background: #3d9b9e !important;
}

.bg-flat-info {
  background-color: #84bed6 !important;
}

.bg-flat-purple {
  background-color: #a597e7 !important;
}

.bg-flat-pink {
  background-color: #ea77ad !important;
}

.bg-flat-warning {
  background-color: #f0c24b !important;
}

.bg-flat-primary {
  background-color: #f0c24b !important;
}

.bg-3colors {
  background: -webkit-linear-gradient(0deg, #F55247, #0070F3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  direction: rtl;
  min-width: 39px;
}

.btn i, .btn .spinner-border {
  position: relative;
  top: 3px;
  left: 3px;
  right: auto;
}

.btn-icon i {
  left: 0px;
  top: 3px;
}

.btn.btn-icontext {
  padding-bottom: 5px;
  font-size: 14px;
  min-width: 100px;
}

.btn.btn-icontext i {
  top: 2px;
}

.swal2-title {
  direction: rtl;
  font-size: 19px !important;
}

.swal2-container {
  z-index: 2060;
}

.swal2-popup.swal2-toast .swal2-title {
  direction: rtl;
}

.swal2-footer {
  direction: rtl;
}

.alert {
  direction: rtl;
  text-align: right;
  font-size: 14px;
  line-height: 25px;
}

.alert-dismissible .btn-close {
  top: 3px;
  left: 10px;
  right: auto;
  padding: 1.4rem 1rem;
}

.alert-dismissible p i {
  position: relative;
  padding-left: 6px;
  font-size: 20px;
  top: 5px;
}

.alert p {
  margin: 0;
  padding: 5px 0px 5px 8px;
}

.alert.alert-top {
  border-radius: 0;
  border-right: 0;
  border-left: 0;
}

.row {
  direction: rtl;
}

.form-control {
  min-height: 38px;
  padding: 0.375rem 0.75rem 0.19rem;
  font-size: 0.86rem;
}

.form-control:focus, .form-select:focus {
  border-color: #212529;
  box-shadow: none;
}

.form-floating > label {
  left: auto;
  right: 10px;
  top: 3px;
  color: #7c7c7c;
  padding: 1rem 0;
}

.form-floating > .form-select ~ label {
  right: 0;
}

.form-floating > label span {
  margin-right: 3px;
}

.pagination {
  direction: ltr;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item .page-link {
  min-width: 38px;
  text-align: center;
}

.bg-light-blue-1 {
  background-color: #f2f2f2 !important;
}

.bg-light-blue-2 {
  background-color: #e3e3d8 !important;
}

.bg-light-green {
  background-color: #d1e7dd !important;
}

.bg-lightyellow {
  background-color: lightyellow !important;
}

.bg-lightblue {
  background-color: lightblue !important;
}

.bg-rainbow {
  background-image: url(/img/demo/bg-2.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}

.bg-whitetosmoke {
  background-image: linear-gradient(to bottom, #ffffff, #f8f9fa) !important;
}

.bg-silver-frost {
  background: #eeeeee !important;
}

.bg-sky-mist {
  background: #e9f0f3 !important;
}

.bg-ivory-whispere {
  background: #ece5db !important;
}

.bg-pure-snow {
  background: #f8f8f8 !important;
}

.bg-pastel-green {
  background: #e4ede1 !important;
}

.bg-light-fog {
  background: #f5f5f5 !important;
}

.bg-lavender-mist {
  background: #e6e5f6 !important;
}

.bg-frosted-champagne {
  background: #e2dad5 !important;
}

.bg-hazy-horizony {
  background: #f3f5ec !important;
}

.inline-block {
  display: inline-block;
}

iframe {
  border-radius: 13px;
}

video, audio {
  margin: 0 auto;
  display: block;
  width: 100%;
  border-radius: 13px;
}

.badge {
  padding: 0.48em 0.65em 0.3em 0.65em;
  font-weight: 500;
}

.table-responsive {
  direction: rtl;
  border-radius: 5px;
}

.input-group-text {
  direction: rtl;
}

.w-115px {
  min-width: 115px;
}

.dropdown-plus .btn {
  text-align: right;
  position: relative;
  height: 30px;
}

.dropdown-plus .dropdown-toggle::after {
  float: left;
  margin-top: 9px;
}

.dropdown-plus .btn i {
  position: absolute;
  top: 5px;
  left: auto;
  right: 5px;
  font-size: 21px;
}

.dropdown-plus .btn span {
  margin-right: 20px;
  max-width: 113px;
  overflow: hidden;
  display: inline-block;
}

.dropdown-plus .btn i.icon-end {
  right: auto;
  left: 9px;
  font-size: 11px;
  top: 9px;
}

.bheader {
  z-index: 1000;
}

.bheader .dropdown-plus .btn-secondary {
  color: #808080;
  background-color: rgba(108, 117, 125, 0);
  border-color: #808080;
}

.bheader .dropdown-plus .btn-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

input[type=checkbox], input[type=radio] {
  position: relative;
  top: 2px;
  margin-left: 2px;
}

.modal-header {
  direction: rtl;
}

.modal-header .btn-close {
  margin: -0.5rem auto -0.5rem -0.5rem;
}

.modal-title {
  font-size: 16px;
  font-weight: 700;
}

.modal-title i {
  position: relative;
  margin-left: 10px;
  top: 2px;
}

.modal-footer {
  direction: rtl;
}

.modal-footer-btn {
  justify-content: center;
}

.btn-equal {
  min-width: 120px;
}

.modal-body p {
  direction: rtl;
  line-height: 28px;
  text-align: center;
  margin-bottom: 0;
}

.navbar-nav .nav-link {
  text-transform: capitalize;
}

.btn-close:focus {
  outline: none;
  box-shadow: none;
}

.search-wrap {
  position: relative;
  direction: ltr;
}

aside {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.show-aside aside {
  padding-right: 10px !important;
}

aside > div > div {
  width: 260px;
}

.swal2-title {
  font-size: 1.475em !important;
  direction: rtl;
  font-family: "KalamehWeb";
  font-weight: 700 !important;
}

.swal2-html-container {
  direction: rtl;
  font-size: 1em !important;
  margin: 1em 1.6em -0.3em;
}

.swal2-styled.swal2-cancel, .swal2-styled.swal2-confirm {
  min-width: 130px;
  font-size: 14px !important;
  line-height: 20px;
  padding-top: 11px;
}

.swal2-icon .swal2-icon-content {
  margin-top: 20px;
}

.mw-100 {
  min-width: 100px;
}

.mw-75 {
  min-width: 75px;
}

.mw-50 {
  min-width: 50px;
}

.font-11 {
  font-size: 11px;
}

.font-12 {
  font-size: 12px;
}

.font-13 {
  font-size: 13px;
}

.scrollToTopBtn, .callBtn {
  text-align: center;
  display: inline-block;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.8);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 23px;
  line-height: 48px;
  width: 48px;
  position: fixed;
  bottom: 26px;
  right: 25px;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
  padding-top: 0px;
  border-radius: 5px;
}

.callBtn {
  display: none;
  left: 25px;
  right: auto;
  background-color: darkgreen;
}

.scrollToTopBtn i {
  position: relative;
  top: 3px;
}

.callBtn i {
  position: relative;
  top: 4px;
  font-size: 25px;
}

.scrollToTopBtn.show, .callBtn.show {
  opacity: 1;
  transform: translateY(0);
}

.form-file {
  min-height: auto;
}

.scrollToTopBtn:hover, .callBtn:hover {
  background: #000;
  color: white;
}

.sl-wrapper {
  z-index: 1062;
}

.sl-overlay {
  z-index: 1061;
}

.separator-tg {
  width: 100%;
  height: 32px;
  background: white;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.separator-tg.separator-tg-top {
  position: absolute;
  top: -30px;
}

.separator-tg.separator-tg-bottom {
  position: absolute;
  bottom: -30px;
  transform: rotateX(180deg);
}

.separator-nor-tg {
  width: 100%;
  height: 32px;
  background: inherit;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 50% 0, 0 100%, 0% 0%);
          clip-path: polygon(100% 0, 100% 100%, 50% 0, 0 100%, 0% 0%);
}

.separator-nor-tg.separator-nor-tg-top {
  position: absolute;
  top: -30px;
  transform: rotateX(180deg);
}

.separator-nor-tg.separator-nor-tg-bottom {
  position: absolute;
  bottom: -30px;
}

.inner-time {
  direction: rtl;
  display: inline-block;
}

.inner-time .timer-wrap {
  display: inline-block;
  direction: rtl;
}

.inner-time .timer-wrap .number {
  display: inline-block;
  width: 20px;
  text-align: center;
}

.inner-time .timer-wrap .name {
  color: #888;
}

.inner-time .expired {
  direction: rtl;
}

.bg-wait {
  overflow: hidden;
  cursor: wait !important;
  position: relative;
}

.bg-wait::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: repeating-linear-gradient(305deg, transparent, transparent 0.75rem, hsla(0, 0%, 31.5%, 0.32) 0.75rem, hsla(0, 0%, 31.5%, 0.32) 1.5rem);
  animation: bg-wait 1s infinite linear;
}

@keyframes bg-wait {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1.75rem);
  }
}
@media (max-width: 991.98px) {
  .scrollToTopBtn {
    bottom: 90px;
    right: 20px;
  }
  .callBtn {
    display: block;
    bottom: 84px;
    left: 20px;
    right: auto;
    z-index: 99;
  }
}
@media (max-width: 767.98px) {
  .show-aside main {
    min-width: 100vw;
    position: relative;
  }
  .show-aside main .overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.32);
    height: 100%;
    width: 100%;
    z-index: 1;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    transition: background-color 2s ease;
  }
  aside {
    padding-right: 0 !important;
  }
}
.pwa {
  position: fixed;
  bottom: 40px;
  background: rgba(14, 14, 14, 0.8784313725);
  left: 20px;
  direction: rtl;
  padding: 12px 20px 1px 15px;
  border-radius: 5px;
}

.pwa .btn:hover {
  color: yellow !important;
}

.header-default {
  position: relative;
}

.header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.header-default .dropdown-plus {
  max-width: 180px;
}

.lang {
  position: absolute;
  bottom: -1px;
  right: 35px;
  z-index: 100000;
}

.lang-wrap {
  margin-bottom: 5px;
}

.lang-wrap img {
  width: 30px;
  height: 23px;
  border-radius: 4px;
  margin-right: 10px;
}

.hero-test.hero {
  position: relative;
  margin-top: -180px;
}

.hero-test .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}

.hero-test.hero .img-header {
  height: 100vh;
}

.hero-test .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  width: 100%;
  height: 100vh;
  /* opacity: .3; */
}

.hero-test .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-test.hero .img-header .img-app {
  height: 100vh;
}

.hero-test .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-test .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-test .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-test .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-test .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-test {
  position: relative;
  text-align: center;
  direction: rtl;
}

.header-hero-test .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
}

.header-hero-test .header-center {
  display: block;
}

.header-hero-test .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-family: KalamehWeb, tahoma;
  font-size: 37px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-test .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-test .header-center:hover .title {
  color: transparent;
}

.header-hero-test .header-center:hover .title i {
  color: #222;
}

.header-hero-test .header-center .after-title {
  color: #fff;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 700;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-test .header-right-icon, .header-hero-test .header-left-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 1;
}

.header-hero-test .header-left-icon {
  right: auto;
  left: 40px;
  direction: ltr;
}

.header-hero-test .header-left-icon a span {
  color: #fff;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
}

.header-hero-test .header-left-icon a:hover span {
  background: #ffa31a;
  color: #000;
}

.header-hero-test .header-right-icon .btn-link {
  position: relative;
  color: #fff;
  margin-left: 10px;
  padding-top: 0;
}

.header-hero-test .header-right-icon .btn-link i {
  color: #fff;
  display: block;
  font-size: 45px;
}

.header-hero-test .header-right-icon .btn-link span {
  font-family: "KalamehWeb";
  color: #fff;
  position: absolute;
  font-size: 14px;
  bottom: -20px;
  right: 9px;
  font-weight: 500;
  display: none;
}

.header-hero-test .header-right-icon .btn-link:hover span {
  display: block;
}

.header-hero-test .img-header {
  background-color: #000;
  height: 180px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
}

.header-hero-test .img-header::before {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-test .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-test .img-header .img-app {
  height: 100vh;
}

.header-hero-test .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-test .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-test .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/10.jpg");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-test .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-test .title {
  font-size: 32pt;
  font-weight: 700;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-test .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-test.navbar-light .navbar-nav .nav-link {
  color: #000;
  font-family: KalamehWeb;
}

.navbar-hero-test.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-test.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-test.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #fff;
  background: rgb(27, 27, 27);
  font-weight: 700;
  border-radius: 3px;
}

.navbar-hero-test .navicons-wrap .btn-link {
  color: #000;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
}

.navbar-hero-test .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-test .navicons-wrap .btn-link .cart-count {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 25px;
  height: 25px;
  background: rgba(252, 119, 120, 0.9490196078);
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-test .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
}

.navbar-hero-test .navicons-wrap .btn-link i.icon-lock {
  font-size: 21px;
}

.navbar-hero-test .navicons-wrap .btn-link i.icon-qr-code {
  font-size: 19px;
}

.navbar-hero-test .navicons-wrap .btn-link i.icon-menu {
  top: 1px;
}

.navbar-hero-test .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-test .navicons-wrap .btn-link:hover i {
  background: #000;
  color: #fff;
}

.hero-test .header-default {
  position: relative;
}

.hero-test .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-test .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-test {
  background: rgba(255, 255, 255, 0.9607843137);
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.78);
}

.navbar-hero-test.fixed-header {
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.4);
}

.navbar-hero-test .logo img {
  width: 200px;
  transition: all linear 0.5s;
  margin-right: 30px;
}

.navbar-hero-test.fixed-header .logo img {
  width: 100px;
}

.navbar-hero-test .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-test .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-test .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-test .nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
  font-size: 15px;
}

.navbar-hero-test .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-test .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-test .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-test .navbar-light .navbar-nav .show > .nav-link, .navbar-hero-test .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-test .menu ul li a:hover,
.navbar-hero-test .menu ul li a:active,
.navbar-hero-test .menu ul li a:focus {
  background-color: #ffa31a;
  color: #1b1b1b;
}

.navbar-hero-test .menu .mwrap {
  top: 55px;
}

.navbar-hero-test.fixed-header .menu:hover > .mwrap {
  top: 53px;
}

.navbar-hero-test .navbar-wrap {
  height: 53px;
  position: relative;
  width: 100%;
}

.navbar-hero-test .navbar-wrap .logo-wrap {
  display: inline-block;
}

.navbar-hero-test .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-test .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-test .navbar-wrap .navicons-wrap {
  position: relative;
  top: -3px;
  display: inline-block;
  direction: ltr;
  left: 0;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

@media (max-width: 991.98px) {
  .hero-test .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .navbar-hero-test .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-test .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-test .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-test .nav-link:hover,
  .navbar-hero-test .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-test .header-left-icon {
    left: 10px;
  }
  .header-hero-test .header-right-icon {
    right: 10px;
  }
  .navbar-hero-test .navbar-wrap {
    overflow: hidden;
    height: 35px;
  }
  .navbar-hero-test .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-test .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-test .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-test .navbar-wrap .navicons-wrap .btn-link {
    min-width: 33px;
  }
  .navbar-hero-test .hero {
    position: relative;
    margin-top: -190px;
  }
  .navbar-hero-test .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-test .navicons-wrap .btn-link .cart-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-test .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-test .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-test .menu .mwrap {
    top: 0;
  }
  .header-hero-test .title {
    font-size: 30px;
  }
  .header-hero-test .version {
    display: none;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-test .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-test .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-test .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-test .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-1.hero {
  position: relative;
  margin-top: -180px;
}

.hero-1.hero .hero-item:before {
  z-index: 0;
}

.hero-1.hero .hero-item:after {
  z-index: 1;
}

.hero-1 .tns-outer [aria-controls],
.hero-1 .tns-outer [data-action] {
  margin-top: 180px;
}

.hero-1 .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-1.hero .img-header {
  height: 100vh;
}

.hero-1 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-1.hero .img-header .img-app {
  height: 100vh;
}

.hero-1 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-1 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-1 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-1 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-1 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-1 {
  position: relative;
  text-align: center;
  direction: rtl;
}

.header-hero-1:before {
  z-index: -2;
}

.header-hero-1:after {
  z-index: -1;
}

.header-hero-1 .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
  letter-spacing: 1px;
}

.header-hero-1 .header-center {
  display: block;
}

.header-hero-1 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-1 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-1 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-1 .header-center:hover .title {
  color: transparent;
}

.header-hero-1 .header-center:hover .title i {
  color: #222;
}

.header-hero-1 .header-center .after-title {
  color: #fff;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-1 .header-right-icon,
.header-hero-1 .header-left-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 2;
}

.header-hero-1 .header-left-icon {
  right: auto;
  left: 40px;
  direction: ltr;
}

.header-hero-1 .header-left-icon a span {
  color: #fff;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.header-hero-1 .header-left-icon a:hover span {
  background: #ffa31a;
  color: #000;
}

.header-hero-1 .header-right-icon .btn-link {
  position: relative;
  color: #fff;
  margin-left: 10px;
  padding-top: 0;
}

.header-hero-1 .header-right-icon .btn-link i {
  color: #fff;
  display: block;
  font-size: 45px;
}

.header-hero-1 .header-right-icon .btn-link span {
  font-family: "KalamehWeb";
  position: absolute;
  font-size: 14px;
  bottom: -20px;
  right: 9px;
  font-weight: 500;
  display: none;
}

.header-hero-1 .header-right-icon .btn-link:hover span {
  display: block;
}

.header-hero-1 .img-header {
  height: 180px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
}

.header-hero-1 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-1 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-1 .img-header .img-app {
  height: 100vh;
}

.header-hero-1 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-1 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-1 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-1 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-1 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-1 .title {
  font-size: 32pt;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-1 .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-1.navbar-light .navbar-nav .nav-link {
  color: #000;
  font-family: KalamehWeb;
}

.navbar-hero-1.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-1.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-1.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #fff;
  background: rgb(27, 27, 27);
  font-weight: 700;
  border-radius: 3px;
}

.navbar-hero-1 .navicons-wrap .btn-link {
  color: #000;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
}

.navbar-hero-1 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-1 .navicons-wrap .btn-link .cart-count {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 25px;
  height: 25px;
  background: rgba(252, 119, 120, 0.9490196078);
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-1 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
}

.navbar-hero-1 .navicons-wrap .btn-link i.icon-lock {
  font-size: 21px;
}

.navbar-hero-1 .navicons-wrap .btn-link i.icon-qr-code {
  font-size: 19px;
}

.navbar-hero-1 .navicons-wrap .btn-link i.icon-menu {
  top: 1px;
}

.navbar-hero-1 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-1 .navicons-wrap .btn-link:hover i {
  background: #000;
  color: #fff;
}

.hero-1 .header-default {
  position: relative;
}

.hero-1 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-1 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-1 {
  background: rgba(255, 255, 255, 0.9607843137);
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.78);
}

.navbar-hero-1.fixed-header {
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.4);
}

.navbar-hero-1 .logo img {
  width: 200px;
  transition: all linear 0.5s;
  margin-right: 30px;
}

.navbar-hero-1.fixed-header .logo img {
  width: 100px;
}

.navbar-hero-1 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-1 .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-1 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-1 .nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
  font-size: 15px;
}

.navbar-hero-1 .nav-login .nav-link i {
  position: relative;
  font-size: 20px;
  margin: 0 0px 0 5px;
  font-weight: 700;
}

.navbar-hero-1 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-1 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-1 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-1 .navbar-light .navbar-nav .show > .nav-link,
.navbar-hero-1 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-1 .menu ul li a:hover,
.navbar-hero-1 .menu ul li a:active,
.navbar-hero-1 .menu ul li a:focus {
  background-color: #ffa31a;
  color: #1b1b1b;
}

.navbar-hero-1 .menu .mwrap {
  top: 55px;
}

.navbar-hero-1.fixed-header .menu:hover > .mwrap {
  top: 53px;
}

.navbar-hero-1 .navbar-wrap {
  height: 53px;
  position: relative;
  width: 100%;
}

.navbar-hero-1 .navbar-wrap .logo-wrap {
  display: block;
  float: left;
}

.navbar-hero-1 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-1 .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-1 .navbar-wrap .navicons-wrap {
  position: relative;
  top: 12px;
  display: block;
  direction: ltr;
  left: 0;
  right: auto;
  float: left;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

@media (max-width: 991.98px) {
  .hero-1 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .navbar-hero-1 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-1 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-1 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-1 .nav-link:hover,
  .navbar-hero-1 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-1 .header-left-icon {
    left: 10px;
  }
  .header-hero-1 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-1 .navbar-wrap {
    overflow: hidden;
    height: 35px;
  }
  .navbar-hero-1 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-1 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-1 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-1 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 33px;
  }
  .navbar-hero-1 .hero {
    position: relative;
    margin-top: -190px;
  }
  .header-hero-1 .img-header {
    height: 163px;
  }
  .navbar-hero-1 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-1 .navicons-wrap .btn-link .cart-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-1 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-1 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-1 .menu .mwrap {
    top: 0;
  }
  .header-hero-1 .title {
    font-size: 30px;
  }
  .header-hero-1 .version {
    display: none;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-1 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-1 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-1 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-1 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-2.hero {
  position: relative;
  margin-top: 0;
}

.hero-2 .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}

.hero-2.hero .img-header {
  height: calc(100vh - 169px);
}

.hero-2 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 169px);
  /* opacity: .3; */
}

.hero-2 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-2.hero .img-header .img-app {
  height: 100vh;
}

.hero-2 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-2 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-2 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-2 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 55px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-2 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-2 {
  position: relative;
  text-align: center;
  direction: rtl;
  background: #2f3c43;
  min-height: 70px;
}

.header-hero-2 .color-bar {
  height: 3px;
}

.header-hero-2 .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
}

.header-hero-2 .header-center {
  display: block;
}

.header-hero-2 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-family: KalamehWeb, tahoma;
  font-size: 37px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-2 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-2 .header-center:hover .title {
  color: transparent;
}

.header-hero-2 .header-center:hover .title i {
  color: #222;
}

.header-hero-2 .header-center .after-title {
  color: #fff;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 700;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-2 .header-right-icon, .header-hero-2 .header-left-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 1;
}

.header-hero-2 .header-left-icon {
  right: auto;
  left: 40px;
  direction: ltr;
}

.header-hero-2 .header-left-icon a span {
  color: #fff;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
}

.header-hero-2 .header-left-icon a:hover span {
  background: #ffa31a;
  color: #000;
}

.header-hero-2 .flag {
  border-radius: 5px;
  margin-right: 10px;
  height: 25px;
  width: auto;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: none;
  transition: box-shadow 200ms linear;
}

.header-hero-2 .flag:hover {
  box-shadow: 0 0 11px 1px rgba(0, 0, 0, 0.45);
}

.header-hero-2 .header-right-icon .btn-icon {
  background-color: #999;
  color: #fff;
  display: inline-block;
  height: 28px;
  position: relative;
  border-radius: 3px;
  width: 30px;
  min-width: 28px;
  font-size: 17px;
  line-height: 29px;
}

.header-hero-2 .header-right-icon .btn-icon .badge {
  position: absolute;
  top: -13px;
  right: -13px;
}

.header-hero-2 .header-right-icon .icon-wrap {
  display: inline-block;
  margin-left: 10px;
}

.header-hero-2 .header-right-icon .icon-wrap span {
  position: relative;
  color: #fff;
  display: inline-block;
  padding: 0 5px 0 5px;
  font-size: 13px;
  min-width: 60px;
  text-align: right;
  top: -2px;
  right: 1px;
}

.header-hero-2 .img-header {
  height: 180px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
}

.header-hero-2 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-2 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-2 .img-header .img-app {
  height: 100vh;
}

.header-hero-2 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-2 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-2 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-2 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-2 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  margin-bottom: 15px;
  margin-top: 15px;
  max-width: 200px;
  height: auto;
  transition: filter 0.6s ease;
}

.hero-2 .title {
  font-size: 32pt;
  font-weight: 700;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
  color: #ffd000;
}

.hero-2 .after-title {
  font-family: KalamehWeb;
  font-size: 17px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-2 {
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0.25rem 0px;
  padding: 0;
  transition: all 0.4s ease-in-out 0s;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-link {
  border-top: 4px solid transparent;
  color: #000;
  display: block;
  font-family: KalamehWeb;
  line-height: 42px;
  margin: 1px 0 0 0;
  min-width: 100px;
  text-align: center;
  transition: all 0.2s ease;
  padding: 15px 0 20px 0;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-link i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  border-radius: 100%;
  display: block;
  background-color: tomato;
  margin: 0 auto;
  transition: display 0.5s linear;
}

.navbar-hero-2.navbar-light .navbar-nav .menu-pink .nav-link i {
  background-color: #ea77ad;
}

.navbar-hero-2.navbar-light .navbar-nav .menu-purple .nav-link i {
  background-color: #a597e7;
}

.navbar-hero-2.navbar-light .navbar-nav .menu-darkgreen .nav-link i {
  background-color: #84bed6;
}

.navbar-hero-2.navbar-light .navbar-nav .menu-lightgreen .nav-link i {
  background-color: #b5d56a;
}

.navbar-hero-2.navbar-light .navbar-nav .menu-red .nav-link i {
  background-color: #ea7066;
}

.navbar-hero-2.navbar-light .navbar-nav .menu-gold .nav-link i {
  background-color: #f0c24b;
}

.navbar-hero-2.navbar-light .navbar-nav .menu-black .nav-link i {
  background-color: #424242;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item .nav-link span {
  border-left: 2px solid;
  font-family: "iransans";
  font-size: 0.85rem;
  line-height: 18px;
  margin-top: 15px;
  position: relative;
  font-weight: 700;
  display: block;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-pink .nav-link span {
  border-color: #ea77ad;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-purple .nav-link span {
  border-color: #a597e7;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-darkgreen .nav-link span {
  border-color: #84bed6;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-lightgreen .nav-link span {
  border-color: #b5d56a;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-red .nav-link span {
  border-color: #ea7066;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-gold .nav-link span {
  border-color: #f0c24b;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-black .nav-link span {
  border-color: #424242;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item:last-child .nav-link span {
  border-left: none;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item .nav-link.active {
  border-color: #424242;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-pink:hover .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-pink:focus .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-pink .nav-link.active {
  border-color: #ea77ad;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-purple:hover .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-purple:focus .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-purple .nav-link.active {
  border-color: #a597e7;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-darkgreen:hover .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-darkgreen:focus .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-darkgreen .nav-link.active {
  border-color: #84bed6;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-lightgreen:hover .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-lightgreen:focus .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-lightgreen .nav-link.active {
  border-color: #b5d56a;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-red:hover .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-red:focus .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-red .nav-link.active {
  border-color: #ea7066;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-gold:hover .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-gold:focus .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-gold .nav-link.active {
  border-color: #f0c24b;
}

.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-black:hover .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-black:focus .nav-link,
.navbar-hero-2.navbar-light .navbar-nav .nav-item.menu-black .nav-link.active {
  border-color: #424242;
}

.navbar-hero-2 .navicons-wrap .btn-link {
  color: #e5e5e5;
  font-weight: 500;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
}

.navbar-hero-2 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-2 .navicons-wrap .btn-link .cart-count {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 25px;
  height: 25px;
  background: rgba(252, 119, 120, 0.9490196078);
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-2 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
}

.navbar-hero-2 .navicons-wrap .btn-link i.icon-lock {
  font-size: 21px;
}

.navbar-hero-2 .navicons-wrap .btn-link i.icon-qr-code {
  font-size: 19px;
}

.navbar-hero-2 .navicons-wrap .btn-link i.icon-menu {
  top: 1px;
}

.navbar-hero-2 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-2 .navicons-wrap .btn-link:hover i {
  background: #000;
  color: #fff;
}

.hero-2 .header-default {
  position: relative;
}

.hero-2 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-2 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-2 {
  background: rgba(255, 255, 255, 0.9607843137);
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.78);
}

.navbar-hero-2.fixed-header {
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.4);
}

.navbar-hero-2 .logo img {
  width: 200px;
  transition: all linear 0.5s;
  margin-right: 30px;
}

.navbar-hero-2 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-2 .navbar-nav {
  margin-top: -3px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-2 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-2 .nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
  font-size: 15px;
}

.navbar-hero-2 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-2 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-2 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-2 .navbar-light .navbar-nav .show > .nav-link, .navbar-hero-2 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-2 .menu ul li a:hover,
.navbar-hero-2 .menu ul li a:active,
.navbar-hero-2 .menu ul li a:focus {
  background-color: #ffa31a;
  color: #1b1b1b !important;
}

.navbar-hero-2 .menu .mwrap {
  top: 105px;
}

.navbar-hero-2.fixed-header .menu:hover > .mwrap {
  top: 105px;
}

.navbar-hero-2 .navbar-wrap {
  position: relative;
  width: 100%;
}

.navbar-hero-2 .navbar-wrap .logo-wrap {
  display: inline-block;
}

.navbar-hero-2 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-2 .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-2 .navbar-wrap .navicons-wrap {
  position: relative;
  top: -3px;
  display: inline-block;
  direction: ltr;
  left: 0;
}

.navbar-hero-2 .menu .menu-left {
  left: auto;
  margin-top: -105px;
  right: 100%;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

@media (max-width: 991.98px) {
  .hero-2 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .navbar-hero-2 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-2 .logo img {
    width: 145px;
    margin-left: -4px;
  }
  .navbar-hero-2 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-2 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-2 .nav-link:hover,
  .navbar-hero-2 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-2 .header-left-icon {
    left: 10px;
  }
  .header-hero-2 .header-right-icon {
    right: 15px;
  }
  .navbar-hero-2 .navbar-wrap {
    overflow: hidden;
    height: 65px;
  }
  .navbar-hero-2 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-2 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-2 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-2 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 33px;
  }
  .navbar-hero-2 .hero {
    position: relative;
    margin-top: -190px;
  }
  .navbar-hero-2 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-2 .navicons-wrap .btn-link .cart-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .navbar-hero-2 #drawer2 {
    float: right;
  }
  .header-hero-2 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-2 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-2 .menu .mwrap {
    top: 0;
  }
  .header-hero-2 .title {
    font-size: 30px;
  }
  .header-hero-2 .version {
    display: none;
  }
  .hero-2.hero .img-header {
    height: calc(100vh - 196px);
  }
  .hero-2 .header-wrapper {
    top: calc(50% + 100px);
    transform: translateY(calc(-50% - 104px));
  }
  .navbar-hero-2.navbar-light .navbar-nav .nav-link {
    border-top: none;
    border-bottom: 1px solid #464646;
  }
  .navbar-hero-2.navbar-light .navbar-nav .nav-link i {
    display: none;
  }
  .navbar-hero-2.navbar-light .navbar-nav .nav-item .nav-link span {
    display: inline-block;
    border: none;
  }
  .navbar-hero-2.navbar-light .navbar-nav .nav-link {
    padding: 0px 15px 0px;
    text-align: right;
  }
  .navbar-hero-2 .menu > a:after {
    top: 13px;
  }
  .navbar-hero-2 .menu .menu-left, .navbar-hero-2 .menu .menu-right {
    margin-top: 0;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-2 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-2 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-2 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-2 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-3.hero {
  position: relative;
  margin-top: 0;
}

.hero-3 .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}

.hero-3.hero .img-header {
  height: calc(100vh - 133px);
}

.hero-3 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  width: 100%;
  height: 100vh;
  /* opacity: .3; */
}

.hero-3 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center center;
     object-position: center center;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-3.hero .img-header .img-app {
  height: 100vh;
}

.hero-3 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-3 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-3 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-3 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: 0;
  text-align: right;
  min-height: 100%;
}

.hero-3 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-3 {
  position: relative;
  text-align: center;
  direction: rtl;
  height: 110px;
  z-index: 10;
  border-top: 10px solid #523466;
}

.header-hero-3 .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
}

.header-hero-3 .header-center {
  display: block;
}

.header-hero-3 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-3 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-3 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-3 .header-center:hover .title {
  color: transparent;
}

.header-hero-3 .header-center:hover .title i {
  color: #222;
}

.header-hero-3 .header-center .after-title {
  color: #fff;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-3 .header-right-icon, .header-hero-3 .header-left-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 3;
}

.header-hero-3 .header-left-icon {
  right: auto;
  left: 40px;
  direction: ltr;
}

.header-hero-3 .header-left-icon a span {
  color: #444;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.header-hero-3 .header-left-icon a:hover span {
  background: #3d9b9e;
  color: #fff;
}

.header-hero-3 .header-right-icon .btn-link {
  position: relative;
  color: #444;
  margin-left: 10px;
  padding-top: 0;
}

.header-hero-3 .header-right-icon .btn-link i {
  color: #444;
  display: block;
  font-size: 35px;
}

.header-hero-3 .header-right-icon .btn-link span {
  font-family: "KalamehWeb";
  position: absolute;
  font-size: 14px;
  bottom: 9px;
  left: -30px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 200ms ease;
}

.header-hero-3 .header-right-icon .btn-link:hover span {
  opacity: 1;
}

.header-hero-3 .img-header {
  height: 140px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
}

.header-hero-3 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-3 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-3 .img-header .img-app {
  height: 100vh;
}

.header-hero-3 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-3 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-3 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-3 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-3 .userpic {
  position: absolute;
  top: 0;
  transform: translate3d(-80%, 0, 0);
  left: 100%;
  width: 100%;
  height: 100%;
}

.hero-3 .no-avatar {
  display: block;
  text-align: center;
}

.hero-3 .has-avatar {
  display: block;
  max-width: 789px;
  position: relative;
  top: 27px;
  font-size: 70pt;
}

.hero-3 .userpic img {
  border-radius: 0;
  filter: none;
  height: auto;
  margin-bottom: auto;
  margin-top: auto;
  max-width: 100%;
  transition: none;
}

.hero-3 .userpic img:hover {
  cursor: auto;
  filter: none;
}

.hero-3 .title {
  font-size: 60px;
  letter-spacing: 0pt;
  text-transform: uppercase;
  font-family: IranNastaliq;
  font-weight: 500;
  direction: rtl;
  color: #fff;
}

.hero-3 .after-title {
  font-weight: 600;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
  width: 100%;
}

.navbar-hero-3.navbar-light .navbar-nav .nav-link {
  color: #444;
  font-family: "iransans";
}

.navbar-hero-3.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-3.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-3.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #3d9b9e;
}

.navbar-hero-3 .navicons-wrap .btn-link {
  color: #444;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
}

.navbar-hero-3 span.spacer {
  width: 25px;
  display: inline-block;
  height: 2px;
  border-bottom: 1px solid rgb(235, 235, 235);
  transform: rotate(90deg);
  position: relative;
  top: 0px;
  margin-right: -5px;
}

.navbar-hero-3 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-3 .navicons-wrap .btn-link .cart-count {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 25px;
  height: 25px;
  background: rgba(252, 119, 120, 0.9490196078);
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-3 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
}

.navbar-hero-3 .navicons-wrap .btn-link i.icon-lock {
  font-size: 21px;
}

.navbar-hero-3 .navicons-wrap .btn-link i.icon-qr-code {
  font-size: 19px;
}

.navbar-hero-3 .navicons-wrap .btn-link i.icon-menu {
  top: 1px;
}

.navbar-hero-3 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-3 .navicons-wrap .btn-link:hover i {
  color: #3d9b9e;
}

.hero-3 .header-default {
  position: relative;
}

.hero-3 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-3 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-3 {
  background: #fff;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.58);
  height: 55px;
}

.navbar-hero-3.fixed-header {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  height: 55px;
}

.header-hero-3 .logo:before {
  content: "";
  position: absolute;
  top: -240px;
  left: 115px;
  width: 100px;
  height: 353px;
  background-color: #3d9b9e;
  opacity: 1;
  visibility: visible;
  transform: rotate(44deg);
  transition: ease opacity 600ms, ease transform 300ms;
  z-index: -1;
}

.header-hero-3 .logo:before {
  opacity: 0;
  visibility: hidden;
  transform: rotate(45deg) translate3d(0, -20px, 0);
  transition: ease all 300ms;
}

.header-hero-3 .logo img {
  margin-right: 30px;
  position: relative;
  width: 150px;
  top: 2px;
  left: 0px;
  transition: all linear 0.5s;
}

.header-hero-3 .logo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-3 .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-3 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-3 .nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
}

.navbar-hero-3 .nav-link.nav-login i {
  position: relative;
}

.navbar-hero-3 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-3 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-3 .navbar-toggler:hover i {
  background-color: #3d9b9e;
  color: #fff !important;
}

.navbar-hero-3 .navbar-light .navbar-nav .show > .nav-link, .navbar-hero-3 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-3 .menu ul li a:hover,
.navbar-hero-3 .menu ul li a:active,
.navbar-hero-3 .menu ul li a:focus {
  background-color: #ffa31a;
  color: #1b1b1b;
}

.navbar-hero-3 .menu .mwrap {
  top: 47px;
}

.navbar-hero-3.fixed-header .menu:hover > .mwrap {
  top: 47px;
}

.navbar-hero-3 .navbar-wrap {
  height: 53px;
  position: relative;
  width: 100%;
}

.navbar-hero-3 .navbar-wrap .logo-wrap {
  display: block;
  float: left;
}

.navbar-hero-3 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-3 .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-3 .navbar-wrap .navicons-wrap {
  position: relative;
  top: 12px;
  display: block;
  direction: rtl;
  left: auto;
  right: 0;
  float: right;
}

.hero-3 .service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

.hero-3 .separator-nor-tg {
  position: absolute;
  bottom: -2px;
  background: #fff;
  transform: rotateX(180deg);
  z-index: 1;
}

@media (max-width: 991.98px) {
  .hero-3 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .navbar-hero-3 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-3 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-3 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-3 .nav-link:hover,
  .navbar-hero-3 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-3 .header-left-icon {
    left: 10px;
  }
  .header-hero-3 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-3 .navbar-wrap {
    height: 35px;
  }
  .navbar-hero-3 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-3 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-3 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-3 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 33px;
  }
  .navbar-hero-3 .hero {
    position: relative;
    margin-top: -190px;
  }
  .navbar-hero-3 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-3 .navicons-wrap .btn-link .cart-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-3 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-3 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-3 .menu .mwrap {
    top: 0;
  }
  .header-hero-3 .title {
    font-size: 30px;
  }
  .header-hero-3 .version {
    display: none;
  }
  .navbar-hero-3 span.spacer {
    display: none;
  }
  .hero-3 .has-avatar {
    top: 5px;
    font-size: 30pt;
  }
  .hero-3 .userpic {
    display: none;
  }
  .hero-3 .shadow-after-title {
    right: 55px;
    bottom: -205px;
  }
  .header-hero-3 .logo {
    left: auto;
    text-align: center;
  }
  .header-hero-3 .logo img {
    top: -25px;
  }
  .header-hero-3 .logo img {
    top: -20px;
  }
  .header-hero-3 .top-info {
    display: none;
  }
  .header-hero-3 .top-logo {
    text-align: center;
  }
  .header-hero-3 .logo img {
    margin-right: 0;
    top: 0px;
  }
  .navbar-hero-3 .nobat-btn {
    display: none !important;
  }
  .navbar-hero-3 .navbar-wrap .navicons-wrap {
    width: 100%;
  }
  .navbar-hero-3 #drawer2 {
    float: left;
  }
  .hero-3 .title {
    font-size: 3rem;
  }
  .hero-3 .after-title {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-3 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-3 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-3 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-3 .header-left-icon a {
    display: inline-block;
  }
}
@media only screen and (max-width: 355px) {
  .header-hero-3 .logo:before {
    display: none;
  }
  .navbar-hero-3 .navicons-wrap .btn:nth-child(2) {
    display: none;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-4.hero {
  position: relative;
  margin-top: -140px;
}

.hero-4 .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}

.hero-4.hero .img-header {
  height: 100vh;
}

.hero-4 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  width: 100%;
  height: 100vh;
  /* opacity: .3; */
}

.hero-4 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-4.hero .img-header .img-app {
  height: 100vh;
}

.hero-4 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-4 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-4 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-4 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: 0;
  text-align: right;
  min-height: 100%;
}

.hero-4 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-4 {
  position: relative;
  text-align: center;
  direction: rtl;
  min-height: 50px;
}

.header-hero-4 .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
}

.header-hero-4 .header-center {
  display: block;
}

.header-hero-4 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-4 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-4 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-4 .header-center:hover .title {
  color: transparent;
}

.header-hero-4 .header-center:hover .title i {
  color: #222;
}

.header-hero-4 .header-center .after-title {
  color: #fff;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-4 .header-right-icon, .header-hero-4 .header-left-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 3;
}

.header-hero-4 .header-left-icon {
  right: auto;
  left: 40px;
  direction: ltr;
}

.header-hero-4 .header-left-icon a span {
  color: #444;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.header-hero-4 .header-left-icon a:hover span {
  background: #e04622;
  color: #fff;
}

.header-hero-4 .header-right-icon .btn-link {
  position: relative;
  color: #444;
  margin-left: 10px;
  padding-top: 0;
}

.header-hero-4 .header-right-icon .btn-link i {
  color: #444;
  display: block;
  font-size: 35px;
}

.header-hero-4 .header-right-icon .btn-link span {
  font-family: "KalamehWeb";
  position: absolute;
  font-size: 14px;
  bottom: 9px;
  left: -30px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 200ms ease;
}

.header-hero-4 .header-right-icon .btn-link:hover span {
  opacity: 1;
}

.header-hero-4 .img-header {
  height: 140px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
}

.header-hero-4 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-4 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-4 .img-header .img-app {
  height: 100vh;
}

.header-hero-4 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-4 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-4 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-4 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-4 .userpic {
  position: absolute;
  top: 0;
  transform: translate3d(-80%, 0, 0);
  left: 100%;
  width: 100%;
  height: 100%;
}

.hero-4 .no-avatar {
  display: block;
  max-width: 1000px;
  margin-top: 90px;
  font-size: 70pt;
}

.hero-4 .has-avatar {
  display: block;
  max-width: 789px;
  position: relative;
  top: 27px;
  text-transform: uppercase;
  font-size: 70pt;
}

.hero-4 .userpic img {
  border-radius: 0;
  filter: none;
  height: auto;
  margin-bottom: auto;
  margin-top: auto;
  max-width: 100%;
  transition: none;
}

.hero-4 .userpic img:hover {
  cursor: auto;
  filter: none;
}

.hero-4 .title, .hero-4 .shadow-title {
  font-size: inherit;
  letter-spacing: 0pt;
  line-height: 250pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-4 .shadow-title {
  color: rgba(255, 255, 255, 0.3294117647);
  position: absolute;
  width: 100%;
  top: -95px;
  right: -74px;
}

.hero-4 .after-title, .hero-4 .shadow-after-title {
  bottom: -132px;
  font-family: KalamehWeb;
  font-weight: 900;
  font-size: inherit;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
  position: absolute;
  width: 100%;
  line-height: 400px;
  right: 70px;
}

.hero-4 .shadow-after-title {
  position: absolute;
  right: 131px;
  bottom: -235px;
  font-size: inherit;
  margin-top: 0px;
  color: rgba(255, 255, 255, 0.3294117647);
}

.navbar-hero-4.navbar-light .navbar-nav .nav-link {
  color: #444;
  font-family: KalamehWeb;
  min-width: 60px;
}

.navbar-hero-4.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-4.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-4.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #e04622;
}

.navbar-hero-4 .navicons-wrap .btn-link {
  color: #444;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  min-width: 30px;
  height: 28px;
}

.navbar-hero-4 span.spacer {
  width: 25px;
  display: inline-block;
  height: 2px;
  border-bottom: 1px solid rgb(235, 235, 235);
  transform: rotate(90deg);
  position: relative;
  top: 0px;
  margin-right: -5px;
}

.navbar-hero-4 .navicons-wrap .btn-link span {
  display: inline-block;
  position: relative;
  font-size: 14px;
  top: -6px;
}

.navbar-hero-4 .navicons-wrap .btn-link .cart-count {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 25px;
  height: 25px;
  background: rgba(252, 119, 120, 0.9490196078);
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-4 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
}

.navbar-hero-4 .navicons-wrap .btn-link i.icon-lock {
  font-size: 21px;
}

.navbar-hero-4 .navicons-wrap .btn-link i.icon-qr-code {
  font-size: 19px;
}

.navbar-hero-4 .navicons-wrap .btn-link i.icon-menu {
  top: 1px;
}

.navbar-hero-4 .navicons-wrap .btn-link:hover span {
  color: #e04622;
}

.navbar-hero-4 .navicons-wrap .btn-link:hover i {
  color: #e04622;
}

.hero-4 .header-default {
  position: relative;
}

.hero-4 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-4 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-4 {
  background: #fff;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.28);
  height: 90px;
  transition: ease all 300ms;
}

.navbar-hero-4.fixed-header {
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.4);
  height: 70px;
  transition: ease all 300ms;
}

.navbar-hero-4 .logo:before {
  content: "";
  position: absolute;
  top: -240px;
  left: 115px;
  width: 100px;
  height: 353px;
  background-color: #e04622;
  opacity: 1;
  visibility: visible;
  transform: rotate(44deg);
  transition: ease opacity 600ms, ease transform 300ms;
  z-index: -1;
}

.navbar-hero-4.fixed-header .logo:before {
  opacity: 0;
  visibility: hidden;
  transform: rotate(45deg) translate3d(0, -20px, 0);
  transition: ease all 300ms;
}

.navbar-hero-4 .logo img {
  width: 120px;
  margin-right: 30px;
  position: relative;
  top: -16px;
  left: 14px;
  transition: all linear 0.5s;
}

.navbar-hero-4.fixed-header .logo img {
  filter: invert(100%);
  width: 100px;
  top: -10px;
  left: -13px;
}

.navbar-hero-4 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-4 .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-4 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-4 .nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
}

.navbar-hero-4 .nav-link.nav-login i {
  position: relative;
}

.navbar-hero-4 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-4 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-4 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-4 .navbar-light .navbar-nav .show > .nav-link, .navbar-hero-4 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-4 .menu ul li a:hover,
.navbar-hero-4 .menu ul li a:active,
.navbar-hero-4 .menu ul li a:focus {
  background-color: #ffa31a;
  color: #1b1b1b !important;
}

.navbar-hero-4 .menu .mwrap {
  top: 64px;
}

.navbar-hero-4.fixed-header .menu:hover > .mwrap {
  top: 53px;
}

.navbar-hero-4 .navbar-wrap {
  height: 53px;
  position: relative;
  width: 100%;
}

.navbar-hero-4 .navbar-wrap .logo-wrap {
  display: block;
  float: left;
}

.navbar-hero-4 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-4 .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-4 .navbar-wrap .navicons-wrap {
  position: relative;
  top: 12px;
  display: block;
  direction: rtl;
  left: auto;
  right: 0;
  float: right;
}

.hero-4 .service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

.hero-4 .hero-footer {
  position: absolute;
  bottom: 40px;
  width: 100%;
}

.hero-4 .hero-footer .hero-footer-text {
  position: relative;
  display: inline-block;
  font-family: "KalamehWeb";
  top: 0;
  z-index: 1;
  right: 20px;
  color: #fff;
  direction: rtl;
  text-align: right;
  font-size: 16px;
  transition: color 0.3s ease-in-out;
}

.hero-4 .hero-footer .hero-footer-text i {
  position: relative;
  top: 3px;
  font-size: 20px;
  margin-left: 5px;
}

.hero-4 .hero-footer .hero-footer-text:hover {
  color: #000;
}

.hero-4 .hero-footer-svg-position {
  position: absolute;
  top: -38px;
  right: 0;
  max-height: none;
  width: 400px;
}

.hero-4 .hero-footer-svg-position svg {
  height: 5.3vw;
  min-height: 96px;
  fill: #e04622;
}

@media (max-width: 991.98px) {
  .hero-4 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .navbar-hero-4 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-4 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-4 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-4 .nav-link:hover,
  .navbar-hero-4 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-4 .header-left-icon {
    left: 10px;
  }
  .header-hero-4 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-4 .navbar-wrap {
    height: 35px;
  }
  .navbar-hero-4 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-4 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-4 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-4 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 33px;
    float: left;
  }
  .navbar-hero-4 .hero {
    position: relative;
    margin-top: -190px;
  }
  .navbar-hero-4 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-4 .navicons-wrap .btn-link .cart-count {
    top: -4px;
    right: -9px;
    min-width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-4 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-4 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-4 .menu .mwrap {
    top: 0;
  }
  .header-hero-4 .title {
    font-size: 30px;
  }
  .header-hero-4 .version {
    display: none;
  }
  .navbar-hero-4 span.spacer {
    display: none;
  }
  .hero-4 .hero-footer {
    bottom: 65px;
  }
  .hero-4 .hero-footer .hero-footer-text {
    top: -12px;
    right: 15px;
    font-size: 14px;
  }
  .hero-4 .hero-footer-svg-position {
    width: 315px;
  }
  .hero-4 .hero-footer-svg-position svg {
    min-height: 75px;
  }
  .hero-4 .has-avatar {
    top: 5px;
    font-size: 30pt;
  }
  .hero-4 .shadow-title {
    top: -75px;
    right: -25px;
  }
  .hero-4 .title, .hero-4 .shadow-title {
    line-height: 200pt;
  }
  .hero-4 .userpic {
    display: none;
  }
  .hero-4 .after-title, .hero-4 .shadow-after-title {
    right: 25px;
  }
  .hero-4 .shadow-after-title {
    right: 55px;
    bottom: -205px;
  }
  .navbar-hero-4 .logo img {
    top: -25px;
  }
  .navbar-hero-4.fixed-header .logo img {
    top: -20px;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-4 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-4 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-4 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-4 .header-left-icon a {
    display: inline-block;
  }
}
@media only screen and (max-width: 355px) {
  .navbar-hero-4 .logo:before {
    display: none;
  }
  .navbar-hero-4 .navicons-wrap .btn:nth-child(2) {
    display: none;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-5.hero {
  position: relative;
  margin-top: -180px;
}

.hero-5.hero .hero-item:before {
  z-index: 0;
}

.hero-5.hero .hero-item:after {
  z-index: 1;
}

.hero-5 .tns-outer [aria-controls], .hero-5 .tns-outer [data-action] {
  margin-top: 180px;
}

.hero-5 .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-5.hero .img-header {
  height: 100vh;
}

.hero-5 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-5.hero .img-header .img-app {
  height: 100vh;
}

.hero-5 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-5 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-5 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-5 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-5 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-5 {
  position: relative;
  text-align: center;
  direction: rtl;
}

.header-hero-5:before {
  z-index: -2;
}

.header-hero-5:after {
  z-index: -1;
}

.header-hero-5 .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
  letter-spacing: 1px;
}

.header-hero-5 .header-center {
  display: block;
}

.header-hero-5 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-5 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-5 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-5 .header-center:hover .title {
  color: transparent;
}

.header-hero-5 .header-center:hover .title i {
  color: #222;
}

.header-hero-5 .header-center .after-title {
  color: #fff;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-5 .header-right-icon, .header-hero-5 .header-left-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 2;
}

.header-hero-5 .header-left-icon {
  right: auto;
  left: 40px;
  direction: ltr;
}

.header-hero-5 .header-left-icon a span {
  color: #fff;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.header-hero-5 .header-left-icon a:hover span {
  background: #ffa31a;
  color: #000;
}

.header-hero-5 .header-right-icon .btn-link {
  position: relative;
  color: #fff;
  margin-left: 10px;
  padding-top: 0;
}

.header-hero-5 .header-right-icon .btn-link i {
  color: #fff;
  display: block;
  font-size: 45px;
}

.header-hero-5 .header-right-icon .btn-link span {
  font-family: "KalamehWeb";
  position: absolute;
  font-size: 14px;
  bottom: -20px;
  right: 9px;
  font-weight: 500;
  display: none;
}

.header-hero-5 .header-right-icon .btn-link:hover span {
  display: block;
}

.header-hero-5 .img-header {
  height: 180px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
}

.header-hero-5 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-5 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-5 .img-header .img-app {
  height: 100vh;
}

.header-hero-5 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-5 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-5 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-5 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-5 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-5 .title {
  font-size: 32pt;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-5 .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-5.navbar-light .navbar-nav .nav-link {
  color: #000;
  font-family: KalamehWeb;
}

.navbar-hero-5.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-5.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-5.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #fff;
  background: rgb(27, 27, 27);
  font-weight: 700;
  border-radius: 3px;
}

.navbar-hero-5 .navicons-wrap .btn-link {
  color: #000;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
}

.navbar-hero-5 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-5 .navicons-wrap .btn-link .cart-count {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 25px;
  height: 25px;
  background: rgba(252, 119, 120, 0.9490196078);
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-5 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
}

.navbar-hero-5 .navicons-wrap .btn-link i.icon-lock {
  font-size: 21px;
}

.navbar-hero-5 .navicons-wrap .btn-link i.icon-qr-code {
  font-size: 19px;
}

.navbar-hero-5 .navicons-wrap .btn-link i.icon-menu {
  top: 1px;
}

.navbar-hero-5 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-5 .navicons-wrap .btn-link:hover i {
  background: #000;
  color: #fff;
}

.hero-5 .header-default {
  position: relative;
}

.hero-5 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-5 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-5 {
  background: rgba(255, 255, 255, 0.9607843137);
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.78);
}

.navbar-hero-5.fixed-header {
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.4);
}

.navbar-hero-5 .logo img {
  width: 200px;
  transition: all linear 0.5s;
  margin-right: 30px;
}

.navbar-hero-5.fixed-header .logo img {
  width: 100px;
}

.navbar-hero-5 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-5 .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-5 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-5 .nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
  font-size: 15px;
}

.navbar-hero-5 .nav-login .nav-link i {
  position: relative;
  font-size: 20px;
  margin: 0 0px 0 5px;
  font-weight: 700;
}

.navbar-hero-5 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-5 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-5 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-5 .navbar-light .navbar-nav .show > .nav-link, .navbar-hero-5 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-5 .menu ul li a:hover,
.navbar-hero-5 .menu ul li a:active,
.navbar-hero-5 .menu ul li a:focus {
  background-color: #ffa31a;
  color: #1b1b1b;
}

.navbar-hero-5 .menu .mwrap {
  top: 55px;
}

.navbar-hero-5.fixed-header .menu:hover > .mwrap {
  top: 53px;
}

.navbar-hero-5 .navbar-wrap {
  height: 53px;
  position: relative;
  width: 100%;
}

.navbar-hero-5 .navbar-wrap .logo-wrap {
  display: block;
  float: left;
}

.navbar-hero-5 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-5 .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-5 .navbar-wrap .navicons-wrap {
  position: relative;
  top: 12px;
  display: block;
  direction: ltr;
  left: 0;
  right: auto;
  float: left;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

@media (max-width: 991.98px) {
  .hero-5 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .navbar-hero-5 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-5 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-5 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-5 .nav-link:hover,
  .navbar-hero-5 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-5 .header-left-icon {
    left: 10px;
  }
  .header-hero-5 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-5 .navbar-wrap {
    overflow: hidden;
    height: 35px;
  }
  .navbar-hero-5 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-5 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-5 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-5 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 33px;
  }
  .navbar-hero-5 .hero {
    position: relative;
    margin-top: -190px;
  }
  .header-hero-5 .img-header {
    height: 163px;
  }
  .navbar-hero-5 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-5 .navicons-wrap .btn-link .cart-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-5 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-5 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-5 .menu .mwrap {
    top: 0;
  }
  .header-hero-5 .title {
    font-size: 30px;
  }
  .header-hero-5 .version {
    display: none;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-5 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-5 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-5 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-5 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-6.hero {
  position: relative;
  margin-top: -180px;
}

.hero-6.hero .hero-item:before {
  z-index: 0;
}

.hero-6.hero .hero-item:after {
  z-index: 1;
}

.hero-6 .tns-outer [aria-controls], .hero-6 .tns-outer [data-action] {
  margin-top: 180px;
}

.hero-6 .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-6.hero .img-header {
  height: 100vh;
}

.hero-6 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-6.hero .img-header .img-app {
  height: 100vh;
}

.hero-6 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-6 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-6 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-6 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-6 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-6 {
  position: relative;
  text-align: center;
  direction: rtl;
}

.header-hero-6:before {
  z-index: -2;
}

.header-hero-6:after {
  z-index: -1;
}

.header-hero-6 .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
  letter-spacing: 1px;
}

.header-hero-6 .header-center {
  display: block;
}

.header-hero-6 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-6 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-6 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-6 .header-center:hover .title {
  color: transparent;
}

.header-hero-6 .header-center:hover .title i {
  color: #222;
}

.header-hero-6 .header-center .after-title {
  color: #fff;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-6 .header-right-icon, .header-hero-6 .header-left-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 2;
}

.header-hero-6 .header-left-icon {
  right: auto;
  left: 40px;
  direction: ltr;
}

.header-hero-6 .header-left-icon a span {
  color: #fff;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.header-hero-6 .header-left-icon a:hover span {
  background: #ffa31a;
  color: #000;
}

.header-hero-6 .header-right-icon .btn-link {
  position: relative;
  color: #fff;
  margin-left: 10px;
  padding-top: 0;
}

.header-hero-6 .header-right-icon .btn-link i {
  color: #fff;
  display: block;
  font-size: 45px;
}

.header-hero-6 .header-right-icon .btn-link span {
  font-family: "KalamehWeb";
  position: absolute;
  font-size: 14px;
  bottom: -20px;
  right: 9px;
  font-weight: 500;
  display: none;
}

.header-hero-6 .header-right-icon .btn-link:hover span {
  display: block;
}

.header-hero-6 .img-header {
  height: 180px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
}

.header-hero-6 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-6 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-6 .img-header .img-app {
  height: 100vh;
}

.header-hero-6 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-6 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-6 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-6 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-6 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-6 .title {
  font-size: 32pt;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-6 .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-6.navbar-light .navbar-nav .nav-link {
  color: #000;
  font-family: KalamehWeb;
}

.navbar-hero-6.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-6.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-6.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #fff;
  background: rgb(27, 27, 27);
  font-weight: 700;
  border-radius: 3px;
}

.navbar-hero-6 .navicons-wrap .btn-link {
  color: #000;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
}

.navbar-hero-6 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-6 .navicons-wrap .btn-link .cart-count {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 25px;
  height: 25px;
  background: rgba(252, 119, 120, 0.9490196078);
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-6 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
}

.navbar-hero-6 .navicons-wrap .btn-link i.icon-lock {
  font-size: 21px;
}

.navbar-hero-6 .navicons-wrap .btn-link i.icon-qr-code {
  font-size: 19px;
}

.navbar-hero-6 .navicons-wrap .btn-link i.icon-menu {
  top: 1px;
}

.navbar-hero-6 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-6 .navicons-wrap .btn-link:hover i {
  background: #000;
  color: #fff;
}

.hero-6 .header-default {
  position: relative;
}

.hero-6 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-6 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-6 {
  background: rgba(255, 255, 255, 0.9607843137);
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.78);
}

.navbar-hero-6.fixed-header {
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.4);
}

.navbar-hero-6 .logo img {
  width: 200px;
  transition: all linear 0.5s;
  margin-right: 30px;
}

.navbar-hero-6.fixed-header .logo img {
  width: 100px;
}

.navbar-hero-6 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-6 .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-6 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-6 .nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
  font-size: 15px;
}

.navbar-hero-6 .nav-login .nav-link i {
  position: relative;
  font-size: 20px;
  margin: 0 0px 0 5px;
  font-weight: 700;
}

.navbar-hero-6 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-6 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-6 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-6 .navbar-light .navbar-nav .show > .nav-link, .navbar-hero-6 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-6 .menu ul li a:hover,
.navbar-hero-6 .menu ul li a:active,
.navbar-hero-6 .menu ul li a:focus {
  background-color: #ffa31a;
  color: #1b1b1b;
}

.navbar-hero-6 .menu .mwrap {
  top: 55px;
}

.navbar-hero-6.fixed-header .menu:hover > .mwrap {
  top: 53px;
}

.navbar-hero-6 .navbar-wrap {
  height: 53px;
  position: relative;
  width: 100%;
}

.navbar-hero-6 .navbar-wrap .logo-wrap {
  display: block;
  float: left;
}

.navbar-hero-6 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-6 .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-6 .navbar-wrap .navicons-wrap {
  position: relative;
  top: 12px;
  display: block;
  direction: ltr;
  left: 0;
  right: auto;
  float: left;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

@media (max-width: 991.98px) {
  .hero-6 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .navbar-hero-6 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-6 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-6 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-6 .nav-link:hover,
  .navbar-hero-6 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-6 .header-left-icon {
    left: 10px;
  }
  .header-hero-6 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-6 .navbar-wrap {
    overflow: hidden;
    height: 35px;
  }
  .navbar-hero-6 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-6 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-6 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-6 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 33px;
  }
  .navbar-hero-6 .hero {
    position: relative;
    margin-top: -190px;
  }
  .header-hero-6 .img-header {
    height: 163px;
  }
  .navbar-hero-6 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-6 .navicons-wrap .btn-link .cart-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-6 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-6 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-6 .menu .mwrap {
    top: 0;
  }
  .header-hero-6 .title {
    font-size: 30px;
  }
  .header-hero-6 .version {
    display: none;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-6 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-6 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-6 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-6 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-7.hero {
  position: relative;
  margin-top: -180px;
}

.hero-7.hero .hero-item:before {
  z-index: 0;
}

.hero-7.hero .hero-item:after {
  z-index: 1;
}

.hero-7 .tns-outer [aria-controls], .hero-7 .tns-outer [data-action] {
  margin-top: 180px;
}

.hero-7 .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-7.hero .img-header {
  height: 100vh;
}

.hero-7 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-7.hero .img-header .img-app {
  height: 100vh;
}

.hero-7 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-7 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-7 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-7 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-7 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-7 {
  position: relative;
  text-align: center;
  direction: rtl;
}

.header-hero-7:before {
  z-index: -2;
}

.header-hero-7:after {
  z-index: -1;
}

.header-hero-7 .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
  letter-spacing: 1px;
}

.header-hero-7 .header-center {
  display: block;
}

.header-hero-7 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-7 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-7 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-7 .header-center:hover .title {
  color: transparent;
}

.header-hero-7 .header-center:hover .title i {
  color: #222;
}

.header-hero-7 .header-center .after-title {
  color: #fff;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-7 .header-right-icon, .header-hero-7 .header-left-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 2;
}

.header-hero-7 .header-left-icon {
  right: auto;
  left: 40px;
  direction: ltr;
}

.header-hero-7 .header-left-icon a span {
  color: #fff;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.header-hero-7 .header-left-icon a:hover span {
  background: #ffa31a;
  color: #000;
}

.header-hero-7 .header-right-icon .btn-link {
  position: relative;
  color: #fff;
  margin-left: 10px;
  padding-top: 0;
}

.header-hero-7 .header-right-icon .btn-link i {
  color: #fff;
  display: block;
  font-size: 45px;
}

.header-hero-7 .header-right-icon .btn-link span {
  font-family: "KalamehWeb";
  position: absolute;
  font-size: 14px;
  bottom: -20px;
  right: 9px;
  font-weight: 500;
  display: none;
}

.header-hero-7 .header-right-icon .btn-link:hover span {
  display: block;
}

.header-hero-7 .img-header {
  height: 180px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
}

.header-hero-7 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-7 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-7 .img-header .img-app {
  height: 100vh;
}

.header-hero-7 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-7 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-7 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-7 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-7 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-7 .title {
  font-size: 32pt;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-7 .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-7.navbar-light .navbar-nav .nav-link {
  color: #000;
  font-family: KalamehWeb;
}

.navbar-hero-7.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-7.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-7.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #fff;
  background: rgb(27, 27, 27);
  font-weight: 700;
  border-radius: 3px;
}

.navbar-hero-7 .navicons-wrap .btn-link {
  color: #000;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
}

.navbar-hero-7 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-7 .navicons-wrap .btn-link .cart-count {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 25px;
  height: 25px;
  background: rgba(252, 119, 120, 0.9490196078);
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-7 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
}

.navbar-hero-7 .navicons-wrap .btn-link i.icon-lock {
  font-size: 21px;
}

.navbar-hero-7 .navicons-wrap .btn-link i.icon-qr-code {
  font-size: 19px;
}

.navbar-hero-7 .navicons-wrap .btn-link i.icon-menu {
  top: 1px;
}

.navbar-hero-7 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-7 .navicons-wrap .btn-link:hover i {
  background: #000;
  color: #fff;
}

.hero-7 .header-default {
  position: relative;
}

.hero-7 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-7 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-7 {
  background: rgba(255, 255, 255, 0.9607843137);
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.78);
}

.navbar-hero-7.fixed-header {
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.4);
}

.navbar-hero-7 .logo img {
  width: 200px;
  transition: all linear 0.5s;
  margin-right: 30px;
}

.navbar-hero-7.fixed-header .logo img {
  width: 100px;
}

.navbar-hero-7 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-7 .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-7 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-7 .nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
  font-size: 15px;
}

.navbar-hero-7 .nav-login .nav-link i {
  position: relative;
  font-size: 20px;
  margin: 0 0px 0 5px;
  font-weight: 700;
}

.navbar-hero-7 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-7 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-7 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-7 .navbar-light .navbar-nav .show > .nav-link, .navbar-hero-7 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-7 .menu ul li a:hover,
.navbar-hero-7 .menu ul li a:active,
.navbar-hero-7 .menu ul li a:focus {
  background-color: #ffa31a;
  color: #1b1b1b;
}

.navbar-hero-7 .menu .mwrap {
  top: 55px;
}

.navbar-hero-7.fixed-header .menu:hover > .mwrap {
  top: 53px;
}

.navbar-hero-7 .navbar-wrap {
  height: 53px;
  position: relative;
  width: 100%;
}

.navbar-hero-7 .navbar-wrap .logo-wrap {
  display: block;
  float: left;
}

.navbar-hero-7 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-7 .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-7 .navbar-wrap .navicons-wrap {
  position: relative;
  top: 12px;
  display: block;
  direction: ltr;
  left: 0;
  right: auto;
  float: left;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

@media (max-width: 991.98px) {
  .hero-7 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .navbar-hero-7 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-7 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-7 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-7 .nav-link:hover,
  .navbar-hero-7 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-7 .header-left-icon {
    left: 10px;
  }
  .header-hero-7 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-7 .navbar-wrap {
    overflow: hidden;
    height: 35px;
  }
  .navbar-hero-7 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-7 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-7 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-7 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 33px;
  }
  .navbar-hero-7 .hero {
    position: relative;
    margin-top: -190px;
  }
  .header-hero-7 .img-header {
    height: 163px;
  }
  .navbar-hero-7 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-7 .navicons-wrap .btn-link .cart-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-7 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-7 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-7 .menu .mwrap {
    top: 0;
  }
  .header-hero-7 .title {
    font-size: 30px;
  }
  .header-hero-7 .version {
    display: none;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-7 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-7 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-7 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-7 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-8.hero {
  position: relative;
  margin-top: 0;
}

.hero-8.hero .hero-item:before {
  z-index: 0;
}

.hero-8.hero .hero-item:after {
  z-index: 1;
}

.hero-8 .tns-outer [aria-controls],
.hero-8 .tns-outer [data-action] {
  margin-top: 180px;
}

.hero-8 .img-header {
  height: auto;
  width: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}

.hero-8 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-8 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-8 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-8 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-8 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-8 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-8 {
  position: relative;
  text-align: center;
  direction: rtl;
  z-index: 1;
}

.header-hero-8:before {
  z-index: -2;
}

.header-hero-8:after {
  z-index: -1;
}

.header-hero-8 .info-header {
  position: relative;
  height: 54px;
  background-color: #ec841e;
  color: #fff;
  z-index: 10000;
}

.header-hero-8 .version {
  color: #ccc;
  position: absolute;
  left: 24px;
  top: 62px;
  font-size: 11px;
  letter-spacing: 1px;
}

.header-hero-8 .header-center {
  display: block;
}

.header-hero-8 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-8 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-8 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-8 .header-center:hover .title {
  color: transparent;
}

.header-hero-8 .header-center:hover .title i {
  color: #222;
}

.header-hero-8 .header-center .after-title {
  color: #fff;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-8 .header-right-icon,
.header-hero-8 .header-left-icon {
  position: absolute;
  top: 13px;
  right: 40px;
  z-index: 2;
}

.header-hero-8 .header-left-icon {
  right: auto;
  left: 15px;
  top: 12px;
  direction: ltr;
}

.header-hero-8 .header-left-icon a span {
  color: #fff;
  font-weight: 600;
  min-width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  font-size: 13px;
  letter-spacing: 0.09rem;
}

.header-hero-8 .header-left-icon a i {
  margin-right: 10px;
  margin-left: 3px;
  color: #ff4c3b;
}

.header-hero-8 .header-left-icon a:hover span,
.header-hero-8 .header-right-icon .btn-link:hover span {
  background: #fff;
  color: #000;
  border-radius: 4px;
}

.header-hero-8 .header-right-icon .btn-link {
  font-family: "KalamehWeb";
  position: relative;
  color: #f1f1f1;
  background-color: transparent;
  margin-left: 10px;
  letter-spacing: 0.03rem;
  font-weight: 500;
  padding: 0 5px 3px 5px;
  display: inline-block;
  min-width: 140px;
  transition: color 0.3s ease-in-out;
}

.header-hero-8 .header-right-icon .btn-link i {
  font-size: 20px;
  color: #f1f1f1;
}

.header-hero-8 .header-right-icon .btn-link span {
  padding: 0 5px 0 5px;
  letter-spacing: 1px;
}

.header-hero-8 .img-header {
  height: 180px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
}

.header-hero-8 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-8 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-8 .img-header .img-app {
  height: 100vh;
}

.header-hero-8 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-8 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-8 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-8 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-8 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-8 .title {
  font-size: 32pt;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-8 .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-8.navbar-light .navbar-nav .nav-link {
  color: #000;
  font-family: "iransans";
}

.navbar-hero-8.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-8.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-8.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #fff;
  background: rgb(27, 27, 27);
  font-weight: 700;
  border-radius: 3px;
}

.navbar-hero-8 .navicons-wrap .btn-link {
  color: #000;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
}

.navbar-hero-8 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-8 .navicons-wrap .btn-link .cart-count {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 25px;
  height: 25px;
  background: rgba(252, 119, 120, 0.9490196078);
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-8 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
}

.navbar-hero-8 .navicons-wrap .btn-link i.icon-lock {
  font-size: 21px;
}

.navbar-hero-8 .navicons-wrap .btn-link i.icon-qr-code {
  font-size: 19px;
}

.navbar-hero-8 .navicons-wrap .btn-link i.icon-menu {
  top: 1px;
}

.navbar-hero-8 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-8 .navicons-wrap .btn-link:hover i {
  background: #000;
  color: #fff;
}

.hero-8 .header-default {
  position: relative;
}

.hero-8 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-8 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-8 {
  top: -1px;
  background: rgba(255, 255, 255, 0.9607843137);
  box-shadow: 0 5px 5px -5px #333;
}

.navbar-hero-8 .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-8 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-8 .nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
  font-size: 15px;
}

.navbar-hero-8 .nav-login .nav-link i {
  position: relative;
  font-size: 20px;
  margin: 0 0px 0 5px;
  font-weight: 700;
}

.navbar-hero-8 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-8 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-8 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-8 .navbar-light .navbar-nav .show > .nav-link,
.navbar-hero-8 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-8 .menu ul li a:hover,
.navbar-hero-8 .menu ul li a:active,
.navbar-hero-8 .menu ul li a:focus {
  background-color: #ffa31a;
  color: #1b1b1b;
}

.navbar-hero-8 .menu .mwrap {
  top: 55px;
}

.navbar-hero-8.fixed-header .menu:hover > .mwrap {
  top: 53px;
}

.navbar-hero-8 .navbar-wrap {
  height: 75px;
  position: relative;
  width: 100%;
}

.navbar-hero-8 .navbar-wrap .logo-wrap {
  display: block;
  position: fixed;
  top: 0;
  left: auto;
  text-align: center;
  z-index: 1;
  padding: 0;
  margin: 0 0 0 120px;
  border-top-right-radius: 1px;
  background: #ffffff;
  box-shadow: 0 0 25px 0 rgba(51, 51, 51, 0.3);
  transform: scale(1);
  transform-origin: top left;
  height: 130px;
  transition: transform 0.5s ease;
}

.navbar-hero-8.fixed-header .navbar-wrap .logo-wrap {
  transform: scale(0.7);
  transform-origin: top left;
  box-shadow: 0 0 25px 0 rgba(51, 51, 51, 0.3);
}

.navbar-hero-8 .navbar-wrap .logo-wrap:after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  background: var(--bs-white);
  left: 0px;
  bottom: -65px;
  z-index: -1;
  box-shadow: 0 5px 5px -5px #333;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

.navbar-hero-8 .logo img {
  position: relative;
  top: 10px;
  width: 122px;
  padding: 0px 10px 10px 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.navbar-hero-8 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-8 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-8 .navbar-wrap .menu-wrap {
  float: right;
  right: 20px;
  position: relative;
  top: 13px;
}

.navbar-hero-8 .navbar-wrap .navicons-wrap {
  position: relative;
  top: 22px;
  display: block;
  direction: ltr;
  left: 0;
  right: auto;
  float: left;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

@media (max-width: 991.98px) {
  .hero-8 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .navbar-hero-8 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-8 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-8 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-8 .nav-link:hover,
  .navbar-hero-8 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-8 .header-left-icon {
    left: 10px;
  }
  .header-hero-8 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-8 .navbar-wrap {
    overflow: hidden;
    height: 35px;
  }
  .navbar-hero-8 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 25px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-8 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-8 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-8 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 33px;
  }
  .navbar-hero-8 .hero {
    position: relative;
    margin-top: -190px;
  }
  .header-hero-8 .img-header {
    height: 163px;
  }
  .navbar-hero-8 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-8 .navicons-wrap .btn-link .cart-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-8 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-8 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-8 .menu .mwrap {
    top: 0;
  }
  .header-hero-8 .title {
    font-size: 30px;
  }
  .header-hero-8 .version {
    display: none;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-8 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-8 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-8 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-8 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-9.hero {
  position: relative;
  margin-top: -180px;
}

.hero-9 .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}

.hero-9.hero .img-header {
  height: 100vh;
}

.hero-9 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  width: 100%;
  height: 100vh;
  /* opacity: .3; */
}

.hero-9 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-9.hero .img-header .img-app {
  height: 100vh;
}

.hero-9 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-9 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-9 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-9 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-9 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-9 {
  position: relative;
  text-align: center;
  direction: rtl;
  height: 50px;
  background-color: #eeeeee;
  color: #999;
  z-index: 10000;
}

.header-hero-9 .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
}

.header-hero-9 .header-center {
  display: block;
}

.header-hero-9 .seperator {
  color: #eee;
}

.header-hero-9 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-9 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-9 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-9 .header-center:hover .title {
  color: transparent;
}

.header-hero-9 .header-center:hover .title i {
  color: #222;
}

.header-hero-9 .header-center .after-title {
  color: #999;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-9 .header-right-icon, .header-hero-9 .header-left-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1;
}

.header-hero-9 .header-left-icon {
  right: auto;
  left: 15px;
  top: 10px;
  direction: ltr;
}

.header-hero-9 .header-left-icon a span {
  color: #333;
  font-weight: 600;
  min-width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  font-size: 13px;
  letter-spacing: 0.09rem;
}

.header-hero-9 .header-left-icon a i {
  margin-right: 10px;
  margin-left: 3px;
  color: #ff4c3b;
}

.header-hero-9 .header-left-icon a:hover span {
  background: #eb3a3f;
  color: #fff;
  border-radius: 4px;
}

.header-hero-9 .header-right-icon .btn-link {
  font-family: "KalamehWeb";
  position: relative;
  color: #333;
  background-color: transparent;
  margin-left: 10px;
  letter-spacing: 0.03rem;
  font-weight: 500;
  padding: 0 5px 3px 5px;
  display: inline-block;
  min-width: 140px;
  transition: color 0.3s ease-in-out;
}

.header-hero-9 .header-right-icon .btn-link:hover {
  color: #b7b7b7;
}

.header-hero-9 .header-right-icon .btn-link i {
  font-size: 20px;
}

.header-hero-9 .header-right-icon .btn-link span {
  font-size: 14px;
  font-weight: 500;
}

.header-hero-9 .header-right-icon .btn-link:hover a {
  color: #ff4c3b;
}

.header-hero-9 .img-header {
  height: 180px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
}

.header-hero-9 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-9 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-9 .img-header .img-app {
  height: 100vh;
}

.header-hero-9 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-9 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-9 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-9 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-9 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-9 .title {
  font-size: 32pt;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-9 .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-9.navbar-light .navbar-nav .nav-link {
  color: #222;
  font-family: KalamehWeb;
}

.navbar-hero-9.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-9.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-9.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #fff;
  background: rgb(27, 27, 27);
  border-radius: 3px;
}

.navbar-hero-9 .navicons-wrap .btn-link {
  color: #333;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
  margin-left: 15px;
}

.navbar-hero-9 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-9 .navicons-wrap .btn-link .cart-count,
.navbar-hero-9 .navicons-wrap .btn-link .bookmark-count {
  position: absolute;
  top: -13px;
  right: -12px;
  width: 25px;
  height: 25px;
  background: rgba(234, 58, 63, 0.71);
  color: #fff;
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-9 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
  font-size: 30px;
}

.navbar-hero-9 .navicons-wrap .btn-link i.icon-lock {
  font-size: 25px;
}

.navbar-hero-9 .navicons-wrap .btn-link i.icon-menu {
  top: 1px;
}

.navbar-hero-9 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-9 .navicons-wrap .btn-link:hover i {
  background: #fff;
  color: #eb3a3f;
}

.hero-9 .header-default {
  position: relative;
}

.hero-9 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-9 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-9 {
  background: rgba(255, 255, 255, 0.9607843137);
}

.navbar-hero-9.fixed-header {
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.4);
}

.navbar-hero-9 .logo img {
  transition: all linear 0.5s;
  margin-right: 30px;
  margin-top: -12px;
  height: 70px;
}

.navbar-hero-9.fixed-header .logo img {
  height: 70px;
}

.navbar-hero-9 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-9 .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-9 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-9 .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
  font-size: 15px;
}

.navbar-hero-9 .nav-link.nav-login i {
  position: relative;
}

.navbar-hero-9 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-9 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-9 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-9 .navbar-light .navbar-nav .show > .nav-link, .navbar-hero-9 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-9 .menu ul li a:hover,
.navbar-hero-9 .menu ul li a:active,
.navbar-hero-9 .menu ul li a:focus {
  background-color: #eee;
  color: #1b1b1b;
}

.navbar-hero-9 .menu .mwrap {
  top: 40px;
  transition: top 500ms ease;
}

.navbar-hero-9.fixed-header .menu:hover > .mwrap {
  top: 77px;
}

.navbar-hero-9 .navbar-wrap {
  height: 100px;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  padding-top: 24px;
}

.navbar-hero-9 .navbar-wrap .logo-wrap {
  display: block;
  float: left;
}

.navbar-hero-9 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-9 .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-9 .navbar-wrap .navicons-wrap {
  position: relative;
  top: 12px;
  display: block;
  direction: ltr;
  left: 0;
  right: auto;
  float: right;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

.search-hero-9 {
  border-top: 1px solid #eeeeee;
}

.search-hero-9 .search-wrap-2 {
  position: relative;
  display: block;
  margin: 40px auto 40px auto;
  max-width: 700px;
  width: 100%;
}

.search-hero-9 .search-wrap-2 input {
  background: #eeeeee;
  display: inline-block;
  min-height: 54px;
  border-radius: 3px;
  padding: 15px 20px 10px 20px;
  direction: rtl;
  font-size: 14px;
  color: #a9a9a9;
  position: relative;
  max-width: 700px;
  width: 100%;
  letter-spacing: 1px;
}

.search-hero-9 .search-wrap-2 button {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #f5443d;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 4px;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  transition: background-color 500ms ease;
}

.search-hero-9 .search-wrap-2 button:hover {
  background-color: #222;
}

.search-hero-9 .search-wrap-2 button i {
  font-size: 23px;
  left: 0;
}

@media (max-width: 991.98px) {
  .header-hero-9 {
    z-index: 1000;
  }
  .hero-9 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .search-hero-9 .search-wrap-2 {
    margin: 15px auto 15px auto;
  }
  .navbar-hero-9 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-9 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-9 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-9 .nav-link:hover,
  .navbar-hero-9 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-9 .header-left-icon {
    left: 10px;
  }
  .header-hero-9 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-9 .navbar-wrap {
    overflow: hidden;
    height: 60px;
    padding-top: 10px;
  }
  .navbar-hero-9 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-9 .logo img, .navbar-hero-9.fixed-header .logo img {
    margin-top: -2px;
    height: 45px;
    margin-right: 15px;
  }
  .navbar-hero-9 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-9 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-9 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 36px;
  }
  .navbar-hero-9 .hero {
    position: relative;
    margin-top: -190px;
  }
  .header-hero-9 .img-header {
    height: 163px;
  }
  .navbar-hero-9 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-9 .navicons-wrap .btn-link .cart-count,
  .navbar-hero-9 .navicons-wrap .btn-link .bookmark-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-9 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-9 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-9 .menu .mwrap {
    top: 0;
  }
  .header-hero-9 .title {
    font-size: 30px;
  }
  .header-hero-9 .version {
    display: none;
  }
  .header-hero-9 .header-right-icon .btn-link {
    text-align: right;
    min-width: 110px;
  }
  .header-hero-9 .header-right-icon .btn-link span {
    font-size: 13px;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-9 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-9 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-9 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-9 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-10.hero {
  position: relative;
  margin-top: -180px;
}

.hero-10 .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}

.hero-10.hero .img-header {
  height: 100vh;
}

.hero-10 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  width: 100%;
  height: 100vh;
  /* opacity: .3; */
}

.hero-10 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-10.hero .img-header .img-app {
  height: 100vh;
}

.hero-10 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-10 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-10 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-10 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-10 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-10 {
  position: relative;
  text-align: center;
  direction: rtl;
  height: 50px;
  background-color: #fff;
  color: #777;
  z-index: 10000;
  border-bottom: 1px solid #ebebeb;
}

.header-hero-10 .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
}

.header-hero-10 .header-center {
  display: block;
}

.header-hero-10 .seperator {
  color: #eee;
}

.header-hero-10 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-10 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-10 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-10 .header-center:hover .title {
  color: transparent;
}

.header-hero-10 .header-center:hover .title i {
  color: #222;
}

.header-hero-10 .header-center .after-title {
  color: #999;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-10 .header-right-icon, .header-hero-10 .header-left-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1;
}

.header-hero-10 .header-left-icon {
  right: auto;
  left: 15px;
  top: 10px;
  direction: ltr;
}

.header-hero-10 .header-left-icon a span {
  color: #333;
  font-weight: 600;
  min-width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  font-size: 13px;
  letter-spacing: 0.09rem;
}

.header-hero-10 .header-left-icon a i {
  margin-right: 10px;
  margin-left: 3px;
  color: #ff4c3b;
}

.header-hero-10 .header-left-icon a:hover span {
  background: #eb3a3f;
  color: #fff;
  border-radius: 4px;
}

.header-hero-10 .header-right-icon .btn-link {
  font-family: "KalamehWeb";
  position: relative;
  color: #333;
  background-color: transparent;
  margin-left: 10px;
  letter-spacing: 0.03rem;
  font-weight: 500;
  padding: 0 5px 3px 5px;
  display: inline-block;
  min-width: 140px;
  transition: color 0.3s ease-in-out;
}

.header-hero-10 .header-right-icon .btn-link:hover {
  color: #b7b7b7;
}

.header-hero-10 .header-right-icon .btn-link i {
  font-size: 20px;
  color: #f2565d;
}

.header-hero-10 .header-right-icon .btn-link span {
  font-size: 14px;
  font-weight: 500;
}

.header-hero-10 .header-right-icon .btn-link:hover a {
  color: #ff4c3b;
}

.header-hero-10 .img-header {
  height: 180px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
}

.header-hero-10 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-10 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-10 .img-header .img-app {
  height: 100vh;
}

.header-hero-10 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-10 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-10 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-10 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-10 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-10 .title {
  font-size: 32pt;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-10 .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-10.navbar-light .navbar-nav .nav-link {
  color: #222;
  font-family: KalamehWeb;
}

.navbar-hero-10.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-10.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-10.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #f13d45;
  background: transparent;
  border-radius: 3px;
}

.navbar-hero-10 .navicons-wrap .btn-link {
  color: #333;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
  margin-left: 15px;
}

.navbar-hero-10 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-10 .navicons-wrap .btn-link .cart-count,
.navbar-hero-10 .navicons-wrap .btn-link .bookmark-count {
  position: absolute;
  top: -13px;
  right: -12px;
  width: 25px;
  height: 25px;
  background: rgba(234, 58, 63, 0.71);
  color: #fff;
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-10 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
  font-size: 30px;
}

.navbar-hero-10 .navicons-wrap .btn-link i.icon-lock {
  font-size: 25px;
}

.navbar-hero-10 .navicons-wrap .btn-link i.icon-menu {
  top: 13px;
}

.navbar-hero-10 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-10 .navicons-wrap .btn-link:hover i {
  background: #fff;
  color: #eb3a3f;
}

.navbar-hero-10 .navbar-wrap .support-wrap {
  position: absolute;
  top: 5px;
  left: 0;
  right: auto;
  width: 150px;
  overflow: hidden;
}

.navbar-hero-10 .navbar-wrap .support-wrap i {
  color: #fb5d5c;
  position: absolute;
  left: 0px;
  font-size: 35px;
  top: 3px;
}

.navbar-hero-10 .navbar-wrap .support-wrap .text {
  color: #999;
  font-weight: 500;
  text-align: center;
  display: block;
  margin-bottom: 3px;
  margin-left: 80px;
}

.navbar-hero-10 .navbar-wrap .support-wrap .phone {
  font-family: "iransansNum";
  color: #222;
  font-weight: 600;
  text-align: center;
  display: block;
  margin-left: 42px;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.hero-10 .header-default {
  position: relative;
}

.hero-10 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-10 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-10 {
  background: rgba(255, 255, 255, 0.9607843137);
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.07);
}

.navbar-hero-10 .logo img {
  transition: all linear 0.5s;
  margin-right: 15px;
  margin-top: 0px;
  height: 95px;
}

.navbar-hero-10.fixed-header .logo img {
  height: 70px;
}

.navbar-hero-10 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-10 .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-10 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-10 .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
  font-size: 15px;
}

.navbar-hero-10 .nav-link.nav-login i {
  position: relative;
}

.navbar-hero-10 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-10 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-10 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-10 .navbar-light .navbar-nav .show > .nav-link, .navbar-hero-10 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-10 .menu ul li a:hover,
.navbar-hero-10 .menu ul li a:active,
.navbar-hero-10 .menu ul li a:focus {
  background-color: #eee;
  color: #1b1b1b;
}

.navbar-hero-10 .menu .mwrap {
  top: 56px;
  transition: top 500ms ease;
}

.navbar-hero-10.fixed-header .menu:hover > .mwrap {
  top: 56px;
}

.navbar-hero-10 .navbar-wrap {
  height: 55px;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  padding-top: 0px;
}

.navbar-hero-10 .navbar-wrap .logo-wrap {
  position: absolute;
  display: block;
  float: left;
  top: -112px;
  left: -20px;
}

.navbar-hero-10 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-10 .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-10 .navbar-wrap .navicons-wrap {
  position: absolute;
  top: -78px;
  display: block;
  direction: ltr;
  right: 0;
  left: auto;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

.search-hero-10 {
  border-bottom: 1px solid #ebebeb;
}

.search-hero-10 .search-wrap-2 {
  position: relative;
  display: block;
  margin: 25px auto 25px auto;
  max-width: 600px;
  width: 100%;
}

.search-hero-10 .search-wrap-2 input {
  background: #fbfbfb;
  display: inline-block;
  min-height: 54px;
  border-radius: 3px;
  padding: 15px 20px 10px 20px;
  direction: rtl;
  font-size: 14px;
  color: #a9a9a9;
  position: relative;
  max-width: 600px;
  width: 100%;
  letter-spacing: 1px;
  border: 1px solid #ddd;
}

.search-hero-10 .search-wrap-2 input:placeholder {
  color: #a9a9a9;
}

.search-hero-10 .search-wrap-2 button {
  position: absolute;
  top: 1px;
  left: 1px;
  right: auto;
  background-color: #fb5d5c;
  color: #fff;
  min-width: 131px;
  height: 52px;
  border-radius: 4px;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  transition: background-color 500ms ease;
}

.search-hero-10 .search-wrap-2 button:hover {
  background-color: #222;
}

.search-hero-10 .search-wrap-2 button i {
  font-size: 23px;
  left: 0;
}

@media (max-width: 991.98px) {
  .header-hero-10 {
    z-index: 1000;
  }
  .hero-10 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .search-hero-10 .search-wrap-2 {
    margin: 15px auto 15px auto;
  }
  .navbar-hero-10 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-10 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-10 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-10 .nav-link:hover,
  .navbar-hero-10 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-10 .header-left-icon {
    left: 10px;
  }
  .header-hero-10 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-10 .navbar-wrap {
    overflow: hidden;
    height: 60px;
    padding-top: 10px;
  }
  .navbar-hero-10 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-10 .logo img, .navbar-hero-10.fixed-header .logo img {
    margin-top: -2px;
    height: 45px;
    margin-right: 15px;
  }
  .navbar-hero-10 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-10 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-10 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 36px;
    top: 10px;
  }
  .navbar-hero-10 .hero {
    position: relative;
    margin-top: -190px;
  }
  .header-hero-10 .img-header {
    height: 163px;
  }
  .navbar-hero-10 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-10 .navicons-wrap .btn-link .cart-count,
  .navbar-hero-10 .navicons-wrap .btn-link .bookmark-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-10 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-10 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-10 .menu .mwrap {
    top: 0;
  }
  .header-hero-10 .title {
    font-size: 30px;
  }
  .header-hero-10 .version {
    display: none;
  }
  .header-hero-10 .header-right-icon .btn-link {
    text-align: right;
    min-width: 110px;
  }
  .header-hero-10 .header-right-icon .btn-link span {
    font-size: 13px;
  }
  .search-hero-10 .search-wrap-2 button {
    min-width: 100px;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-10 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-10 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-10 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-10 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-11.hero {
  position: relative;
  margin-top: 0;
}

.hero-11.hero .hero-item:before {
  z-index: 0;
}

.hero-11.hero .hero-item {
  position: relative;
  z-index: 0;
}

.hero-11.hero .hero-item:after {
  z-index: 1;
}

.hero-11 .img-header {
  height: auto;
  width: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}

.hero-11 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-11 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-11 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-11 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-11 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-11 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-11 {
  position: relative;
  background-color: #fefefe;
  background-image: url(/img/demo/bg/20.webp);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  direction: rtl;
  border-bottom: none;
  height: 229px;
}

.header-hero-1:before {
  z-index: -2;
}

.header-hero-1:after {
  z-index: -1;
}

.header-hero-11 .info-header {
  position: relative;
  height: 54px;
  background-color: #262626;
  color: #fff;
  z-index: 10000;
}

.header-hero-11 .version {
  color: #444;
  position: absolute;
  left: 22px;
  top: 60px;
  font-size: 12px;
  letter-spacing: 1px;
}

.header-hero-11 .header-center {
  display: block;
}

.header-hero-11 .seperator {
  color: #eee;
}

.header-hero-11 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-11 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-11 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-11 .header-center:hover .title {
  color: transparent;
}

.header-hero-11 .header-center:hover .title i {
  color: #222;
}

.header-hero-11 .header-center .after-title {
  color: #999;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-11 .header-right-icon,
.header-hero-11 .header-left-icon {
  position: absolute;
  top: 12px;
  right: 15px;
  z-index: 1;
}

.header-hero-11 .header-left-icon {
  right: auto;
  left: 15px;
  top: 12px;
  direction: ltr;
}

.header-hero-11 .header-left-icon a span,
.header-hero-11 .header-right-icon .btn-link span {
  color: #f1f1f1;
  font-weight: 600;
  min-width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  font-size: 13px;
  letter-spacing: 0.09rem;
}

.header-hero-11 .header-left-icon a i {
  margin-right: 10px;
  margin-left: 3px;
  color: #ff4c3b;
}

.header-hero-11 .header-left-icon a:hover span,
.header-hero-11 .header-right-icon .btn-link:hover span {
  background: #fff;
  color: #000;
  border-radius: 4px;
}

.header-hero-11 .header-right-icon .btn-link {
  font-family: "KalamehWeb";
  position: relative;
  color: #f1f1f1;
  background-color: transparent;
  margin-left: 10px;
  letter-spacing: 0.03rem;
  font-weight: 500;
  padding: 0 5px 3px 5px;
  display: inline-block;
  min-width: 140px;
  transition: color 0.3s ease-in-out;
}

.header-hero-11 .header-right-icon .btn-link i {
  font-size: 20px;
  color: #f1f1f1;
}

.header-hero-11 .header-right-icon .btn-link span {
  padding: 0 5px 0 5px;
  letter-spacing: 1px;
}

.header-hero-11 .img-header {
  height: auto;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
}

.header-hero-11 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-11 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-11 .img-header .img-app {
  height: 100vh;
}

.header-hero-11 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-11 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-11 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-11 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-11 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-11 .title {
  font-size: 32pt;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-11 .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-11.navbar-light .navbar-nav .nav-link {
  color: #222;
  font-family: KalamehWeb;
  min-width: 80px;
}

.navbar-hero-11 .menu .nav-link:after {
  display: bobe;
}

.navbar-hero-11.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-11.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-11.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #f13d45;
  background: transparent;
  border-radius: 3px;
}

.navbar-hero-11 .navicons-wrap .btn-link {
  color: #333;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
  margin-right: 20px;
}

.navbar-hero-11 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-11 .navicons-wrap .btn-link .cart-count,
.navbar-hero-11 .navicons-wrap .btn-link .bookmark-count {
  position: absolute;
  top: -13px;
  right: -12px;
  width: 25px;
  height: 25px;
  background: rgba(234, 58, 63, 0.71);
  color: #fff;
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-11 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: color 200ms ease;
  font-size: 30px;
}

.navbar-hero-11 .navicons-wrap .btn-link i.icon-lock {
  font-size: 25px;
}

.navbar-hero-11 .navicons-wrap .btn-link i.icon-menu {
  top: 13px;
}

.navbar-hero-11 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-11 .navicons-wrap .btn-link:hover i {
  background: #fff;
  color: #eb3a3f;
}

.navbar-hero-11 .circle-logo {
  position: absolute;
  left: 10px;
  top: -2px;
  z-index: 100000;
}

.navbar-hero-11 .circle-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  /* اندازه دلخواه */
  height: 45px;
  /* اندازه دلخواه */
  border-radius: 50%;
  background-color: transparent;
  /* رنگ دلخواه */
  border: 1px solid transparent;
  transition: opacity 300ms ease-in-out;
  opacity: 0;
  color: #342516;
  font-size: 40px;
}

.navbar-hero-11.fixed-header .circle-logo a {
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

.navbar-hero-11.fixed-header .circle-logo a:hover {
  border-color: #000;
  background-color: #f56904;
}

.navbar-hero-11.fixed-header .circle-logo a i {
  transform: scale(1);
  transition: transform 200ms ease-in-out;
}

.navbar-hero-11.fixed-header .circle-logo a:hover i {
  transform: scale(0.7);
}

.hero-11 .header-default {
  position: relative;
}

.hero-11 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-11 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-11 {
  background: #fff;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #e9e9e9;
}

.navbar-hero-11.fixed-header:after {
  content: "";
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.4);
}

.navbar-hero-11 .navbar-wrap .logo-wrap {
  position: absolute;
  display: block;
  float: left;
  top: -190px;
  left: 50%;
  transform: translate(-50%, 0);
  overflow: hidden;
}

.navbar-hero-11 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-11 .logo {
  position: relative;
  display: inline-block;
}

.navbar-hero-11 .logo:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 146px;
  height: 176px;
  border: 1px solid white;
  box-sizing: border-box;
  border-top: none;
}

.navbar-hero-11 .logo img {
  display: block;
  margin: 0;
  height: 180px;
  padding: 0;
  width: 150px;
}

.navbar-hero-11 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-11 .navbar-nav {
  margin-top: -2px;
  direction: rtl;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.navbar-hero-11 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-11 .nav-link {
  font-weight: 300;
  margin-left: 5px;
  margin-right: 5px;
  letter-spacing: 0;
  font-size: 0.97rem;
}

.navbar-hero-11 .nav-item.nav-login {
  position: absolute;
  right: 0;
}

.navbar-hero-11 .nav-item.nav-login .nav-link {
  margin-bottom: -17px;
  color: #333;
}

.navbar-hero-11 .nav-item.nav-login .nav-link span {
  position: relative;
  bottom: 16px;
  right: 0px;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.navbar-hero-11 .nav-item.nav-login .nav-link i {
  position: relative;
  font-size: 39px;
  left: 4px;
  top: -7px;
}

.navbar-hero-11 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-11 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-11 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-11 .navbar-light .navbar-nav .show > .nav-link,
.navbar-hero-11 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-11 .menu ul li a:hover,
.navbar-hero-11 .menu ul li a:active,
.navbar-hero-11 .menu ul li a:focus {
  background-color: #eee;
  color: #1b1b1b;
}

.navbar-hero-11 .menu .mwrap {
  top: 50px;
  transition: top 500ms ease;
}

.navbar-hero-11.fixed-header .menu:hover > .mwrap {
  top: 50px;
}

.navbar-hero-11 .navbar-wrap {
  height: 45px;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  padding-top: 0px;
}

.navbar-hero-11 .navbar-wrap .menu-wrap {
  position: relative;
  left: auto;
  right: auto;
  top: 5px;
}

.navbar-hero-11 .navbar-wrap .navicons-wrap {
  position: absolute;
  top: 8px;
  display: block;
  direction: ltr;
  right: auto;
  left: 0;
  z-index: 100000;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

.search-hero-11 {
  border-bottom: 1px solid #ebebeb;
}

.search-hero-11 .search-wrap-2 {
  position: relative;
  display: block;
  margin: 25px auto 25px auto;
  max-width: 600px;
  width: 100%;
}

.search-hero-11 .search-wrap-2 input {
  background: #fbfbfb;
  display: inline-block;
  min-height: 54px;
  border-radius: 3px;
  padding: 15px 20px 10px 20px;
  direction: rtl;
  font-size: 14px;
  color: #a9a9a9;
  position: relative;
  max-width: 600px;
  width: 100%;
  letter-spacing: 1px;
  border: 1px solid #ddd;
}

.search-hero-11 .search-wrap-2 input:placeholder {
  color: #a9a9a9;
}

.search-hero-11 .search-wrap-2 button {
  position: absolute;
  top: 1px;
  left: 1px;
  background-color: #fb5d5c;
  color: #fff;
  min-width: 131px;
  height: 52px;
  border-radius: 4px;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  transition: background-color 500ms ease;
}

.search-hero-11 .search-wrap-2 button:hover {
  background-color: #222;
}

.search-hero-11 .search-wrap-2 button i {
  font-size: 23px;
  left: 0;
}

.hero-11 .hr {
  position: relative;
  height: 100px;
  width: 4px;
  margin: 30px auto 15px auto;
  background: #4c4c4c;
  text-align: center;
  z-index: 1;
}

.hero-11 header {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
}

.hero-11 header .before-title {
  font-family: "KalamehWeb";
  font-weight: 700;
  font-size: 21px;
  margin-top: 45px;
  direction: rtl;
  letter-spacing: 0.03rem;
  color: #db4924;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  height: 100px;
  height: 100px;
  width: 100px;
  padding-top: 38px;
  border: 1px solid #222;
}

.hero-11 header > .title {
  font-weight: 900;
  font-family: "KalamehWeb";
  font-size: 22px;
  color: #3d3d3d;
  margin-bottom: 15px;
  display: inline-block;
  cursor: help;
  position: relative;
  z-index: 2;
}

.hero-11 header .description {
  font-size: 15px;
  font-family: "iransans";
  direction: rtl;
  max-width: 700px;
  margin: 0 auto;
  line-height: 20px;
  color: #000;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.hero-11 header .description span {
  color: #db4924;
}

.hero-11 .hr:before {
  content: "";
  width: 10px;
  height: 20px;
  background: inherit;
  display: inline-block;
  text-align: center;
  left: -3px;
  position: absolute;
  bottom: 0;
}

.hero-11 canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
.hero-11 #particles-js {
  position: relative;
  width: 100%;
  min-height: 800px;
  /* background-color: #f4f4f4;
  background-image: url("https://www.todopaisajes.com/1366x768/estrella-en-el-espacio.jpg"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  padding-top: 50px;
  margin-top: 0;
  z-index: 1;
}

.hero-11 .body {
  margin-top: 45px;
  overflow: hidden;
}

.hero-11 .body a .circle {
  position: relative;
  width: 50px;
  height: 50px;
  border: 2px solid #4c4c4c;
  display: inline-block;
  border-radius: 50%;
  font-family: "iransansNum";
  font-size: 20px;
  padding: 12px 0 0 0;
  color: #db4924;
  font-weight: 700;
  background-color: white;
  z-index: 2;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}

.hero-11 .body .circle:after {
  content: "";
  width: 2px;
  height: 30px;
  background: #4c4c4c;
  display: inline-block;
  text-align: center;
  position: absolute;
  bottom: -60px;
  left: 22px;
}

.hero-11 .body a .title:before {
  content: "[";
  position: relative;
  left: 5px;
  transition: left 300ms ease;
}

.hero-11 .body a .title {
  color: #000;
  font-weight: 500;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  font-family: "KalamehWeb";
  font-size: 14px;
}

.hero-11 .body a .title:after {
  content: "]";
  position: relative;
  right: 5px;
  transition: right 300ms ease;
}

.hero-11 .body a:hover .title:before {
  left: 10px;
}

.hero-11 .body a:hover .title:after {
  right: 10px;
}

.hero-11 .more {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-11 .more a {
  margin: 35px 0 0 0;
  min-width: 140px;
  border-radius: 2px;
}

@media (max-width: 991.98px) {
  .header-hero-11 {
    z-index: 1000;
  }
  .hero-11 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .search-hero-11 .search-wrap-2 {
    margin: 15px auto 15px auto;
  }
  .navbar-hero-11 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-11 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-11 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-11 .nav-link:hover,
  .navbar-hero-11 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-11 .header-left-icon {
    left: 10px;
  }
  .header-hero-11 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-11 .navbar-wrap {
    overflow: hidden;
    height: 60px;
    padding-top: 10px;
  }
  .navbar-hero-11 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-11 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-11 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-11 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 36px;
    top: 10px;
  }
  .navbar-hero-11 .hero {
    position: relative;
    margin-top: -190px;
  }
  .header-hero-11 .img-header {
    height: 163px;
  }
  .navbar-hero-11 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-11 .navicons-wrap .btn-link .cart-count,
  .navbar-hero-11 .navicons-wrap .btn-link .bookmark-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-11 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-11 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-11 .menu .mwrap {
    top: 0;
  }
  .header-hero-11 .title {
    font-size: 30px;
  }
  .header-hero-11 .version {
    display: none;
  }
  .header-hero-11 .header-right-icon .btn-link {
    text-align: right;
    min-width: 110px;
  }
  .search-hero-11 .search-wrap-2 button {
    min-width: 100px;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-11 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-11 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-11 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-11 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-12.hero {
  position: relative;
  margin-top: 0;
}

.hero-12.hero .hero-item:before {
  z-index: 0;
}

.hero-12.hero .hero-item {
  position: relative;
  z-index: 0;
}

.hero-12.hero .hero-item:after {
  z-index: 1;
}

.hero-12 .img-header {
  height: auto;
  width: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}

.hero-12 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-12 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-12 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-12 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-12 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-12 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-12 {
  position: relative;
  text-align: center;
  direction: rtl;
  border-bottom: none;
}

.header-hero-12:before {
  z-index: -2;
}

.header-hero-12:after {
  z-index: -1;
}

.header-hero-12 .info-header {
  position: relative;
  height: 54px;
  background-color: #eee;
  color: #333;
  z-index: 10000;
}

.header-hero-12 .version {
  color: #444;
  position: absolute;
  left: 22px;
  top: 60px;
  font-size: 12px;
  letter-spacing: 1px;
}

.header-hero-12 .header-center {
  display: block;
}

.header-hero-12 .seperator {
  color: #333;
}

.header-hero-12 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-12 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-12 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-12 .header-center:hover .title {
  color: transparent;
}

.header-hero-12 .header-center:hover .title i {
  color: #222;
}

.header-hero-12 .header-center .after-title {
  color: #999;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-12 .header-right-icon,
.header-hero-12 .header-left-icon {
  position: absolute;
  top: 9px;
  right: 15px;
  z-index: 1;
}

.header-hero-12 .header-left-icon {
  right: auto;
  left: 15px;
  top: 12px;
  direction: ltr;
}

.header-hero-12 .header-left-icon a span,
.header-hero-12 .header-right-icon .btn-link span {
  color: #555;
  font-weight: 600;
  min-width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  font-size: 13px;
  letter-spacing: 0.09rem;
}

.header-hero-12 .header-left-icon a i {
  margin-right: 10px;
  margin-left: 3px;
  color: #ff4c3b;
}

.header-hero-12 .header-left-icon a:hover span,
.header-hero-12 .header-right-icon .btn-link:hover span {
  color: #ff4c3b;
}

.header-hero-12 .header-right-icon .btn-link {
  font-family: "KalamehWeb";
  position: relative;
  color: #333;
  background-color: transparent;
  margin-left: 10px;
  letter-spacing: 0.03rem;
  font-weight: 500;
  padding: 0 5px 3px 5px;
  display: inline-block;
  min-width: 140px;
  transition: color 0.3s ease-in-out;
}

.header-hero-12 .header-right-icon .btn-link i {
  font-size: 20px;
  color: #333;
}

.header-hero-12 .header-right-icon .btn-link span {
  padding: 0 5px 0 5px;
  letter-spacing: 0.05rem;
}

.header-hero-12 .img-header {
  height: auto;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
}

.header-hero-12 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-12 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-12 .img-header .img-app {
  height: 100vh;
}

.header-hero-12 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-12 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-12 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-12 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-12 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-12 .title {
  font-size: 32pt;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-12 .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-12.navbar-light .navbar-nav .nav-link {
  color: #222;
  font-family: KalamehWeb;
  min-width: 80px;
}

.navbar-hero-12.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-12.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-12.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #f13d45;
  background: transparent;
  border-radius: 3px;
}

.navbar-hero-12 .navicons-wrap .btn-link {
  position: relative;
  color: #333;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
  margin-right: 20px;
}

.navbar-hero-12 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-12 .navicons-wrap .btn-link .cart-count,
.navbar-hero-12 .navicons-wrap .btn-link .bookmark-count {
  position: absolute;
  top: -13px;
  right: -12px;
  width: 25px;
  height: 25px;
  background: rgba(234, 58, 63, 0.71);
  color: #fff;
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-12 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: color 200ms ease;
  font-size: 30px;
}

.navbar-hero-12 .navicons-wrap .btn-link i.icon-lock {
  font-size: 25px;
}

.navbar-hero-12 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-12 .navicons-wrap .btn-link:hover i {
  background: #fff;
  color: #eb3a3f;
}

.navbar-hero-12 .circle-logo {
  position: absolute;
  left: 10px;
  top: -2px;
  z-index: 100000;
}

.navbar-hero-12 .circle-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  /* اندازه دلخواه */
  height: 45px;
  /* اندازه دلخواه */
  border-radius: 50%;
  background-color: transparent;
  /* رنگ دلخواه */
  border: 1px solid transparent;
  transition: opacity 300ms ease-in-out;
  opacity: 0;
  color: #342516;
  font-size: 40px;
}

.navbar-hero-12.fixed-header .circle-logo a {
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

.navbar-hero-12.fixed-header .circle-logo a:hover {
  border-color: #000;
  background-color: #f56904;
}

.navbar-hero-12.fixed-header .circle-logo a i {
  transform: scale(1);
  transition: transform 200ms ease-in-out;
}

.navbar-hero-12.fixed-header .circle-logo a:hover i {
  transform: scale(0.7);
}

.hero-12 .header-default {
  position: relative;
}

.hero-12 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-12 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-12:before {
  content: "";
  background-image: url(/img/demo/patterns/13.webp);
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.3;
}

.navbar-hero-12 {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
}

.navbar-hero-12.fixed-header:after {
  content: "";
  box-shadow: -4px 1px 28px 6px rgba(0, 0, 0, 0.4);
}

.navbar-hero-12 .navbar-wrap .logo-wrap {
  position: absolute;
  display: block;
  top: 22px;
  right: 0;
}

.navbar-hero-12 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-12 .logo {
  position: relative;
  display: inline-block;
}

.navbar-hero-12 .logo img {
  display: block;
  margin: 0;
  height: auto;
  padding: 0;
  width: 170px;
}

.navbar-hero-12 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-12 .navbar-nav {
  margin-top: -2px;
  direction: rtl;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.navbar-hero-12 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-12 .nav-link {
  font-weight: 300;
  margin-left: 5px;
  margin-right: 5px;
  letter-spacing: 0;
  font-size: 0.9rem;
}

.navbar-hero-12 .nav-item.nav-login .nav-link {
  color: #333;
}

.navbar-hero-12 .nav-item.nav-login .nav-link span {
  position: relative;
  right: 0px;
  letter-spacing: 1px;
}

.navbar-hero-12 .nav-item.nav-login .nav-link i {
  position: relative;
  font-size: 20px;
  left: 4px;
  top: 0;
}

.navbar-hero-12 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-12 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-12 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-12 .navbar-light .navbar-nav .show > .nav-link,
.navbar-hero-12 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-12 .menu ul li a:hover,
.navbar-hero-12 .menu ul li a:active,
.navbar-hero-12 .menu ul li a:focus {
  background-color: #eee;
  color: #1b1b1b !important;
}

.navbar-hero-12 .menu .mwrap {
  top: 50px;
  transition: top 500ms ease;
}

.navbar-hero-12.fixed-header .menu:hover > .mwrap {
  top: 50px;
}

.navbar-hero-12 .navbar-wrap {
  height: 100px;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  padding-top: 0px;
}

.navbar-hero-12 .navbar-wrap .menu-wrap {
  position: relative;
  left: auto;
  right: auto;
  top: 28px;
}

.navbar-hero-12 .navbar-wrap .navicons-wrap {
  position: absolute;
  top: 32px;
  display: block;
  direction: ltr;
  left: 0;
  right: auto;
  z-index: 100000;
}

.navbar-hero-12 .filter-wrap {
  position: relative;
  width: 100%;
  padding: 42px 0 35px;
  border-top: 1px solid #eeeeee;
}

.navbar-hero-12 .filter-wrap .search-wrap-2 {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
}

.navbar-hero-12 .filter-wrap .search-wrap-2 input {
  background: #eeeeee;
  display: inline-block;
  min-height: 54px;
  border-radius: 3px;
  padding: 15px 20px 10px 20px;
  margin: 0 0 0 10px;
  direction: rtl;
  font-size: 14px;
  color: #a9a9a9;
  position: relative;
  max-width: 700px;
  width: 100%;
  letter-spacing: 1px;
}

.navbar-hero-12 .filter-wrap .search-wrap-2 button {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: transparent;
  color: #444;
  width: 52px;
  height: 52px;
  border-radius: 4px;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  transition: background-color 500ms ease;
}

.navbar-hero-12 .filter-wrap .search-wrap-2 button i {
  position: relative;
  font-size: 23px;
  left: 3px;
  top: 5px;
  color: inherit;
  transition: color 200ms ease-out;
}

.navbar-hero-12 .filter-wrap .search-wrap-2 button:hover i {
  color: #ab2024;
}

.navbar-hero-12 .filter-wrap .geo-btn {
  text-align: right;
}

.navbar-hero-12 .filter-wrap .reg-btn {
  text-align: center;
}

.navbar-hero-12 .filter-wrap .geo-btn button {
  min-width: 120px;
  text-align: right;
}

.navbar-hero-12 .filter-wrap .geo-btn button i {
  font-size: 44px;
  color: #696a75;
  position: relative;
  top: 4px;
  transition: color 0.2s ease-in-out;
}

.navbar-hero-12 .filter-wrap .geo-btn button:hover i {
  color: #d1342e;
}

.navbar-hero-12 .filter-wrap .geo-btn button span {
  position: relative;
  color: #fff;
  background-color: #696a75;
  padding: 2px 10px 2px 10px;
  border-radius: 3px;
  font-size: 14px;
  top: -6px;
  right: 2px;
}

.navbar-hero-12 .filter-wrap .btn-red {
  min-height: 54px;
  border-radius: 2px;
  background-color: #f5443d;
  color: #fff;
  font-size: 14px;
  min-width: 100px;
  line-height: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100px;
  text-align: center;
  transform: background-color 300ms ease;
}

.navbar-hero-12 .filter-wrap .btn-red:hover {
  background-color: #d1342e;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

.search-hero-12 {
  border-bottom: 1px solid #ebebeb;
}

.search-hero-12 .search-wrap-2 {
  position: relative;
  display: block;
  margin: 25px auto 25px auto;
  max-width: 600px;
  width: 100%;
}

.search-hero-12 .search-wrap-2 input {
  background: #fbfbfb;
  display: inline-block;
  min-height: 54px;
  border-radius: 3px;
  padding: 15px 20px 10px 20px;
  direction: rtl;
  font-size: 14px;
  color: #a9a9a9;
  position: relative;
  max-width: 600px;
  width: 100%;
  letter-spacing: 1px;
  border: 1px solid #ddd;
}

.search-hero-12 .search-wrap-2 input:placeholder {
  color: #a9a9a9;
}

.search-hero-12 .search-wrap-2 button {
  position: absolute;
  top: 1px;
  left: 1px;
  background-color: #fb5d5c;
  color: #fff;
  min-width: 131px;
  height: 52px;
  border-radius: 4px;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  transition: background-color 500ms ease;
}

.search-hero-12 .search-wrap-2 button:hover {
  background-color: #222;
}

.search-hero-12 .search-wrap-2 button i {
  font-size: 23px;
  left: 0;
}

.hero-12 .hr {
  position: relative;
  height: 100px;
  width: 4px;
  margin: 70px auto 15px auto;
  background: #4c4c4c;
  text-align: center;
  z-index: 1;
}

.hero-12 header {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
}

.hero-12 header > .title {
  font-weight: 700;
  font-family: "KalamehWeb";
  font-size: 18px;
  color: #000;
  margin-bottom: 15px;
  display: inline-block;
  cursor: help;
  position: relative;
  z-index: 1;
}

.hero-12 header .description {
  font-size: 15px;
  font-family: "iransans";
  direction: rtl;
  max-width: 700px;
  margin: 0 auto;
  line-height: 30px;
  color: #000;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.hero-12 header .description span {
  color: #db4924;
}

.hero-12 .hr:before {
  content: "";
  width: 10px;
  height: 20px;
  background: inherit;
  display: inline-block;
  text-align: center;
  left: -3px;
  position: absolute;
  bottom: 0;
}

.hero-12 canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
.hero-12 #particles-js {
  position: relative;
  width: 100%;
  min-height: 750px;
  /* background-color: #f4f4f4;
  background-image: url("https://www.todopaisajes.com/1366x768/estrella-en-el-espacio.jpg"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  margin-top: 0;
  z-index: 1;
}

.hero-12 .body {
  margin-top: 50px;
  overflow: hidden;
}

.hero-12 .body a .circle {
  position: relative;
  width: 50px;
  height: 50px;
  border: 2px solid #4c4c4c;
  display: inline-block;
  border-radius: 50%;
  font-family: "iransansNum";
  font-size: 20px;
  padding: 12px 0 0 0;
  color: #db4924;
  font-weight: 700;
  background-color: white;
  z-index: 2;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}

.hero-12 .body .circle:after {
  content: "";
  width: 2px;
  height: 30px;
  background: #4c4c4c;
  display: inline-block;
  text-align: center;
  position: absolute;
  bottom: -52px;
  left: 22px;
}

.hero-12 .body a .title:before {
  content: "[";
  position: relative;
  left: 5px;
  transition: left 300ms ease;
}

.hero-12 .body a .title {
  color: #000;
  font-weight: 500;
  margin-top: 75px;
  position: relative;
  z-index: 2;
  font-family: "KalamehWeb";
  font-size: 14px;
}

.hero-12 .body a .title:after {
  content: "]";
  position: relative;
  right: 5px;
  transition: right 300ms ease;
}

.hero-12 .body a:hover .title:before {
  left: 10px;
}

.hero-12 .body a:hover .title:after {
  right: 10px;
}

.hero-12 .more {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-12 .more a {
  margin: 45px 0 0 0;
}

@media (max-width: 991.98px) {
  .header-hero-12 {
    z-index: 1000;
  }
  .hero-12 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .search-hero-12 .search-wrap-2 {
    margin: 15px auto 15px auto;
  }
  .navbar-hero-12 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
    direction: rtl;
    text-align: right;
    align-items: normal;
  }
  .navbar-hero-12 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-12 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-12 .nav-link:hover,
  .navbar-hero-12 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-12 .header-left-icon {
    left: 10px;
  }
  .header-hero-12 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-12 .navbar-wrap {
    overflow: hidden;
    height: 60px;
    padding-top: 10px;
  }
  .navbar-hero-12 .navbar-wrap .logo-wrap {
    top: 10px;
    right: 0px;
  }
  .navbar-hero-12 .filter-wrap .search-wrap-2 input {
    margin: 0;
    padding: 13px 10px 10px 20px;
    letter-spacing: 0.01rem;
    font-size: 0.87rem;
  }
  .navbar-hero-12 .logo img {
    width: 130px;
  }
  .navbar-hero-12 .filter-wrap .search-wrap-2 button i {
    left: 0;
  }
  .navbar-hero-12 .filter-wrap {
    padding: 25px 0 15px;
  }
  .navbar-hero-12 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-12 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 27px;
    margin-left: 5px;
  }
  .navbar-hero-12 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: 3px;
    right: auto;
    left: 7px;
    direction: rtl;
  }
  .navbar-hero-12 .navicons-wrap .btn-link {
    min-width: 36px;
    top: 10px;
  }
  .navbar-hero-12 .navicons-wrap .btn-link i {
    top: 0;
  }
  .navbar-hero-12 .hero {
    position: relative;
    margin-top: -190px;
  }
  .header-hero-12 .img-header {
    height: 163px;
  }
  .navbar-hero-12 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-12 .navicons-wrap .btn-link .cart-count,
  .navbar-hero-12 .navicons-wrap .btn-link .bookmark-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .navbar-hero-12 .filter-wrap .geo-btn {
    text-align: center;
    position: relative;
    top: -20px;
  }
  .header-hero-12 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-12 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-12 li.menu {
    min-height: 35px;
  }
  .navbar-hero-12 .menu .mwrap {
    top: 0;
    margin-top: 0px;
  }
  .header-hero-12 .title {
    font-size: 30px;
  }
  .header-hero-12 .version {
    display: none;
  }
  .header-hero-12 .header-right-icon .btn-link {
    text-align: right;
    min-width: 110px;
  }
  .search-hero-12 .search-wrap-2 button {
    min-width: 100px;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-12 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-12 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-12 .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-12 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.hero-14.hero {
  position: relative;
  margin-top: -180px;
}

.hero-14 .img-header {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  z-index: -1;
}

.hero-14.hero .img-header {
  height: 100vh;
}

.hero-14 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  width: 100%;
  height: 100vh;
  /* opacity: .3; */
}

.hero-14 .img-header .img-app {
  -o-object-fit: cover;
  object-fit: cover;
  height: 125px;
  width: 100%;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
  animation: breath 8s ease-in-out alternate infinite;
}

.hero-14.hero .img-header .img-app {
  height: 100vh;
}

.hero-14 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.hero-14 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.hero-14 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-14 .header-wrapper {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: calc(50% + 170px);
  bottom: auto;
  transform: translateY(calc(-50% - 104px));
}

.hero-14 .has-bg {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 100%);
  display: inline-block;
  padding: 25px 100px 10px 100px;
}

.header-hero-14 {
  position: relative;
  text-align: center;
  direction: rtl;
  height: 50px;
  background-color: #fff;
  color: #777;
  z-index: 10000;
  border-bottom: 1px solid #ebebeb;
}

.header-hero-14 .version {
  color: #fff;
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 12px;
}

.header-hero-14 .header-center {
  display: block;
}

.header-hero-14 .seperator {
  color: #eee;
}

.header-hero-14 .header-center .title {
  background-color: #ffa31a;
  background: radial-gradient(circle, rgb(255, 163, 26) 0%, rgb(255, 163, 26) 35%, rgb(205, 123, 0) 100%);
  border: 0.15rem solid #000;
  box-shadow: 0 0 0 0.15rem #ffa31a;
  border-radius: 4px;
  color: #1b1b1b;
  display: inline-block;
  font-size: 37px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-14 .header-center .title span {
  font-family: KalamehWeb, tahoma;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: 2px;
}

.header-hero-14 .header-center .title i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  transform: translate(-50%, -50%);
  transition: color 2000ms;
}

.header-hero-14 .header-center:hover .title {
  color: transparent;
}

.header-hero-14 .header-center:hover .title i {
  color: #222;
}

.header-hero-14 .header-center .after-title {
  color: #999;
  display: block;
  font-family: KalamehWeb, tahoma;
  font-size: 0.88rem;
  font-weight: 600;
  height: 30px;
  line-height: 26px;
  margin-bottom: auto;
  margin-top: -2px;
  position: relative;
  z-index: 1050;
  transition: color 2000ms;
}

.header-hero-14 .header-right-icon, .header-hero-14 .header-left-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1;
}

.header-hero-14 .header-left-icon {
  right: auto;
  left: 15px;
  top: 10px;
  direction: ltr;
}

.header-hero-14 .header-left-icon a span {
  color: #333;
  font-weight: 600;
  min-width: 28px;
  display: inline-block;
  height: 28px;
  line-height: 32px;
  border-radius: 2px;
  background: transparent;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  font-size: 13px;
  letter-spacing: 0.09rem;
}

.header-hero-14 .header-left-icon a i {
  margin-right: 10px;
  margin-left: 3px;
  color: #ff4c3b;
}

.header-hero-14 .header-left-icon a:hover span {
  background: #eb3a3f;
  color: #fff;
  border-radius: 4px;
}

.header-hero-14 .header-right-icon .btn-link {
  font-family: "KalamehWeb";
  position: relative;
  color: #333;
  background-color: transparent;
  margin-left: 10px;
  letter-spacing: 0.03rem;
  font-weight: 500;
  padding: 0 5px 3px 5px;
  display: inline-block;
  min-width: 140px;
  transition: color 0.3s ease-in-out;
}

.header-hero-14 .header-right-icon .btn-link:hover {
  color: #b7b7b7;
}

.header-hero-14 .header-right-icon .btn-link i {
  font-size: 20px;
  color: #f2565d;
}

.header-hero-14 .header-right-icon .btn-link span {
  font-size: 14px;
  font-weight: 500;
}

.header-hero-14 .header-right-icon .btn-link:hover a {
  color: #ff4c3b;
}

.header-hero-14 .img-header {
  height: 180px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
}

.header-hero-14 .img-header::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  height: 180px;
  width: 100%;
  top: 0;
}

.header-hero-14 .img-header .img-app {
  position: relative;
  animation: breath 8s ease-in-out infinite alternate;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100vh;
  width: 100%;
}

.header-hero-14 .img-header .img-app {
  height: 100vh;
}

.header-hero-14 .img-header .img-app-top {
  -o-object-position: top left;
     object-position: top left;
}

.header-hero-14 .img-header .img-app-bottom {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.header-hero-14 .img-header .img-app-center {
  -o-object-position: center left;
     object-position: center left;
}

.hero-14 .background-animated {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #4277a3;
  background-image: url("/img/demo/bg/13.webp");
  animation: infiniteScrollBg 35s linear infinite;
}

.hero-14 .userpic img {
  border-radius: 5px;
  filter: grayscale(0);
  height: auto;
  margin-bottom: 15px;
  margin-top: 30px;
  max-width: 75px;
  transition: filter 0.6s ease;
}

.hero-14 .title {
  font-size: 32pt;
  letter-spacing: 0pt;
  line-height: 53pt;
  text-transform: uppercase;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: rtl;
  color: #fff;
}

.hero-14 .after-title {
  font-family: KalamehWeb;
  font-size: 22px;
  margin-top: 0px;
  direction: rtl;
  color: #fff;
}

.navbar-hero-14.navbar-light .navbar-nav .nav-link {
  color: #222;
  font-family: KalamehWeb;
  min-width: 100px;
  font-weight: 500;
}

.navbar-hero-14.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-hero-14.navbar-light .navbar-nav .nav-item:focus .nav-link,
.navbar-hero-14.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #f13d45;
  background: transparent;
  border-radius: 3px;
  font-weight: 500;
}

.navbar-hero-14 .navicons-wrap .btn-link {
  color: #333;
  font-weight: 700;
  font-family: "KALAMEHWEB";
  width: 30px;
  height: 28px;
  margin-left: 23px;
}

.navbar-hero-14 .navicons-wrap .btn-link span {
  position: relative;
  line-height: 32px;
  display: inline-block;
  margin-top: -1px;
}

.navbar-hero-14 .navicons-wrap .btn-link .cart-count,
.navbar-hero-14 .navicons-wrap .btn-link .bookmark-count {
  position: absolute;
  top: -13px;
  right: -12px;
  width: 25px;
  height: 25px;
  background: rgba(234, 58, 63, 0.71);
  color: #fff;
  text-align: center;
  padding-top: 6px;
  font-family: "iransansNum";
  border-radius: 50%;
  font-size: 12px;
  line-height: 17px;
}

.navbar-hero-14 .navicons-wrap .btn-link i {
  height: 30px;
  line-height: 32px;
  width: 30px;
  position: relative;
  top: -1px;
  line-height: 31px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 200ms ease;
  font-size: 30px;
}

.navbar-hero-14 .navicons-wrap .btn-link i.icon-lock {
  font-size: 25px;
}

.navbar-hero-14 .navicons-wrap .btn-link i.icon-menu {
  top: 13px;
}

.navbar-hero-14 .navicons-wrap .btn-link:hover span {
  color: #fff;
  background: #000;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}

.navbar-hero-14 .navicons-wrap .btn-link:hover i {
  background: #fff;
  color: #eb3a3f;
}

.navbar-hero-14 .navbar-wrap .support-wrap {
  position: absolute;
  top: 5px;
  left: 0;
  right: auto;
  width: 150px;
  overflow: hidden;
}

.navbar-hero-14 .navbar-wrap .support-wrap i {
  color: #fb5d5c;
  position: absolute;
  left: 0px;
  font-size: 35px;
  top: 3px;
}

.navbar-hero-14 .navbar-wrap .support-wrap .text {
  color: #999;
  font-weight: 500;
  text-align: center;
  display: block;
  margin-bottom: 3px;
  margin-left: 80px;
}

.navbar-hero-14 .navbar-wrap .support-wrap .phone {
  font-family: "iransansNum";
  color: #222;
  font-weight: 600;
  text-align: center;
  display: block;
  margin-left: 42px;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.hero-14 .header-default {
  position: relative;
}

.hero-14 .header-default .header-btn {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 100%;
}

.hero-14 .header-default .dropdown-plus {
  max-width: 180px;
}

.navbar-hero-14 {
  background: #fdfdfd;
  border-bottom: 1px solid #dddddd;
  box-shadow: 0px 5px 4px 0px rgba(197, 197, 197, 0.07);
}

.navbar-hero-14 .logo img {
  transition: all linear 0.5s;
  margin-right: 15px;
  margin-top: 0px;
  height: 95px;
}

.navbar-hero-14 .dotlogo {
  position: relative;
  color: #ff3916;
  font-size: 46px;
  line-height: 10px;
  left: -2px;
}

.navbar-hero-14 .navbar-nav {
  margin-top: 4px;
  direction: rtl;
  text-align: right;
}

.navbar-hero-14 .navbar-light .navbar-nav .nav-link {
  color: #363636;
}

.navbar-hero-14 .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 10px;
  color: #1b1b1b;
  letter-spacing: 0;
  font-size: 15px;
}

.navbar-hero-14 .nav-link.nav-login i {
  position: relative;
}

.navbar-hero-14 .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-hero-14 .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-hero-14 .navbar-toggler:hover i {
  background-color: #000;
  color: #fff;
}

.navbar-hero-14 .navbar-light .navbar-nav .show > .nav-link, .navbar-hero-14 .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 10, 56, 0.9);
}

.navbar-hero-14 .menu ul li a:hover,
.navbar-hero-14 .menu ul li a:active,
.navbar-hero-14 .menu ul li a:focus {
  background-color: #eee;
  color: #1b1b1b;
}

.navbar-hero-14 .menu .mwrap {
  top: 56px;
  transition: top 500ms ease;
}

.navbar-hero-14.fixed-header .menu:hover > .mwrap {
  top: 56px;
}

.navbar-hero-14 .navbar-wrap {
  height: 55px;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  padding-top: 0px;
}

.navbar-hero-14 .navbar-wrap .logo-wrap {
  position: absolute;
  display: block;
  float: left;
  top: -134px;
  left: -32px;
}

.navbar-hero-14 .navbar-wrap .logo-wrap .text-logo {
  color: #000;
  font-size: 32px;
  font-family: KalamehWeb;
  font-weight: 900;
  direction: ltr;
  border-radius: 5px;
  padding: 3px 0px 0px 15px;
  margin: 0px 10px 0px 0px;
  DIRECTION: LTR;
  line-height: 53px;
  position: relative;
  top: 5px;
  text-transform: uppercase;
}

.navbar-hero-14 .navbar-wrap .menu-wrap {
  float: right;
  right: 2px;
  position: relative;
  top: 3px;
}

.navbar-hero-14 .navbar-wrap .navicons-wrap {
  position: absolute;
  top: -101px;
  display: block;
  direction: ltr;
  right: 0;
  left: auto;
}

.service-scroll {
  position: relative;
  top: -40px;
  height: 0px;
}

.search-hero-14 {
  border-bottom: 1px solid #ebebeb;
}

.search-hero-14 .search-wrap-2 {
  position: relative;
  display: block;
  margin: 45px auto 45px auto;
  max-width: 600px;
  width: 100%;
}

.search-hero-14 .search-wrap-2 input {
  background: #fbfbfb;
  display: inline-block;
  min-height: 54px;
  border-radius: 3px;
  padding: 15px 20px 10px 20px;
  direction: rtl;
  font-size: 14px;
  color: #a9a9a9;
  position: relative;
  max-width: 600px;
  width: 100%;
  letter-spacing: 1px;
  border: 1px solid #ddd;
}

.search-hero-14 .search-wrap-2 input:placeholder {
  color: #a9a9a9;
}

.search-hero-14 .search-wrap-2 button {
  position: absolute;
  top: 1px;
  left: 1px;
  right: auto;
  background-color: #fb5d5c;
  color: #fff;
  min-width: 55px;
  height: 52px;
  border-radius: 4px;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  transition: background-color 500ms ease;
}

.search-hero-14 .search-wrap-2 button:hover {
  background-color: #222;
}

.search-hero-14 .search-wrap-2 button i {
  font-size: 23px;
  left: 0;
}

@media (max-width: 991.98px) {
  .header-hero-14 {
    z-index: 1000;
  }
  .hero-14 .is-expanded .side-drawer-right {
    overflow-y: scroll;
  }
  .search-hero-14 .search-wrap-2 {
    margin: 15px auto 15px auto;
  }
  .navbar-hero-14 .navbar-nav {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-hero-14 .nav-item {
    margin-top: 2px;
  }
  .navbar-hero-14 .navbar-nav .nav-link {
    color: #8a8a8a !important;
    font-size: 0.85rem !important;
    padding: 3px 15px 3px 10px;
    border-bottom: solid 2px transparent;
    width: 100%;
    padding: 10px 15px 5px 10px;
  }
  .navbar-hero-14 .nav-link:hover,
  .navbar-hero-14 .navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 700;
  }
  .header-hero-14 .header-left-icon {
    left: 10px;
  }
  .header-hero-14 .header-right-icon {
    right: 10px;
  }
  .navbar-hero-14 .navbar-wrap {
    overflow: hidden;
    height: 60px;
    padding-top: 10px;
  }
  .navbar-hero-14 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 5px;
    left: -12px;
    right: auto;
    line-height: unset;
    font-weight: 700;
  }
  .navbar-hero-14 .logo img {
    margin-top: -2px;
    height: 45px;
    margin-right: 15px;
  }
  .navbar-hero-14 .navbar-wrap .menu-wrap {
    float: right;
    right: 0px;
    left: auto;
    top: 3px;
    margin-left: 5px;
  }
  .navbar-hero-14 .navbar-wrap .navicons-wrap {
    display: block;
    float: right;
    top: -1px;
    right: 2px;
    left: auto;
  }
  .navbar-hero-14 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 31px;
    top: 10px;
    margin-left: 16px;
  }
  .navbar-hero-14 .navicons-wrap .btn-link i {
    font-size: 26px;
  }
  .navbar-hero-14 .navbar-wrap .navicons-wrap .btn-link i.icon-chat-square {
    top: 10px;
  }
  .navbar-hero-14 .navbar-wrap .support-wrap i {
    top: 12px;
    font-size: 29px;
    left: 3px;
  }
  .navbar-hero-14 .hero {
    position: relative;
    margin-top: -190px;
  }
  .header-hero-14 .img-header {
    height: 163px;
  }
  .navbar-hero-14 .header-wrapper {
    top: calc(50% + 172px);
    transform: translateY(calc(-50% - 110px));
  }
  .navbar-hero-14 .navicons-wrap .btn-link .cart-count,
  .navbar-hero-14 .navicons-wrap .btn-link .bookmark-count {
    top: -4px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: rgba(252, 119, 120, 0.7803921569);
    text-align: center;
    padding-top: 3px;
    font-family: "iransansNum";
    border-radius: 50%;
    font-size: 11px;
    line-height: 17px;
    z-index: 1000;
  }
  .header-hero-14 .after-title {
    height: 25px;
    font-size: 0.75rem;
  }
  .header-hero-14 .navbar {
    border-top: 1px solid #ebebeb;
  }
  .navbar-hero-14 .menu .mwrap {
    top: 0;
  }
  .header-hero-14 .title {
    font-size: 30px;
  }
  .header-hero-14 .version {
    display: none;
  }
  .header-hero-14 .header-right-icon .btn-link {
    text-align: right;
    min-width: 110px;
  }
  .header-hero-14 .header-right-icon .btn-link span {
    font-size: 13px;
  }
  .search-hero-14 .search-wrap-2 button {
    min-width: 100px;
  }
}
@media only screen and (max-width: 380px) {
  .navbar-hero-14 .navicons-wrap .btn-link {
    width: 25px;
    height: 25px;
    min-width: auto;
  }
  .navbar-hero-14 .navbar-wrap .logo-wrap .text-logo {
    font-size: 21px;
    top: 7px;
    left: 0px;
  }
  .navbar-hero-14 .navbar-wrap .navicons-wrap .btn-link {
    min-width: 25px;
  }
  .header-hero-14 .header-left-icon a {
    display: block;
  }
}
@keyframes infiniteScrollBg {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% -808px;
  }
}
.modal-selection-1-1 .btn-filter-wrap {
  direction: rtl;
  margin: 0px 30px 5px 30px;
  overflow-x: auto;
  white-space: nowrap;
}

.modal-selection-1-1 .btn-filter {
  display: inline-block;
  border: 1px solid #999;
  margin: 0 0 14px 5px;
  border-radius: 20px;
  background-color: #fff;
  color: #333;
  padding: 0px 15px 2px 15px;
}

.modal-selection-1-1 .btn-select {
  font-size: 12px;
  padding: 3px 10px 0 10px;
}

.modal-selection-1-1 .btn-filter span {
  display: inline-block;
  font-size: 13px;
  position: relative;
  top: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
  height: 26px;
}

.modal-selection-1-1 .btn-filter.active {
  border-color: #ab2024;
  background-color: #ffdcdd;
  color: #ab2024;
}

.modal-selection-1-1 .btn-filter label {
  position: relative;
  float: left;
  left: -10px;
  top: 2px;
  font-size: 21px;
  margin-right: 0px;
  cursor: pointer;
  height: 27px;
}

.modal-selection-1-1 .btn-filter label i {
  position: relative;
  top: 0px;
  left: 0;
  right: 0;
}

.modal-selection-1-1 .search-wrap-2 {
  position: relative;
  margin: 25px 30px 20px 30px;
}

.modal-selection-1-1 .search-wrap-2 input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.24);
  padding: 12px 10px 10px 30px;
  font-size: 13px;
  border-radius: 3px;
}

.modal-selection-1-1 .search-wrap-2 button {
  font-size: 23px;
  position: absolute;
  left: 13px;
  background: transparent;
  top: 9px;
  color: #888;
}

.modal-selection-1-1 .list {
  max-height: calc(100vh - 350px);
  overflow-y: auto;
  overflow-x: hidden;
  margin-right: 3px;
  min-height: 200px;
}

/* Scrollbar Styling */
.modal-selection-1-1 .list::-webkit-scrollbar,
.modal-selection-1-1 .btn-filter-wrap::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.modal-selection-1-1 .list::-webkit-scrollbar-track,
.modal-selection-1-1 .btn-filter-wrap::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 5px;
}

.modal-selection-1-1 .list::-webkit-scrollbar-thumb,
.modal-selection-1-1 .btn-filter-wrap::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #999;
}

.modal-selection-1-1 .list .list-group-flush > .list-group-item {
  padding-right: 15px;
  padding-left: 15px;
  background-color: inherit;
  transition: background-color 300ms ease;
}

.modal-selection-1-1 .list .list-group-flush > .list-group-item:hover {
  background-color: rgba(229, 106, 106, 0.6392156863) !important;
}

.modal-selection-1-1 .hr {
  opacity: 0.15;
  margin: 0;
}

.modal-selection-1-1 .list-group-item label {
  display: block;
  width: 100%;
  cursor: pointer;
}

.modal-selection-1-1 .list-group-item .btn-wrap {
  background: transparent;
  width: 100%;
}

.modal-selection-1-1 .list-group-item .btn-wrap.bg-wait::before {
  opacity: 0.2;
}

.modal-selection-1-1 .list-group-item .btn-wrap.btn-extra-input {
  padding-left: 45px;
}

.modal-selection-1-1 .list-group-item .btn-wrap.btn-extra-select {
  padding-left: 67px;
  height: 25px;
}

.modal-selection-1-1 .list-group-item .extra-input {
  border-right: 1px solid #dee2e6;
  position: absolute;
  left: 0px;
  padding-right: 15px;
  padding-left: 13px;
  height: 42px;
  top: 0px;
}

.modal-selection-1-1 .list-group-item .extra-select {
  border-right: 1px solid #dee2e6;
  position: absolute;
  left: 0px;
  padding-right: 10px;
  padding-left: 14px;
  height: 41px;
  top: 0px;
  padding-top: 9px;
}

.modal-selection-1-1 .list-group-item .extra-input .form-check-input[type=checkbox], .modal-selection-1-1 .list-group-item .extra-input .form-check-input[type=radio] {
  position: relative;
  top: 6px;
  border-color: #bbb;
}

.modal-selection-1-1 .list-group-item .text-wrap {
  text-align: right;
  display: inline-block;
  position: relative;
  top: 1px;
  font-size: 0.88rem;
  color: #222;
}

.modal-selection-1-1 .list-group-item .color-wrap {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 30px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.3294117647);
  border-radius: 2px;
  margin-left: 10px;
}

.modal-selection-1-1 .list-group-item .icon-wrap {
  position: relative;
  top: 6px;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin-left: 5px;
  text-align: center;
}

.modal-selection-1-1 .list-group-item .color-wrap i {
  position: relative;
  top: 4px;
  width: 20px;
  font-size: 18px;
  margin-left: 5px;
  color: #a41326;
}

.modal-selection-1-1 .list-group-item .icon-wrap i {
  position: absolute;
  color: #a41326;
  font-size: 25px;
  top: -5px;
  left: 8px;
}

.modal-selection-1-1 .list-group-item .next-icon i {
  position: relative;
  left: 8px;
  top: 3px;
  font-size: 16px;
  color: #555;
}

.modal-selection-1-1 .list-group-item .back-icon i {
  position: relative;
  left: 8px;
  top: 3px;
  font-size: 16px;
  color: #222;
}

.modal-selection-1-1 .list-group-item .badge {
  font-weight: 500;
  display: inline-block;
  padding: 0 10px 0 10px;
  height: 19px;
  position: relative;
  top: 4px;
  right: 10px;
  line-height: normal;
}

.modal-selection-1-1 .list-group-item .form-check-input[type=checkbox],
.modal-selection-1-1 .list-group-item .form-check-input[type=radio] {
  position: relative;
  top: -2px;
  border-color: #bbb;
}

.modal-selection-1-1 .list-group-item .form-check-input:disabled {
  opacity: 0.3;
}

.bg-gradient-0, .bg-gradient-1, .bg-gradient-2, .bg-gradient-3,
.fg-gradient-0, .fg-gradient-1, .fg-gradient-2 {
  position: relative;
}

.bg-gradient-0:before,
.bg-gradient-1:before,
.bg-gradient-2:before,
.bg-gradient-3:before,
.bg-gradient-4:before,
.bg-gradient-5:before,
.fg-gradient-0:after,
.fg-gradient-1:after,
.fg-gradient-2:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-gradient-0:before {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7));
}

.bg-gradient-1:before {
  background-image: linear-gradient(237deg, #000a0c 0%, #3F51B5 100%) !important;
}

.bg-gradient-2:before {
  background-color: #032834;
  opacity: 0.4;
}

.bg-gradient-3:before {
  background-image: linear-gradient(179deg, #36a8aa 0%, #ffffff 100%) !important;
}

.bg-gradient-4 {
  background-color: #36a8aa !important;
}

.bg-gradient-4:before {
  background-image: linear-gradient(0deg, #36a8aa 0%, #ffffff 100%) !important;
}

.bg-gradient-5:before {
  background-color: #36a8aa !important;
}

.bg-gradient-5:before {
  background-image: linear-gradient(180deg, #ffffff 0%, #36a8aa 40%, #36a8aa 60%, #ffffff 100%) !important;
}

.fg-gradient-0:after {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7));
}

.fg-gradient-1:after {
  background-image: linear-gradient(237deg, #000a0c 0%, #3F51B5 100%) !important;
  opacity: 0.4;
}

.fg-gradient-2:after {
  background-color: #032834;
  opacity: 0.4;
}

.header-hero.text-white .header-left-icon a span,
.header-hero.text-white .header-right-icon .btn-link,
.header-hero.text-white .header-right-icon .btn-link,
.header-hero.text-white .header-right-icon .btn-link span,
.header-hero.text-white .header-right-icon .btn-link i,
.header-hero.text-white .version,
.header-hero.text-white .before-title, .header-hero.text-white .after-title, .header-hero.text-white .title,
.hero.text-white .before-title, .hero.text-white .after-title, .hero.text-white .title {
  color: #fff;
}

.header-hero.text-dark .header-left-icon a span,
.header-hero.text-dark .header-right-icon .btn-link,
.header-hero.text-dark .header-right-icon .btn-link,
.header-hero.text-dark .header-right-icon .btn-link span,
.header-hero.text-dark .header-right-icon .btn-link i,
.header-hero.text-dark .version,
.header-hero.text-dark .before-title, .header-hero.text-dark .after-title, .header-hero.text-dark .title,
.hero.text-dark .before-title, .hero.text-dark .after-title, .hero.text-dark .title {
  color: #222529;
}

.header-hero.bg-default .img-header,
.hero.bg-default .img-header {
  background-color: #278297;
}

.header-hero.bg-gradient-0 .img-header:before {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7));
}

.header-hero.bg-gradient-1 .img-header:before {
  background-image: linear-gradient(237deg, #000a0c 0%, #3F51B5 100%) !important;
}

.side-drawer-right, .side-drawer-left {
  bottom: 0;
  right: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  background: #fff;
  z-index: 10002;
  overflow-y: auto;
}

.side-drawer-navigation {
  background: #262626;
}

.aside-drawer.is-collapsed .side-drawer-right, .aside-drawer.is-collapsed .side-drawer-left {
  z-index: inherit;
}

.side-drawer-left {
  transform: translateX(-100%);
  background: #900000;
  overflow-y: auto;
  right: auto;
  left: 0;
}

.is-expanded .side-drawer-right {
  animation: vf-side-drawer-right-expand 0.333s;
  transform: translateX(0);
}

.is-collapsed .side-drawer-right {
  animation: vf-side-drawer-right-collapse 0.333s;
}

.is-expanded .side-drawer-left {
  animation: vf-side-drawer-left-expand 0.333s;
  transform: translateX(0);
}

.is-collapsed .side-drawer-left {
  animation: vf-side-drawer-left-collapse 0.333s;
}

.side-drawer-overlay {
  transition-duration: 0.333s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background: rgba(17, 17, 17, 0.85);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10001;
}

.is-expanded .side-drawer-overlay {
  opacity: 1;
  pointer-events: all;
}

.side-drawer-header {
  background: inherit;
  border-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding: 15px 20px 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1;
  text-align: right;
  direction: rtl;
  margin-bottom: 15px;
}

aside .side-drawer-header {
  margin-top: 16px;
  border: 1px solid #dfdfdf;
}

.side-drawer-toggle-in-drawer {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  color: rgba(255, 255, 255, 0.55);
}
@keyframes vf-side-drawer-right-expand {
  0% {
    transform: translate(100%);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes vf-side-drawer-right-collapse {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(100%);
  }
}
@keyframes vf-side-drawer-left-expand {
  0% {
    transform: translate(-100%);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes vf-side-drawer-left-collapse {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-100%);
  }
}
.side-drawer-right, .side-drawer-left {
  max-width: 20rem;
}

@media (min-width: 768px) {
  .side-drawer-navigation {
    max-width: 100%;
  }
  .side-drawer-header-nav,
  .side-drawer-btn {
    display: none;
  }
}
@media (min-width: 992px) {
  body.modal-open-nav {
    height: inherit;
    overflow-y: inherit;
    padding-right: inherit;
  }
  .side-drawer-navigation {
    position: relative;
    transform: none;
    width: auto;
    background: inherit;
    overflow: visible;
  }
  .side-drawer-overlay-navigation {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .aside-drawer.is-collapsed {
    display: none;
  }
  .side-drawer-header h4, .side-drawer-header .h4 {
    color: #dfdfdf;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
  }
  .side-drawer-header button {
    position: absolute;
    top: 14px;
    left: 6px;
    right: auto;
    color: #dfdfdf;
    text-transform: capitalize;
  }
  .side-drawer-header button:hover {
    color: tomato;
  }
}
.menu {
  position: relative;
}

.menu .nav-link:after {
  content: "\e839";
  display: inline-block;
  font: normal normal normal 14px/1 "iconix";
  position: relative;
  top: 0px;
  right: 6px;
  color: #696a75;
  font-size: 14px;
  opacity: 0;
}

.nav-login .nav-link > i {
  position: relative;
  position: relative;
  left: 3px;
  right: auto;
  font-size: 18px;
}

.menu > .mwrap {
  background: #fff;
  z-index: 1000;
  min-width: 10rem;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid transparent;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms, visibility 600ms;
}

.menu .mwrap {
  position: absolute;
  top: 62px;
}

.menu-full {
  position: static;
}

.menu-full .mwrap {
  width: 90%;
  left: 5%;
}

.menu ul li:first-child {
  padding-top: 0;
}

.menu ul li {
  font-size: 0.9rem;
  direction: rtl;
  text-align: right;
  line-height: 1.9rem;
}

.menu ul li:last-child {
  padding-bottom: 0;
}

.menu ul li a {
  display: block;
  width: 100%;
  padding: 5px 10px 5px 25px;
  clear: both;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.menu-divider {
  height: 0;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.menu .smwrap {
  position: absolute;
  border-color: rgba(0, 0, 0, 0.15);
  top: 0;
}

.menu .menu-right {
  right: auto;
  left: 100%;
  margin-top: -54px;
}

.menu .menu-left {
  left: auto;
  right: 100%;
  margin-top: -54px;
}

.menu-submenu.show {
  top: 0;
  display: block;
}

.menu-link::after,
.menu-link::after {
  display: inline-block;
  font: normal normal normal 14px/1 "iconix";
  font-size: inherit;
  margin: 0;
  border: none;
  vertical-align: inherit;
  color: #8db3d3;
  width: 1.28571429em;
  position: absolute;
  top: 14px;
  left: 3px;
}

.menu-link.icon-right::after {
  text-align: center;
  content: "\e838";
}

.menu-link.icon-left::after {
  text-align: center;
  content: "\e839";
}

.menu-link.icon-right::after {
  text-align: center;
  content: "\e836";
}

.fade-mode .nav-link span {
  border-color: #000;
}

.nav-link span i {
  position: relative;
  top: 3px;
  font-size: 20px;
}

@media (min-width: 991.99px) {
  .menu ul li a:hover,
  .menu ul li a:active,
  .menu ul li a:focus {
    color: #1e2125;
    background-color: rgba(233, 236, 239, 0.6784313725);
  }
  .menu:hover > .mwrap,
  .menu:active > .mwrap {
    visibility: visible;
    opacity: 1;
  }
  .fixed-header .menu:hover > .mwrap,
  .fixed-header .menu:hover > .mwrap {
    top: 79px;
  }
  .menu:hover > .mwrap {
    border-color: rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 991.98px) {
  .nav-link span {
    border: none;
    padding: unset;
  }
  .menu-divider {
    border-color: rgba(226, 226, 226, 0.58);
  }
  .menu .mwrap {
    position: relative;
    top: 0;
    border-radius: 0;
    background: #2a2a2a;
    visibility: visible;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    border: none;
    box-shadow: none !important;
    background: #3a3a3a;
    overflow: hidden;
    transition: max-height 500ms;
    left: 0;
    width: 100%;
  }
  .menu > .mwrap.show {
    max-height: 125rem;
    transition: max-height 2s;
  }
  .nav-link:hover,
  .menu ul li a:focus .nav-link,
  .navbar-light .navbar-nav .nav-link.active,
  .menu ul li a:hover,
  .menu ul li a:focus {
    color: #ff9900 !important;
    font-weight: 700;
    background: inherit;
  }
  .menu ul.smwrap li a {
    padding-right: 15px;
  }
  .menu .smwrap {
    position: relative;
    background: #3a3a3a;
  }
  .menu .menu-right,
  .menu .menu-left {
    right: auto;
    left: auto;
  }
  .menu ul li a {
    font-size: 13px;
    color: #9a9a9a;
    display: block;
  }
  .menu > .mwrap {
    background: #2a2a2a;
  }
  .menu > .mwrap > li > ul {
    background: #3a3a3a;
  }
  .menu > .mwrap > li > ul > li > ul {
    background: #4a4a4a;
  }
  .menu > .mwrap > li > ul > li > ul > li > ul {
    background: #5a5a5a;
  }
  .menu > a::after {
    display: inline-block;
    font: normal normal normal 14px/1 "iconix";
    font-size: inherit;
    margin: 0;
    border: none;
    vertical-align: inherit;
    width: 1.28571429em;
    position: relative;
    top: 6px;
    left: 0;
    right: auto;
    float: left;
    text-align: center;
    content: "\e839";
    color: #8a8a8a;
    transform-origin: 50% 50%;
    transform: rotate(0);
    transition: transform 0.5s;
  }
  .menu > a.active::after,
  .menu:hover > a::after {
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
  }
  .nav-item:hover > a {
    color: #dad5ce !important;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .fixed-header .menu .mwrap.show,
  .fixed-header .menu:hover > .mwrap {
    top: 0;
  }
  .menu > .mwrap.loginul {
    margin-bottom: 70px;
  }
}
.footer-menu {
  background: #ebebeb;
}

.footer-menu nav {
  text-align: center;
  direction: rtl;
}

.footer-menu a {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #2c2c2c;
  position: relative;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  transition: all 0.5s ease-out;
  min-width: 100px;
}

.footer-menu a:hover {
  color: #2c2c2c;
  border-bottom: 2px solid #ff6448;
}

.footer-menu a i {
  display: none;
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 13px;
}

.footer-menu a em {
  display: block;
  text-align: center;
  font-size: 15px;
  line-height: 11px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 700;
}

@media screen and (max-width: 45em) {
  .footer-menu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0px;
    right: 0px;
    z-index: 10000;
    background-color: #fff;
    box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.5);
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    /* height: calc(60px + (env(safe-area-inset-bottom))*1.5); */
  }
  .footer-menu a {
    min-width: auto;
    width: 100px;
  }
  .footer-menu a.actives-item, .footer-menu a:hover {
    color: #bb1919;
    border-bottom-color: 2px solid #bb1919;
  }
  .footer-menu a i {
    display: block;
    margin-bottom: 8px;
  }
  .footer-menu a em {
    font-size: 11px;
    overflow: hidden;
    height: 15px;
    line-height: 15px;
  }
}
#search {
  z-index: 10005;
}

.search-overlay {
  transition-duration: 0.333s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background: rgba(17, 17, 17, 0.69);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10004;
}

i.search-btn {
  font-size: 25px;
  position: absolute;
  top: 23px;
  left: 22px;
  color: #000;
}

.search-wrap .search-close {
  font-size: 11px;
}

.tns-brands {
  margin-top: 55px;
  margin-bottom: 50px;
}

.tns-outer {
  position: relative;
}

.tns-outer .tns-controls {
  display: none;
}

.tns-outer:hover .tns-controls {
  display: block;
}

.tns-outer [data-controls=next],
.tns-outer [data-controls=prev] {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 50px;
  color: #000;
  text-align: center;
  opacity: 1;
  z-index: 27;
  background: transparent;
  font-size: 50px;
  opacity: 0.6;
}

.tns-outer [data-controls=next] {
  right: 20px;
  justify-content: start;
}

.tns-outer [data-controls=prev] {
  left: 20px;
  justify-content: end;
}

.tns-outer [data-action] {
  display: none;
}

.tns-nav {
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: -28px;
}

.tns-brands .tns-nav {
  bottom: -30px;
}

.tns-nav > [aria-controls] {
  width: 9px;
  height: 9px;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
  background: #ddd;
  border: 0;
  cursor: pointer;
}

.tns-nav > .tns-nav-active {
  background: #999;
}

.tns-slider {
  overflow: hidden;
}

.thumb-wrap {
  margin: 5px 0px 5px 0;
}

.thumb-wrap .tns-outer [data-controls=next] {
  right: 0px;
  justify-content: end;
  background: rgba(10, 10, 10, 0.5019607843);
  color: #fff;
  font-size: 40px;
  width: 42px;
}

.thumb-wrap .tns-outer [data-controls=prev] {
  left: 0px;
  justify-content: end;
  background: rgba(10, 10, 10, 0.5019607843);
  color: #fff;
  font-size: 40px;
  width: 42px;
}

.thumb-wrap img {
  max-width: 100%;
}

.thumb-wrap .active {
  opacity: 0.5;
}

.tns-round .tns-outer {
  border-radius: 13px;
  overflow: hidden;
}

.hero-wrap {
  display: none;
  position: relative; /* establish nearest positioned ancestor for abspos */
  cursor: pointer;
  text-shadow: -1px 0 rgba(0, 0, 0, 0.5803921569), 0 1px rgba(0, 0, 0, 0.5803921569), 1px 0 rgba(0, 0, 0, 0.5803921569), 0 -1px rgba(0, 0, 0, 0.5803921569);
}

.hero-content {
  display: inline-block;
}

.hero-content {
  display: inline-block;
  font-size: 4em;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 2s ease 0.5s;
}

.tns-slide-active .hero-content {
  opacity: 1;
}

.hero-wrap img {
  height: calc(100vh - 208px);
  background-size: cover;
  background-color: #000;
}

.hero-top-header {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.2rem;
}

.hero-middle-header {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 2rem 0 2rem 0;
  line-height: 3rem;
}

.hero-bottom-header {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
}

.tns-outer [data-controls=next], .tns-outer [data-controls=prev] {
  color: #fff;
  text-shadow: 0px 0px 15px black;
}

.tns-item a {
  position: relative;
  display: block;
}

.tns-item .description {
  background: rgba(0, 0, 0, 0.7215686275);
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #f0f0f0;
  padding: 10px 15px 10px 15px;
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .tns-brands {
    margin-top: 25px;
  }
}
article #tns1-iw {
  overflow: hidden;
  border-radius: 10px;
}

article .tns-round .tns-outer {
  overflow: visible;
}

.breadcrumb-bar {
  background-color: #686b75;
  padding: 15px 10px;
  direction: rtl;
  line-height: 30px;
}

.page-breadcrumb ol {
  background-color: transparent;
  font-size: 12px;
  margin-bottom: 0;
  padding: 0;
  text-transform: capitalize;
}

.page-breadcrumb ol {
  background-color: transparent;
  font-size: 12px;
  margin-bottom: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
}

.page-breadcrumb ol li a {
  color: #fff;
  font-size: 13px;
  position: relative;
  top: 2px;
}

.page-breadcrumb ol li:last-child a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 175px;
}

.page-breadcrumb ol li.active {
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item {
  padding: 0;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  display: inline-block;
  position: relative;
  color: rgba(255, 255, 255, 0.6392156863);
  font-size: 12px;
  padding: 0 0.25rem 0 0.25rem;
  font: normal normal normal 14px/1 "iconix";
  content: "\e83b";
  top: 8px;
  width: 25px;
  text-align: center;
}

.breadcrumb-bar .breadcrumb-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 5px 0 0;
  text-align: right;
}

.about-1-1 {
  margin: 0;
}

.about-1-1 .userpic img {
  margin-top: 35px;
  margin-bottom: 30px;
  border-radius: 360px;
  filter: grayscale(0);
  max-width: 200px;
  height: auto;
  transition: filter 600ms ease;
}

.about-1-1 .userpic img:hover {
  cursor: pointer;
  filter: grayscale(100%);
}

.about-1-1 .bio-text {
  max-width: 700px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 0.96rem;
  letter-spacing: 0pt;
  line-height: 21pt;
}

.about-1-1 .collections {
  overflow: hidden;
  line-height: 14px;
  margin: 8px 0 -12px;
  transition: all 0.3s ease;
  padding-bottom: 30px;
}

.about-1-1 .collections .type {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  display: inline-block;
  cursor: pointer;
  font-size: 13px;
}

.about-1-1 .collections .type:first-child:before {
  content: "";
  margin-right: 0;
  margin-left: 0;
}

.about-1-1 .collections .type::before {
  content: "|";
  margin-right: 8px;
  margin-left: 6px;
}

.about-1-1 .collections .type a {
  pointer-events: all;
  line-height: 27px;
  letter-spacing: 0pt;
  color: #13426b;
  text-transform: uppercase;
}

.about-1-1 .collections .type a:hover {
  color: tomato;
}

.about-1-1 .small-title {
  margin: 0;
  font-size: 11pt;
  letter-spacing: 0pt;
  color: #1b1b1b;
  text-transform: uppercase;
  margin-bottom: 5px;
  direction: rtl;
}

.about-1-1 .small-title a {
  color: #1b1b1b;
}

.about-1-1 .big-title {
  margin: 0;
  font-size: 17pt;
  color: #1b1b1b;
  position: relative;
  direction: rtl;
  letter-spacing: 0pt;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 38px;
  font-family: "KalamehWeb";
}

.about-1-1 .line {
  margin: 20px auto;
  width: 45px;
  height: 1px;
  background-color: #484848;
}

@media (max-width: 991.98px) {
  .about-1-1 .collections .type {
    font-size: 12px;
    width: 49%;
    text-align: center;
    border: 1px solid #d9d9d9;
    overflow: hidden;
  }
  .about-1-1 .collections .type:before {
    content: "";
  }
  .about-1-1 .collections .type:hover {
    background: #2e2e2e;
  }
  .about-1-1 .collections .type:hover a {
    color: #fff;
  }
}
.about-1-2 {
  position: relative;
  background-color: #36a8a8;
  border-color: #65427c;
  color: #000;
  min-height: 500px;
  z-index: 1;
  min-height: 400px;
  padding-bottom: 20px;
  border-top: 5px solid rgba(0, 0, 0, 0.0784313725);
}

.about-1-2 .separator-tg {
  position: absolute;
  bottom: -30px;
  background: #36a8a8;
  transform: rotateX(180deg);
}

.about-1-2 .userpic img {
  margin-top: 75px;
  margin-bottom: 30px;
  border-radius: 360px;
  filter: brightness(0) invert(1);
  max-width: 120px;
  height: auto;
  transition: max-width 600ms ease;
}

.about-1-2 .userpic img:hover {
  cursor: pointer;
}

.about-1-2 .bio-text {
  max-width: 730px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 0.96rem;
  letter-spacing: 0pt;
  line-height: 21pt;
}

.about-1-2 .collections {
  overflow: hidden;
  line-height: 14px;
  margin: 8px 0 -12px;
  transition: all 0.3s ease;
  padding-bottom: 30px;
}

.about-1-2 .collections .type {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  display: inline-block;
  cursor: pointer;
  font-size: 13px;
}

.about-1-2 .collections .type:first-child:before {
  content: "";
  margin-right: 0;
  margin-left: 0;
}

.about-1-2 .collections .type::before {
  content: "|";
  margin-right: 8px;
  margin-left: 6px;
  color: #fff;
}

.about-1-2 .collections .type a {
  pointer-events: all;
  line-height: 27px;
  letter-spacing: 0pt;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

.about-1-2 .collections .type a:hover {
  color: tomato;
}

.about-1-2 .small-title {
  margin: 0;
  font-size: 11pt;
  letter-spacing: 0pt;
  color: #1b1b1b;
  text-transform: uppercase;
  margin-bottom: 5px;
  direction: rtl;
}

.about-1-2 .small-title a {
  color: #1b1b1b;
}

.about-1-2 .big-title {
  margin: 0;
  font-size: 17pt;
  color: #1b1b1b;
  position: relative;
  direction: rtl;
  letter-spacing: 0pt;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 38px;
  font-family: "KalamehWeb";
}

.about-1-2 .line {
  margin: 20px auto;
  width: 45px;
  height: 1px;
  background-color: #484848;
}

@media (max-width: 991.98px) {
  .about-1-2 .collections .type {
    font-size: 12px;
    width: 49%;
    text-align: center;
    border: 1px solid #d9d9d9;
    overflow: hidden;
  }
  .about-1-2 .collections .type:before {
    content: "";
  }
  .about-1-2 .collections .type:hover {
    background: #2e2e2e;
  }
  .about-1-2 .collections .type:hover a {
    color: #fff;
  }
}
.about-2-1 {
  background: #fff;
}

.about-2-1 .row {
  direction: rtl;
}

.about-2-1 .title {
  font-family: kalamehWeb;
  font-weight: 900;
  color: #212529;
  margin-top: 20px;
  font-size: 2rem;
  text-transform: uppercase;
}

.about-2-1 p {
  color: #777;
  line-height: 26px;
  margin: 0 0 20px;
  font-size: 14px;
  text-align: justify;
  direction: rtl;
}

.about-2-1 .more {
  color: #e04622;
}

.about-2-1 .more i {
  position: relative;
  top: 2px;
  transform: translate3d(0, 0, 0);
  transition: ease transform 300ms;
}

.about-2-1 .more:hover i {
  transform: translate3d(-7px, 0, 0);
}

.aparat {
  background: #000;
}

.btn-goftino-pulse {
  position: fixed;
  bottom: 26px;
  left: -25px;
  width: 48px;
  height: 48px;
}

.btn-goftino-pulse.d-show {
  left: 25px;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .btn-goftino-pulse {
    bottom: 90px;
    left: 23px;
  }
}
.btn-whatsapp-pulse {
  background: #11a10d;
  color: white;
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 29px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  border: 1px solid #119714;
  z-index: 100;
  transition: color 300ms ease;
}

.btn-whatsapp-pulse i {
  font-size: 32px;
}

.btn-whatsapp-pulse:hover i {
  color: #000;
}

@media (max-width: 991.98px) {
  .btn-whatsapp-pulse {
    bottom: 85px;
    left: 20px;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.work {
  padding-top: 150px;
}

.work ul li {
  cursor: pointer;
  margin: 10px 20px;
  color: #1b1b1b;
  font-size: 11pt;
  letter-spacing: 1pt;
  font-weight: 300;
  display: inline-block;
}

.borderFade {
  padding-bottom: 10px;
  color: #1b1b1b;
  position: relative;
}

.borderFade::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(3px);
  background: #1b1b1b;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.borderFade:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.work .portfolio-thumb {
  position: relative;
  padding: 0;
}

.work .items img {
  width: 100%;
  height: 100%;
}

.work .portfolio-thumb .portfolio-overlay {
  position: absolute;
  background: #1b1b1b;
  color: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: top;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.work .portfolio-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.work .portfolio-thumb:hover .portfolio-overlay {
  opacity: 0.7;
}

.filtr-item {
  padding: 10px;
}

.section-more {
  top: 15px;
  left: 50%;
  margin-top: 10px;
  position: relative;
  text-align: center;
  transform: translate(-50%);
  height: 80px;
}

.section-more a {
  color: #6e6e6e;
}

.section-more a span {
  padding: 0 10px;
  transition: all 0.3s ease;
}

.section-more a:hover span {
  padding: 0 15px;
}

@media (max-width: 991.98px) {
  .articles {
    padding-top: 0;
  }
  .articles .section-more a {
    top: -10px;
  }
}
section .slider {
  padding-bottom: 50px;
  padding-top: 10px;
  text-align: center;
}

.slider .section-more a {
  position: relative;
  top: 36px;
  color: #6e6e6e;
  text-align: center;
  display: block;
  position: relative;
}

.section-header-1 {
  text-align: center;
  padding: 40px 0 30px 0;
}

.section-header-1 .big-title {
  direction: rtl;
  letter-spacing: 2pt;
  text-transform: capitalize;
  font-weight: 700;
}

.section-header-1 .line {
  margin: 20px auto;
  width: 45px;
  height: 1px;
  background-color: #484848;
}

.section-header-1 .small-title {
  margin: 0;
  font-size: 12pt;
  letter-spacing: 1pt;
  color: #1b1b1b;
  text-transform: uppercase;
  direction: rtl;
}

.section-header-1 .small-title a {
  color: #1b1b1b;
}

.section-header-1 .small-title a:hover {
  color: tomato;
}

.section-header-2 {
  text-align: center;
  padding: 30px 0 30px 0;
}

.articles .section-header-2 {
  padding: 55px 0 50px 0;
}

.section-header-2 .big-title:before {
  width: 28px;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  margin-left: -14px;
  background-color: #c71904;
}

.section-header-2 .big-title {
  position: relative;
  direction: rtl;
  letter-spacing: 2pt;
  text-transform: capitalize;
  margin-bottom: 43px;
  font-weight: 700;
}

.section-header-2 .big-title:after {
  width: 120px;
  height: 1px;
  display: block;
  content: "";
  position: absolute;
  margin-top: 20px;
  left: 50%;
  margin-left: -60px;
  background-color: #c71904;
}

.section-header-2 .small-title {
  margin: 0;
  font-size: 12pt;
  letter-spacing: 1pt;
  color: #1b1b1b;
  text-transform: uppercase;
  direction: rtl;
}

.section-header-2 .small-title a {
  color: #1b1b1b;
}

.section-header-2 .small-title a:hover {
  color: tomato;
}

.section-header-3 {
  text-align: center;
  padding: 30px 0 30px 0;
}

.section-header-3 .big-title:before {
  position: absolute;
  bottom: -42px;
  width: 50%;
  left: 50%;
  margin-left: -25%;
  height: 1px;
  content: "";
  background-color: #777;
  z-index: 4;
}

.section-header-3 .big-title {
  position: relative;
  direction: rtl;
  letter-spacing: 2pt;
  text-transform: capitalize;
  margin-bottom: 70px;
  font-weight: 700;
}

.section-header-3 .big-title:after {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 50%;
  margin-left: -20px;
  bottom: -60px;
  content: "§";
  font-size: 30px;
  line-height: 40px;
  color: #c50000;
  font-weight: 400;
  z-index: 5;
  display: block;
  background-color: #f2f2f2;
}

.section-header-3 .small-title {
  margin: 0;
  font-size: 12pt;
  letter-spacing: 1pt;
  color: #1b1b1b;
  text-transform: uppercase;
  direction: rtl;
}

.section-header-3 .small-title a {
  color: #1b1b1b;
}

.section-header-3 .small-title a:hover {
  color: tomato;
}

.section-header-4 {
  text-align: center;
  padding: 30px 0 30px 0;
}

.section-header-4 .big-title:before {
  background-color: #c50000;
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 50%;
  bottom: 14px;
  left: -20px;
}

.section-header-4 .big-title {
  position: relative;
  direction: rtl;
  letter-spacing: 2pt;
  text-transform: capitalize;
  margin-bottom: 25px;
  white-space: nowrap;
  border: 2px solid #222;
  padding: 9px 15px 4px 15px;
  display: inline-block;
  font-size: 20px;
  min-width: 160px;
  font-weight: 700;
}

.section-header-4 .big-title:after {
  background-color: #c50000;
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 50%;
  bottom: 14px;
  right: -20px;
}

.section-header-4 .small-title {
  margin: 0;
  font-size: 12pt;
  letter-spacing: 1pt;
  color: #1b1b1b;
  text-transform: uppercase;
  direction: rtl;
}

.section-header-4 .small-title a {
  color: #1b1b1b;
}

.section-header-4 .small-title a:hover {
  color: tomato;
}

.section-header-5 {
  text-align: center;
  padding: 50px 0 0 0;
}

body.social .section-header-5 {
  padding: 100px 0 70px 0;
}

.section-header-5 .big-title-wrap {
  max-width: 400px;
  margin: 0 auto;
}

.section-header-5 .big-title:before {
  content: " ";
  display: block;
  border-bottom: 2px solid #c50000;
  height: 5px;
}

.section-header-5 .big-title {
  position: relative;
  direction: rtl;
  letter-spacing: 2pt;
  text-transform: capitalize;
  margin-bottom: 5px;
  min-width: 160px;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 20px;
  align-items: center;
  padding: 0 30px 0 30px;
  font-weight: 700;
}

.section-header-5 .big-title:after {
  content: " ";
  display: block;
  border-bottom: 2px solid #c50000;
  height: 5px;
}

.section-header-5 .small-title {
  margin: 0;
  font-size: 12pt;
  letter-spacing: 1pt;
  color: #1b1b1b;
  text-transform: uppercase;
  direction: rtl;
  padding: 0 10px 0 10px;
}

.section-header-5 .small-title a {
  color: #1b1b1b;
}

.section-header-5 .small-title a:hover {
  color: tomato;
}

.section-header-dark-5 .big-title,
.section-header-dark-5 .small-title,
.section-header-dark-5 .small-title a {
  color: #fff;
}

@media (max-width: 991.98px) {
  body.social .section-header-5 {
    padding: 35px 0 10px 0;
  }
}
.section-header-6 {
  text-align: center;
  padding: 30px 0 40px 0;
}

.section-header-6 .big-title {
  position: relative;
  direction: rtl;
  letter-spacing: 2pt;
  text-transform: capitalize;
  margin-bottom: 17px;
  min-width: 160px;
  font-weight: 700;
}

.section-header-6 .small-title-wrap {
  max-width: 400px;
  margin: 0 auto;
}

.section-header-6 .small-title:before {
  content: " ";
  display: block;
  border-bottom: 2px solid #c50000;
  height: 5px;
  background-color: #f8f8f8;
}

.section-header-6 .small-title {
  margin: 0;
  font-size: 12pt;
  letter-spacing: 1pt;
  color: #1b1b1b;
  text-transform: uppercase;
  direction: rtl;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 20px;
  align-items: center;
}

.section-header-6 .small-title:after {
  content: " ";
  display: block;
  border-bottom: 2px solid #c50000;
  height: 5px;
  background-color: #f8f8f8;
}

.section-header-6 .small-title a {
  color: #1b1b1b;
}

.section-header-6 .small-title a:hover {
  color: tomato;
}

.section-header-10 {
  text-align: center;
  margin-bottom: 80px;
  margin-top: 30px;
}

.section-header-10 .title {
  margin-top: 9px;
  font-family: "KalamehWeb";
  margin-bottom: 20px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-header-10 .title a {
  color: #222;
}

.section-header-10 .title span {
  color: #e04622;
}

.articles {
  position: relative;
}

.bg-pattern {
  background-image: url(/img/demo/bg-2.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

.article-card {
  background-color: #fff;
  border-radius: 9px;
}

.article-card figure {
  margin: 0;
  max-width: 100%;
  height: 100%;
}

.article-card .date {
  font-size: 12px;
  font-family: iransansNum;
  color: #ffffff;
  padding: 13px 0px 3px 0px;
  line-height: 21px;
  text-align: center;
  position: absolute;
  left: -65px;
  top: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6784313725);
  border-radius: 10px;
  width: 58px;
  opacity: 0;
  transition: left 250ms ease-out, opacity 250ms ease-out;
}

.article-card .day {
  font-size: 27px;
}

.grid-xlarge {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 54em) {
  .grid-xlarge {
    width: 95%;
  }
}
@media (min-width: 91em) {
  .grid-xlarge {
    width: 80%;
  }
}
.absolute-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.preloader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3em;
  width: 3em;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #47bec7;
  border-radius: 50%;
  opacity: 1;
  animation: spin 1s linear infinite both;
  transition: opacity 2s 0.2s ease-out;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.team {
  width: 100%;
  padding-right: 1em;
  padding-left: 1em;
}

.team__container {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  margin-left: -1em;
  margin-right: -1em;
  align-items: center;
  justify-content: center;
}

.team__container > * {
  padding: 1em;
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 32em) {
  .team__container > * {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 54em) {
  .team__container > * {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 65em) {
  .team__container > * {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.team__link {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-clip: padding-box;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 1s ease;
  border-radius: 5px;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0px 0px 29px -3px rgba(149, 149, 149, 0.768627451);
}

.team__link:hover {
  box-shadow: 0px 0px 29px -3px #959595;
}

.team__link:hover .date {
  left: 9px;
  opacity: 1;
}

.team__link img {
  transition: all 0.4s ease-out 0s;
}

.team__link:hover img {
  transform: scale(1.1);
}

.team__link:hover:after {
  opacity: 1;
}

.team__link:hover .team__position:after {
  left: 0;
  width: 100%;
}

.team__link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-clip: padding-box;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.team__header {
  margin-bottom: 2em;
  color: #47bec7;
  text-align: center;
}

.team__img-container {
  position: relative;
}

.team__img {
  position: relative;
  animation: fade-in ease-in-out 1s both;
}

.team__text {
  position: relative;
  color: #000;
  background-color: #fff;
  text-align: center;
  padding-bottom: 1px;
}

.team__position {
  position: relative;
  display: inline-block;
  margin-bottom: 0.35em;
  direction: rtl;
  padding: 5px 0 5px 0;
  margin: 0 10px 0 10px;
  border-bottom: 1px solid #d3d3d3;
  font-size: 12px;
  color: #646464;
  text-transform: uppercase;
}

.team__title {
  font-size: 17px;
  line-height: 42px;
  font-weight: 700;
  direction: rtl;
  text-align: center;
  padding: 12px 15px 2px 10px;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .article-card {
    padding-bottom: 0;
  }
}
.card-post-theme-2 {
  padding: 0px 0 15px;
  text-align: center;
  position: relative;
}

.card-post-theme-2 a {
  border: 15px solid #ffffff;
  display: block;
  transition: all 400ms ease-in-out;
  box-shadow: 0 1px 50px rgba(153, 153, 153, 0.35);
  border-radius: 5px;
}

.card-post-theme-2 img {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  border-radius: 5px;
  border: 1px solid rgba(204, 204, 204, 0.2901960784);
}

.card-post-theme-2 h4, .card-post-theme-2 .h4, .card-post-theme-2 .docs-title {
  font-family: "KalamehWeb";
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 16px;
}

.card-post-theme-2 a:hover {
  transform: translateY(-10px);
}

.card-post-theme-4 {
  position: relative;
  display: block;
}

.card-post-theme-4 .overlay:before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #212529;
  opacity: 0;
  pointer-events: none;
  transition: ease opacity 300ms 100ms;
}

.card-post-theme-4 .overlay:hover:before {
  opacity: 0.8;
}

.card-post-theme-4 .date {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background-color: #e04622;
  min-width: 70px;
  text-align: center;
  color: #fff;
  padding: 10px 2px 11px 2px;
  z-index: 2;
}

.card-post-theme-4 .date .month {
  font-size: 14px;
}

.card-post-theme-4 .date .day {
  font-size: 14px;
}

.card-post-theme-4 .info {
  color: #969696;
  letter-spacing: 2px;
}

.card-post-theme-4 .title {
  font-family: kalamehWeb;
  font-weight: 600;
  color: #212529;
  margin-top: 5px;
  font-size: 1.25rem;
  letter-spacing: 0px;
  line-height: 2.2rem;
  transition: color 0.3s ease-in-out;
}

.card-post-theme-4 .title:hover {
  color: #e04622;
}

.card-post-theme-4 .description {
  color: #777;
  line-height: 26px;
  margin: 0 0 15px;
  font-size: 14px;
  text-align: justify;
  direction: rtl;
}

.card-post-theme-4 .more {
  position: absolute;
  bottom: 0;
  color: #e04622;
}

.card-post-theme-4 .more i {
  position: relative;
  top: 2px;
  transform: translate3d(0, 0, 0);
  transition: ease transform 300ms;
}

.card-post-theme-4 .more:hover i {
  transform: translate3d(-7px, 0, 0);
}

.card-post-theme-6 {
  position: relative;
  display: block;
}

.card-post-theme-6 .overlay:before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #212529;
  opacity: 0;
  pointer-events: none;
  transition: ease opacity 300ms 100ms;
  border-radius: 15px;
}

.card-post-theme-6 .overlay:hover:before {
  opacity: 0.8;
}

.card-post-theme-6 .date {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background-color: #e04622;
  min-width: 70px;
  text-align: center;
  color: #fff;
  padding: 10px 2px 11px 2px;
  z-index: 2;
}

.card-post-theme-6 .date .month {
  font-size: 14px;
}

.card-post-theme-6 .date .day {
  font-size: 14px;
}

.card-post-theme-6 .info {
  color: #969696;
  letter-spacing: 2px;
}

.card-post-theme-6 .title {
  font-weight: 700;
  color: #212529;
  margin-top: 5px;
  font-size: 1.05rem;
  letter-spacing: 0px;
  line-height: 2rem;
  text-align: center;
  transition: color 0.3s ease-in-out;
}

.card-post-theme-6 .title:hover {
  color: #e04622;
}

.card-post-theme-6 .description {
  color: #777;
  line-height: 26px;
  margin: 0 0 15px;
  font-size: 14px;
  text-align: justify;
  direction: rtl;
}

.card-post-theme-6 .more {
  position: absolute;
  bottom: 0;
  color: #e04622;
}

.card-post-theme-6 .more i {
  position: relative;
  top: 2px;
  transform: translate3d(0, 0, 0);
  transition: ease transform 300ms;
}

.card-post-theme-6 .more:hover i {
  transform: translate3d(-7px, 0, 0);
}

.card-post-theme-7 {
  position: relative;
  display: block;
}

.card-post-theme-7 .overlay:before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #212529;
  opacity: 0;
  pointer-events: none;
  transition: ease opacity 300ms 100ms;
  border-radius: 15px;
}

.card-post-theme-7 .overlay:hover:before {
  opacity: 0.8;
}

.card-post-theme-7 .card-body {
  z-index: 11;
  background: #fff;
  margin: -50px 20px 0 20px;
  border-radius: 3px;
}

.card-post-theme-7 .date {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: #ea3a3f;
  min-width: 70px;
  text-align: center;
  color: #fff;
  padding: 10px 2px 11px 2px;
  z-index: 2;
}

.card-post-theme-7 .date .month {
  font-size: 14px;
}

.card-post-theme-7 .date .day {
  font-size: 14px;
}

.card-post-theme-7 .info {
  color: #969696;
  letter-spacing: 2px;
  display: block;
  text-align: center;
}

.card-post-theme-7 .title {
  font-weight: 700;
  color: #212529;
  margin-top: 5px;
  font-size: 1.05rem;
  letter-spacing: 0px;
  line-height: 2rem;
  text-align: center;
  transition: color 0.3s ease-in-out;
}

.card-post-theme-7 .title:hover {
  color: #e04622;
}

.card-post-theme-7 .description {
  color: #777;
  line-height: 26px;
  margin: 0 0 15px;
  font-size: 14px;
  text-align: justify;
  direction: rtl;
}

.card-post-theme-7 .more {
  position: absolute;
  bottom: 0;
  color: #e04622;
}

.card-post-theme-7 .more i {
  position: relative;
  top: 2px;
  transform: translate3d(0, 0, 0);
  transition: ease transform 300ms;
}

.card-post-theme-7 .more:hover i {
  transform: translate3d(-7px, 0, 0);
}

.galleries {
  margin-top: 100px;
  margin-bottom: 50px;
}

.galleries .box-container {
  padding: 0 0px 25px 0px;
}

.color-white {
  color: #fff;
}

.box-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 10px 15px;
  width: 100%;
}

@media screen and (min-width: 1380px) {
  .box-container {
    flex-direction: row;
  }
}
.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 100%;
  margin-bottom: 0px;
}

.flip-box {
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  position: relative;
}

.flip-box img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  min-height: 200px;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  backface-visibility: hidden;
}

.flip-box-front {
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateY(180deg);
  transform-style: preserve-3d;
}

.flip-box-color {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(64, 0, 0, 0.7294117647);
  border-radius: 5px;
}

.flip-box:hover .flip-box-back {
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 10px;
  outline: 1px solid transparent;
  perspective: inherit;
  z-index: 2;
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
}

.flip-box .inner i {
  font-size: 30px;
  background: #e5e5e5;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: relative;
  padding: 16px 0px 0 7px;
  color: #898989;
  opacity: 0.7;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3411764706);
}

.flip-box-header {
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 30px;
}

.flip-box p {
  font-size: 20px;
  line-height: 1.5em;
}

.flip-box-img {
  margin-top: 25px;
}

.flip-box-button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  margin-top: 25px;
  padding: 15px 20px;
  text-transform: uppercase;
}

.flip-box-button:hover {
  background: rgba(197, 0, 0, 0.5803921569);
  color: #fff;
}

@media (max-width: 991.98px) {
  .home-gallery {
    background: #363636 !important;
    color: #dfdfdf;
  }
}
.books {
  padding-top: 150px;
  padding-bottom: 100px;
  background: #f2f2f2;
}

.my-flip-inner-wrapper {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
}

.my-flip-side {
  display: block;
  height: 380px;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: all 0.8s ease;
  backface-visibility: hidden;
}

.my-flip-back {
  transform: rotateY(180deg);
  color: #fff;
  position: absolute;
  z-index: -1;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  padding: 20px 10px 10px;
}

.my-flip-back-1 {
  background: linear-gradient(to right bottom, #ffb900, #ff7730);
}

.my-flip-back-2 {
  background: linear-gradient(to right bottom, #000428, #004e92);
}

.my-flip-back-3 {
  background: linear-gradient(to right bottom, #2998ff, #5643fa);
}

.my-flip-inner-wrapper:hover .my-flip-front {
  transform: rotateY(-180deg);
}

.my-flip-inner-wrapper:hover .my-flip-back {
  transform: rotateY(0);
}

.my-flip-image {
  height: 12rem;
  background-blend-mode: screen;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.my-flip-image img {
  width: 100%;
  height: 100%;
  background-blend-mode: screen;
  -o-object-fit: cover;
     object-fit: cover;
}

.my-flip-heading {
  margin: 0 0 15px;
}

.my-flip-details {
  padding: 1.5rem;
}

.my-flip-details p {
  font-size: 15px;
  margin: 0;
  line-height: 2;
  color: #848484;
}

.my-flip-details .team__title {
  line-height: 2.5rem;
  transform: rotate(355deg);
}

.my-flip-back-inner ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.my-flip-back-text ul li {
  text-align: right;
  color: #fff;
  font-size: 13px;
  padding: 0.8rem 0 0.6rem;
}

.my-flip-back-text ul li strong {
  font-weight: 600;
  color: #ffd77d;
  margin-left: 5px;
  margin-right: auto;
  text-transform: capitalize;
}

.my-flip-back-inner ul li:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}

.my-flip-price {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.my-flip-price h4, .my-flip-price .h4 {
  font-size: 1.12rem;
  line-height: 2rem;
  font-weight: 600;
  direction: rtl;
  overflow: hidden;
  margin-bottom: 0;
}

.my-flip-btn-box {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  text-align: center;
}

.my-flip-btn {
  text-transform: uppercase;
  padding: 1rem 1.8rem 0.75rem 1.8rem;
  font-size: 13px;
  background-color: #fff;
  font-weight: 600;
  color: #000;
  border-radius: 10rem;
  display: inline-block;
  transition: all 0.2s;
  color: initial;
  position: relative;
  margin: 0 auto;
}

.my-flip-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  color: #000;
}

.product-card {
  position: relative;
  background-color: #fff;
  border-radius: 9px;
}

.product-card figure {
  margin: 0;
  max-width: 100%;
  height: 100%;
}

.product-card .date {
  font-size: 12px;
  font-family: iransansNum;
  color: #ffffff;
  padding: 13px 0px 3px 0px;
  line-height: 21px;
  text-align: center;
  position: absolute;
  left: -65px;
  top: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6784313725);
  border-radius: 10px;
  width: 58px;
  opacity: 0;
  transition: left 250ms ease-out, opacity 250ms ease-out;
}

.product-card .day {
  font-size: 27px;
}

.product-card .preloader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3em;
  width: 3em;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #47bec7;
  border-radius: 50%;
  opacity: 1;
  animation: spin 1s linear infinite both;
  transition: opacity 2s 0.2s ease-out;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.product-card .product-link {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-clip: padding-box;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 1s ease;
  border-radius: 5px;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0px 0px 29px -3px rgba(149, 149, 149, 0.768627451);
}

.product-card .product-link:hover {
  box-shadow: 0px 0px 29px -3px #959595;
}

.product-card .product-link:hover .date {
  left: 9px;
  opacity: 1;
}

.product-card .product-link img {
  transition: all 0.4s ease-out 0s;
}

.product-card .product-link:hover img {
  transform: scale(1.1);
}

.product-card .product-link:hover:after {
  opacity: 1;
}

.product-card .product-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-clip: padding-box;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.product-card .product-top-discount {
  position: absolute;
  font-family: "iransansNum";
  background: rgba(255, 152, 0, 0.8509803922);
  top: 7px;
  right: 6px;
  color: black;
  z-index: 1;
  font-size: 11px;
  padding: 5px 4px 0 5px;
  border-radius: 50%;
  font-weight: 700;
  height: 30px;
  width: 30px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
}

.product-card .product-img-container {
  position: relative;
  width: 40%;
  float: left;
  border-right: 1px solid #f1f1f1;
}

.product-card .product-figure {
  position: relative;
  animation: fade-in ease-in-out 1s both;
}

.product-card .product-text {
  position: relative;
  color: #000;
  background-color: #fff;
  text-align: center;
  padding-bottom: 1px;
  width: 60%;
  float: right;
  height: 100%;
  overflow: hidden;
}

.product-card .product-title {
  font-weight: 700;
  direction: rtl;
  text-align: right;
  padding: 11px 11px 2px 11px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 14px;
  height: 70px;
  line-height: 28px;
  margin-bottom: auto;
  margin-top: -5px;
  overflow: hidden;
  overflow-wrap: break-word;
}

.product-card .product-shop {
  position: absolute;
  right: 9px;
  bottom: 3px;
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  line-height: 24px;
}

.product-card .product-shop span {
  /* color: lightseagreen; */
  display: inline-block;
  margin-left: 1px;
}

.product-card .product-price {
  position: absolute;
  bottom: 24px;
  right: 10px;
  color: rgba(0, 0, 0, 0.56);
  font-size: 0.875rem;
  line-height: 24px;
  overflow: hidden;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  white-space: pre;
}

.product-card .product-price span.price {
  font-family: "iransansNum";
}

.product-card .product-price span.currency {
  display: inline-block;
  margin: 0 3px 0 10px;
}

.product-card .product-price del {
  all: unset;
  display: inline-block;
  margin-top: 10px;
}

.product-card .product-price del i {
  position: relative;
  display: inline-block;
  font-style: normal;
}

.product-card .product-price del i::before {
  content: "";
  width: 99%;
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
  border-bottom: 2px solid rgba(255, 0, 0, 0.32);
}

.product-card-theme-1 {
  position: relative;
  background-color: #fff;
  border-radius: 9px;
}

.product-card-theme-1 figure {
  margin: 0;
  max-width: 100%;
  height: 100%;
}

.product-card-theme-1 .date {
  font-size: 12px;
  font-family: iransansNum;
  color: #ffffff;
  padding: 13px 0px 3px 0px;
  line-height: 21px;
  text-align: center;
  position: absolute;
  left: -65px;
  top: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6784313725);
  border-radius: 10px;
  width: 58px;
  opacity: 0;
  transition: left 250ms ease-out, opacity 250ms ease-out;
}

.product-card-theme-1 .day {
  font-size: 27px;
}

.product-card-theme-1 .preloader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3em;
  width: 3em;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #47bec7;
  border-radius: 50%;
  opacity: 1;
  animation: spin 1s linear infinite both;
  transition: opacity 2s 0.2s ease-out;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.product-card-theme-1 .product-link {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-clip: padding-box;
  border-radius: 5px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0px 0px 29px -3px rgba(149, 149, 149, 0.768627451);
}

.product-card-theme-1 .product-link:hover .date {
  left: 9px;
  opacity: 1;
}

.product-card-theme-1 .product-link img {
  transition: all 0.4s ease-out 0s;
}

.product-card-theme-1 .product-link:hover img {
  transform: scale(1.1);
}

.product-card-theme-1 .product-link:hover:after {
  opacity: 1;
}

.product-card-theme-1 .product-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-clip: padding-box;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.product-card-theme-1 .product-top-discount {
  position: absolute;
  font-family: "iransansNum";
  top: 15px;
  right: 15px;
  z-index: 1;
  font-size: 14px;
  padding: 10px 4px 0 5px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  background: #eb3a3f;
  color: #fff;
}

.product-card-theme-1 .product-img-container {
  position: relative;
  border-right: 1px solid #f1f1f1;
  overflow: hidden;
}

.product-card-theme-1 .product-figure {
  position: relative;
  animation: fade-in ease-in-out 1s both;
}

.product-card-theme-1 .product-text {
  color: #000;
  background-color: #fff;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 70px;
  width: 100%;
  border-top: 1px solid #eeeeee;
}

.product-card-theme-1 .product-title {
  font-weight: 700;
  direction: rtl;
  padding: 26px 15px 12px 15px;
  color: #333;
  font-size: 14px;
  line-height: 38px;
  margin-bottom: auto;
  margin-top: 0px;
  overflow: hidden;
  overflow-wrap: break-word;
}

.product-card-theme-1 .product-shop {
  position: relative;
  right: 9px;
  bottom: 3px;
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  line-height: 24px;
}

.product-card-theme-1 .product-shop span {
  /* color: lightseagreen; */
  display: inline-block;
  margin-left: 1px;
}

.product-card-theme-1 .product-price {
  position: absolute;
  height: 75px;
  bottom: 0px;
  width: calc(100% - 0px);
  right: 0;
  color: rgba(0, 0, 0, 0.87);
  font-size: 14px;
  letter-spacing: 1px;
  background-color: #fff;
}

.product-card-theme-1 .product-price span.price {
  font-family: "iransansNum";
}

.product-card-theme-1 .product-price span.currency {
  display: inline-block;
  margin: 3px 3px 0 0;
  font-family: "KalamehWeb";
  font-weight: 600;
  color: #333;
}

.product-card-theme-1 .product-price del {
  all: unset;
  display: block;
}

.product-card-theme-1 .product-price del i {
  font-family: "iransansNum";
  position: relative;
  display: inline-block;
  font-style: normal;
  color: #ec3f43;
  font-size: 13px;
}

.product-card-theme-1 .product-price del i::before {
  content: "";
  width: calc(100% + 10px);
  position: absolute;
  right: -5px;
  top: calc(50% - 2px);
  border-bottom: 1px solid #ec3f43;
}

.product-card-theme-1 .buy {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 30px;
  height: 72px;
  color: #222;
  width: 100%;
  z-index: 1;
  background-color: transparent;
  text-align: right;
}

.product-card-theme-1 .buy > form > i {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.product-card-theme-1 .buy button {
  position: absolute;
  display: block;
  font-size: 16px;
  font-family: "KalamehWeb";
  bottom: 0;
  right: 0;
  overflow: hidden;
  background: #e4ede1;
  width: 150px;
  height: 100%;
  padding: 23px 18px 20px 5px;
  text-align: center;
  opacity: 0;
  transition: width 1000ms ease, opacity 700ms ease;
}

.product-card-theme-1 .buy:hover button {
  opacity: 1;
  width: 100%;
}

.product-card-theme-1 hr {
  position: absolute;
  bottom: 56px;
  height: 1px;
  background-color: #e3e3e3;
  border: 0;
  width: 100%;
  opacity: 1;
  z-index: 2;
}

.ad-card-theme-1 {
  position: relative;
  background-color: #fff;
  border-radius: 9px;
}

.ad-card-theme-1 figure {
  margin: 0;
  max-width: 100%;
  height: 100%;
}

.ad-card-theme-1 .date {
  font-size: 12px;
  font-family: iransansNum;
  color: #ffffff;
  padding: 13px 0px 3px 0px;
  line-height: 21px;
  text-align: center;
  position: absolute;
  left: -65px;
  top: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6784313725);
  border-radius: 10px;
  width: 58px;
  opacity: 0;
  transition: left 250ms ease-out, opacity 250ms ease-out;
}

.ad-card-theme-1 .day {
  font-size: 27px;
}

.ad-card-theme-1 .preloader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3em;
  width: 3em;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #47bec7;
  border-radius: 50%;
  opacity: 1;
  animation: spin 1s linear infinite both;
  transition: opacity 2s 0.2s ease-out;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.ad-card-theme-1 .ads-link {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-clip: padding-box;
  border-radius: 5px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0px 0px 29px -3px rgba(149, 149, 149, 0.768627451);
}

.ad-card-theme-1 .ads-link:hover .date {
  left: 9px;
  opacity: 1;
}

.ad-card-theme-1 .ads-link img {
  transition: all 0.4s ease-out 0s;
}

.ad-card-theme-1 .ads-link:hover img {
  transform: scale(1.1);
}

.ad-card-theme-1 .ads-link:hover:after {
  opacity: 1;
}

.ad-card-theme-1 .ads-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-clip: padding-box;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.ad-card-theme-1 .ads-circles {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}

.ad-card-theme-1 .ads-circle {
  font-family: "iransansNum";
  font-size: 14px;
  padding: 10px 4px 0 5px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 24px;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.ad-card-theme-1 .ads-circle i {
  position: relative;
  top: 3px;
  font-size: 17px;
}

.ad-card-theme-1 .ads-badge {
  position: absolute;
  top: 15px;
  right: -5px;
  z-index: 1;
}

.ad-card-theme-1 .ads-badge .badge {
  display: block;
  min-width: 80px;
  border-radius: 5px;
  padding: 4px 15px 4px 10px;
  font-size: 12px;
  margin-top: 5px;
}

.ad-card-theme-1 .ads-img-container {
  position: relative;
  border-right: 1px solid #f1f1f1;
  overflow: hidden;
}

.ad-card-theme-1 .ads-figure {
  position: relative;
  animation: fade-in ease-in-out 1s both;
}

.ad-card-theme-1 .ads-text {
  position: relative;
  color: #000;
  background-color: #fff;
  text-align: center;
  padding-bottom: 50px;
  width: 100%;
  border-top: 1px solid #eeeeee;
}

.ad-card-theme-1 .ads-title {
  font-weight: 700;
  direction: rtl;
  padding: 13px 15px 17px 15px;
  color: #333;
  font-size: 14px;
  line-height: 32px;
  margin-bottom: auto;
  margin-top: 0px;
  overflow: hidden;
  overflow-wrap: break-word;
}

.ad-card-theme-1 .ads-shop {
  position: relative;
  right: 0;
  bottom: 6px;
  color: rgba(0, 0, 0, 0.66);
  font-size: 11px;
  line-height: 24px;
  border-top: 1px dashed #e9e9e9;
  letter-spacing: 1px;
}

.ad-card-theme-1 .ads-shop span {
  /* color: lightseagreen; */
  display: inline-block;
  margin-left: 1px;
}

.ad-card-theme-1 .ads-price {
  position: absolute;
  height: 59px;
  bottom: 0px;
  width: calc(100% - 0px);
  right: 0;
  color: rgba(0, 0, 0, 0.87);
  font-size: 14px;
  letter-spacing: 1px;
  background-color: #fff;
}

.ad-card-theme-1 .ads-price span.price {
  font-family: "iransansNum";
}

.ad-card-theme-1 .ads-price span.currency {
  display: inline-block;
  margin: 3px 3px 0 0;
  font-family: "KalamehWeb";
  font-weight: 600;
  color: #333;
}

.ad-card-theme-1 .ads-price del {
  all: unset;
  display: block;
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s ease;
}

.ad-card-theme-1 .ads-img-container .expired {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: -10px;
  font-size: 11px;
  text-align: center;
  opacity: 0.9;
  padding: 2px 0 2px 0;
  transform: translate(-50%, -50%);
}

.ad-card-theme-1:hover .ads-price del {
  opacity: 1;
}

.ad-card-theme-1 .info-bar {
  position: relative;
  display: inline-block;
  margin-bottom: 0.35em;
  direction: rtl;
  padding: 5px 0 5px 0;
  margin: 0 10px 0 10px;
  font-size: 12px;
  color: #646464;
  text-transform: uppercase;
}

.ad-card-theme-1 .info-bar .category {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 120px;
  text-align: right;
}

.ad-card-theme-1 .ads-price del i {
  font-family: "iransansNum";
  position: relative;
  display: inline-block;
  font-style: normal;
  color: #ec3f43;
  font-size: 13px;
}

.ad-card-theme-1 .ads-price del i::before {
  content: "";
  width: calc(100% + 10px);
  position: absolute;
  right: -5px;
  top: calc(50% - 2px);
  border-bottom: 1px solid #ec3f43;
}

.ad-card-theme-1 .buy {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 30px;
  height: 72px;
  color: #222;
  width: 100%;
  z-index: 1;
  background-color: transparent;
  text-align: right;
}

.ad-card-theme-1 .buy > i {
  padding: 12px;
  position: absolute;
  z-index: 0;
  color: #ccc;
  left: 0px;
  bottom: 3px;
}

.ad-card-theme-1 .buy button {
  position: absolute;
  display: block;
  font-size: 16px;
  font-family: "KalamehWeb";
  bottom: 0;
  right: 0;
  overflow: hidden;
  background: #ff9191;
  width: 150px;
  height: 56px;
  padding: 18px 18px 15px 5px;
  text-align: center;
  opacity: 0;
  transition: width 1000ms ease, opacity 700ms ease;
}

.ad-card-theme-1 .buy:hover button {
  opacity: 1;
  width: 100%;
}

.ad-card-theme-1 hr.bottom, .ad-card-theme-1 hr.top {
  position: absolute;
  bottom: 56px;
  top: auto;
  height: 1px;
  background-color: #e3e3e3;
  border: 0;
  width: 100%;
  opacity: 1;
  z-index: 2;
}

.ad-card-theme-1 hr.top {
  bottom: auto;
  top: 28px;
}

.landing-1-1 {
  overflow: hidden;
  margin: 0px 0 0px 0;
  background: #f4f4f4;
  padding: 50px 0 100px 0;
}

.landing-1-1 .wrapper {
  border-radius: 5px;
  overflow: hidden;
}

.landing-1-1 .split {
  float: right;
  width: 50%;
  min-height: 100px;
  text-align: center;
}

.landing-1-1 .split.right {
  position: relative;
  background: url("https://image.ibb.co/m3ZbRb/programmer.png") center center no-repeat;
  background-size: cover;
}

.landing-1-1 .split.right:before {
  right: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.8);
}

.landing-1-1 .split.left {
  position: relative;
  background: url("https://image.ibb.co/m56Czw/designer.jpg") center center no-repeat;
  background-size: cover;
}

.landing-1-1 .split.left:before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(223, 39, 39, 0.7);
}

.landing-1-1 .content {
  position: relative;
  margin: 100px 0 110px;
  z-index: 1;
}

.landing-1-1 .content .title {
  color: #fff;
  font-family: "KalamehWeb";
  font-weight: 600;
}

.landing-1-1 .content .description {
  font-size: 15px;
  color: #fff;
  font-family: "KalamehWeb";
  font-weight: 500;
  margin: 20px 0 0 0;
}

.landing-1-1 .content .button {
  display: block;
  width: 180px;
  margin: 50px auto 0;
  letter-spacing: 0.08em;
  padding: 16px 0 13px 0;
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: background-color 200ms, color 200ms;
}

.landing-1-1 .content .button:hover {
  background-color: rgba(255, 255, 255, 0.8392156863);
  color: #222;
  border-color: #fff;
}

@media (max-width: 991.98px) {
  .landing-1-1 {
    margin: 0;
    padding: 50px 0 90px 0;
  }
  .landing-1-1 .content {
    margin: 50px 0 40px;
  }
  .landing-1-1 .content .title {
    font-size: 19px;
  }
  .landing-1-1 .content .description {
    font-size: 14px;
  }
  .landing-1-1 .content .button {
    width: 100%;
    max-width: 120px;
    margin: 35px auto 0;
    padding: 13px 0 11px 0;
    font-size: 13px;
  }
  .landing-1-1 .section-header-10 {
    margin-bottom: 55px;
    margin-top: 0px;
  }
}
.shop-card {
  position: relative;
  background-color: #fff;
  border-radius: 9px;
}

.shop-card figure {
  margin: 0;
  max-width: 100%;
  height: 100%;
}

.shop-card .date {
  font-size: 12px;
  font-family: iransansNum;
  color: #ffffff;
  padding: 13px 0px 3px 0px;
  line-height: 21px;
  text-align: center;
  position: absolute;
  left: -65px;
  top: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6784313725);
  border-radius: 10px;
  width: 58px;
  opacity: 0;
  transition: left 250ms ease-out, opacity 250ms ease-out;
}

.shop-card .day {
  font-size: 27px;
}

.preloader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3em;
  width: 3em;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #47bec7;
  border-radius: 50%;
  opacity: 1;
  animation: spin 1s linear infinite both;
  transition: opacity 2s 0.2s ease-out;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.shop-link {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-clip: padding-box;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 1s ease;
  border-radius: 5px;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0px 0px 29px -3px rgba(149, 149, 149, 0.768627451);
}

.shop-link:hover {
  box-shadow: 0px 0px 29px -3px #959595;
}

.shop-link:hover .date {
  left: 9px;
  opacity: 1;
}

.shop-link img {
  transition: all 0.4s ease-out 0s;
}

.shop-link:hover img {
  transform: scale(1.1);
}

.shop-link:hover:after {
  opacity: 1;
}

.shop-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-clip: padding-box;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.shop-top-discount {
  position: absolute;
  font-family: "iransansNum";
  background: rgba(255, 152, 0, 0.8509803922);
  top: 7px;
  right: 6px;
  color: black;
  z-index: 1;
  font-size: 11px;
  padding: 5px 4px 0 5px;
  border-radius: 50%;
  font-weight: 700;
  height: 30px;
  width: 30px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
}

.shop-img-container {
  position: relative;
  width: 40%;
  float: left;
  border-right: 1px solid #f1f1f1;
}

.shop-figure {
  position: relative;
  animation: fade-in ease-in-out 1s both;
}

.shop-text {
  position: relative;
  color: #000;
  background-color: #fff;
  text-align: center;
  padding-bottom: 1px;
  width: 60%;
  float: right;
  height: 100%;
  overflow: hidden;
}

.shop-title {
  font-weight: 700;
  direction: rtl;
  text-align: center;
  padding: 11px 11px 2px 11px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 16px;
  height: 70px;
  line-height: 28px;
  margin-bottom: auto;
  margin-top: 5px;
  overflow: hidden;
  overflow-wrap: break-word;
}

.shop-info {
  position: absolute;
  right: 9px;
  bottom: 3px;
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  line-height: 24px;
  text-align: right;
}

.shop-info span {
  /* color: lightseagreen; */
  display: inline-block;
  margin-left: 1px;
}

.card-service-1 {
  width: 100%;
  min-width: 200px;
  height: 200px;
  background-color: #292929;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
  border: 2px solid rgba(7, 7, 7, 0.12);
  font-size: 16px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  background-image: url(/img/demo/patterns/3.webp);
  background-size: cover;
  background-position: center;
  transition: all 0.6s ease;
}

.card-service-1 .icon {
  margin: 0 auto;
  width: 100%;
  height: 80px;
  max-width: 80px;
  background: linear-gradient(90deg, #FF7E7E 0%, #FF4848 40%, rgba(0, 0, 0, 0.28) 60%);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all 0.6s ease;
  background-position: 0px;
  background-size: 200px;
}

.card-service-1 .icon i {
  font-size: 36px;
}

.card-service-1:hover .icon i {
  background: linear-gradient(90deg, #FF7E7E, #FF4848);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  transition: all 0.6s ease;
}

.card-service-1:hover .icon {
  background-position: -120px;
  transition: all 0.6s ease;
}

.card-service-1 .title {
  font-family: "KalamehWeb";
  width: 100%;
  margin: 0;
  text-align: center;
  margin-top: 30px;
  color: white;
  font-weight: 500;
}

.card-service-1:hover .text {
  transition: all 0.6s ease;
  opacity: 1;
  max-height: 40px;
  color: #FF7E7E;
}

.card-service-1 .text {
  width: 80%;
  margin: 0 auto;
  font-size: 13px;
  text-align: center;
  margin-top: 20px;
  color: white;
  font-weight: 200;
  letter-spacing: 2px;
  opacity: 0;
  max-height: 0;
  transition: all 0.6s ease;
}

.hover-scale .hover-scale-in {
  overflow: hidden;
}

.hover-scale .hover-scale-in img {
  filter: grayscale(100%);
  transform: scale(1);
  transition: ease all 0.35s;
}

.hover-scale:hover .hover-scale-in img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.hover-scale h6 a, .hover-scale .h6 a {
  color: #000;
  font-family: "KalamehWeb";
  font-weight: 700;
  font-size: 20px;
  direction: rtl;
  display: inline-block;
}

.hover-scale small, .hover-scale .small {
  font-weight: 700;
}

.profile-wrap .section-header-10 {
  margin-bottom: 60px;
  margin-top: 70px;
}

.resume {
  padding: 100px 0;
  background-color: #fafbfc;
}

.resume p {
  margin-bottom: 40px;
}

.resume-list {
  position: relative;
  padding: 0;
  list-style: none;
}

.resume-list:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  background-color: #eee;
}

.resume-list > li {
  position: relative;
  margin-bottom: 50px;
  min-height: 50px;
}

.resume-list > li:before, .resume-list > li:after {
  content: " ";
  display: table;
}

.resume-list > li .timeline-image {
  z-index: 100;
  position: absolute;
  left: 0;
  width: 70px;
  height: 70px;
  margin-left: 0;
  border: 1px solid #1b1b1b;
  border-radius: 100%;
  text-align: center;
  background: #1b1b1b;
}

.resume-list > li .timeline-image h4, .resume-list > li .timeline-image .h4 {
  color: #fff;
  margin-top: 40px;
  font-size: 12px;
  text-transform: uppercase;
}

.resume-list > li .timeline-panel {
  float: right;
  position: relative;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}

.resume-list .timeline-heading h4, .resume-list .timeline-heading .h4 {
  margin-top: 0;
  text-transform: uppercase;
  font-size: 10pt;
  font-weight: 600;
  color: #979797;
  letter-spacing: 1px;
}

.resume-list .timeline-heading h4.subheading, .resume-list .timeline-heading .subheading.h4 {
  text-transform: none;
  color: #666666;
  font-size: 13pt;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 11px 0 8px;
}

.resume-list .timeline-body > p {
  line-height: 22pt;
  font-size: 0.9rem;
  text-align: right;
  direction: rtl;
}

.resume-list .timeline-inverted .timeline-body > p {
  text-align: left;
}

.resume-list .timeline-body > p, .resume-list .timeline-body > ul {
  margin-bottom: 0;
}

.resume-list > li:after {
  clear: both;
}

.resume-list > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}

@media (min-width: 768px) {
  .resume-list:before {
    left: 50%;
  }
  .resume-list > li {
    margin-bottom: 10px;
    min-height: 100px;
  }
  .resume-list > li .timeline-image {
    left: 50%;
    width: 140px;
    height: 140px;
    margin-left: -70px;
  }
  .resume-list > li .timeline-image h4, .resume-list > li .timeline-image .h4 {
    line-height: 18px;
  }
  .resume-list > li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .resume-list > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
  .resume-list > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .resume-list > li {
    min-height: 150px;
  }
  .resume-list > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .resume-list > li .timeline-image h4, .resume-list > li .timeline-image .h4 {
    line-height: 26px;
  }
  .resume-list > li .timeline-panel {
    padding: 0 20px 20px;
  }
  .resume-list > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}
@media (min-width: 1200px) {
  .resume-list > li {
    min-height: 170px;
  }
  .resume-list > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .resume-list > li .timeline-image h4, .resume-list > li .timeline-image .h4 {
    font-weight: 400;
  }
  .resume-list > li .timeline-panel {
    padding: 10px 20px 20px 100px;
  }
  .resume-list > li.timeline-inverted > .timeline-panel {
    padding: 10px 100px 20px 20px;
  }
}
@media (max-width: 991.98px) {
  .resume-list > li .timeline-image h4, .resume-list > li .timeline-image .h4 {
    color: #fff;
    margin-top: 12px;
    font-size: 9px;
    text-transform: uppercase;
    line-height: 15px;
  }
  .timeline-heading {
    direction: rtl;
    text-align: right;
  }
  .resume {
    padding: 10px 0 0;
  }
  .resume-list > li .timeline-panel {
    padding: 0 10px 0 90px;
  }
  .resume-list .timeline-heading h4.subheading, .resume-list .timeline-heading .subheading.h4 {
    font-size: 12pt;
    line-height: 32px;
  }
  .resume-list .timeline-body > p, .resume-list .timeline-inverted .timeline-body > p {
    text-align: justify;
  }
  .resume-list > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 0 80px;
  }
}
.rudy-parallax {
  position: relative;
}

.rudy-parallax:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.rudy-section-padding {
  padding: 120px 0;
}

.rudy-parallax .content {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "KalamehWeb";
  direction: rtl;
  text-align: center;
}

.rudy-parallax h2, .rudy-parallax .h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  z-index: 1;
  line-height: 1em;
  letter-spacing: 1px;
  font-weight: 500;
}

.rudy-parallax h5, .rudy-parallax .h5 {
  font-weight: 400;
  margin-bottom: 25px;
  font-size: 17px;
  font-weight: 400;
}

.rudy-btn2 {
  padding: 13px 15px 11px 15px;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  border-radius: 31px;
  letter-spacing: 1px;
  margin-top: 15px;
  transition: color 300ms;
}

.rudy-btn2:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f21e4e;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.rudy-btn2:hover {
  color: tomato;
}

.bg-fixed {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  z-index: 4;
}

.contact {
  margin: 50px auto 50px auto;
  max-width: 800px;
  padding-bottom: 21px;
  padding-top: 15px;
  border: 1px dashed #ccc;
  border-radius: 10px;
  background: #f0f0f0;
}

.contact .title {
  font-size: 25px;
  font-weight: 700;
  font-family: "KalamehWeb";
  margin: 15px 0 25px 0;
}

.contact hr {
  border-top: 1px dashed;
}

.contact .text {
  width: 100%;
  height: 40px;
  padding: 15px 15px;
  border: 0;
  font-size: 10pt;
  background-color: transparent;
  color: #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
}

.contact .email {
  margin-top: 30px;
  width: 100%;
  height: 40px;
  padding: 15px 15px;
  border: 0;
  font-size: 10pt;
  background-color: transparent;
  color: #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
}

.contact .msg {
  margin-top: 30px;
  width: 100%;
  height: 130px;
  padding: 15px 15px;
  border: 0;
  font-size: 10pt;
  background-color: transparent;
  color: #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
  text-align: right;
  direction: rtl;
}

.contact .btn {
  background-color: #1b1b1b;
  border-radius: 0;
  color: #fff;
  font-size: 12pt;
  font-weight: 500;
  letter-spacing: 1pt;
  margin-top: 30px;
  padding: 12px 15px;
  width: 100%;
  border-radius: 5px;
  font-family: "iransans";
}

.contact .info {
  padding-bottom: 0px;
  padding-top: 40px;
  width: auto;
}

.contact .info i {
  color: #1b1b1b;
  font-size: 19pt;
  margin-bottom: 5px;
}

.contact .info h4, .contact .info .h4 {
  color: #1b1b1b;
  font-size: 10pt;
  font-weight: 300;
  letter-spacing: 1pt;
  margin: 15px 0 15px 0;
}

@media (max-width: 767.98px) {
  .contact {
    padding-top: 50px;
    padding-bottom: 30px;
    margin: 0 auto;
    max-width: 800px;
  }
  .contact .info {
    width: auto;
    padding-top: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
  }
}
.contact-1 {
  padding-top: 100px;
  padding-bottom: 50px;
  margin: 0 auto;
  max-width: 800px;
}

.contact-1 .text {
  width: 100%;
  height: 40px;
  padding: 15px 15px;
  border: 0;
  font-size: 10pt;
  background-color: transparent;
  color: #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
}

.contact-1.email {
  margin-top: 30px;
  width: 100%;
  height: 40px;
  padding: 15px 15px;
  border: 0;
  font-size: 10pt;
  background-color: transparent;
  color: #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
}

.contact-1 .msg {
  margin-top: 30px;
  width: 100%;
  height: 130px;
  padding: 15px 15px;
  border: 0;
  font-size: 10pt;
  background-color: transparent;
  color: #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
  text-align: right;
  direction: rtl;
}

.contact-1 .btn {
  font-weight: 500;
  font-size: 8pt;
  letter-spacing: 1pt;
  color: #fff;
  background-color: #1b1b1b;
  border-radius: 0px;
  padding: 15px 40px;
  width: 100%;
  margin-top: 50px;
}

.contact-1 .info {
  width: auto;
  padding-top: 30px;
  padding-bottom: 80px;
  border-bottom: 1px solid #dcdcdc;
}

.contact-1 .info i {
  font-size: 19pt;
  margin-bottom: 25px;
  color: #1b1b1b;
}

.contact-1 .info h4, .contact-1 .info .h4 {
  color: #1b1b1b;
  font-size: 10pt;
  letter-spacing: 1pt;
  font-weight: 300;
}

@media (max-width: 767.98px) {
  .contact-1 {
    padding-top: 50px;
    padding-bottom: 30px;
    margin: 0 auto;
    max-width: 800px;
  }
  .contact-1 .info {
    width: auto;
    padding-top: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
  }
}
.subscribe2 {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 30px;
  background-color: #cdcdcd;
  border-top: 1px solid #a5a5a5;
  border-bottom: 1px solid #a5a5a5;
}

.subscribe2 .uppercase {
  text-transform: uppercase;
}

.subscribe2 h6, .subscribe2 .h6 {
  direction: rtl;
  text-align: left;
  margin-top: 13px;
  letter-spacing: 0pt;
  text-transform: capitalize;
  font-weight: 900;
  font-family: "KalamehWeb";
  font-size: 39px;
  color: #616161;
  text-shadow: #e0e0e0 1px 1px 0;
}

.subscribe2 .container__item {
  direction: rtl;
  position: relative;
  max-width: 410px;
  margin-right: 0;
}

.subscribe2 .btn--primary {
  background: #424242;
  color: #fff;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 12px 36px;
}

.subscribe2 .btn--primary:hover {
  background: #6c7ff2;
}

.subscribe2 .btn--primary:active {
  background: #7f8ff4;
  box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.subscribe2 .btn--inside {
  position: absolute;
  left: -55px;
  top: 8px;
  border-radius: 3px;
}

.subscribe2 .row button, .subscribe2 .row button span {
  display: inline-block;
  transform: rotateY(0);
  transition: transform 0.5s linear;
}

.subscribe2 .row:hover button span, .subscribe2 .row:hover button {
  transform: rotateY(180deg);
}

.subscribe2 .form__field {
  width: 100%;
  background: #fff;
  color: #a3a3a3;
  font: inherit;
  outline: 0;
  padding: 21px 18px 21px 18px;
  border: 1px solid #939393;
  border-radius: 1px;
}

@media (max-width: 991.98px) {
  .subscribe2 {
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .subscribe2 .btn--inside {
    top: 8px;
  }
  .subscribe2 h6, .subscribe2 .h6 {
    margin-top: 0px;
    margin-bottom: 13px;
    direction: rtl;
    text-align: center;
    font-size: 20px;
  }
  .subscribe2 .btn--inside {
    left: 8px;
  }
}
.subscribe3 {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 30px;
}

.subscribe3 .uppercase {
  text-transform: uppercase;
}

.subscribe3 .container__item {
  direction: rtl;
  position: relative;
  max-width: 600px;
  margin-right: 0;
}

.subscribe3 .btn--primary {
  background-color: #e04622;
  border-color: #e04622 #e04622 #b63719;
  color: #fff;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 12px 26px;
}

.subscribe3 .btn--primary:hover {
  background: #424242;
  border-color: #424242;
}

.subscribe3 .btn--primary:active {
  background: #424242;
  border-color: #424242;
  box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.subscribe3 .btn--inside {
  position: absolute;
  left: 8px;
  top: 8px;
  border-radius: 3px;
}

.subscribe3 button, .subscribe3 button span {
  display: inline-block;
  transform: rotateY(0);
  transition: transform 0.5s linear;
}

.subscribe3:hover button span, .subscribe3:hover button {
  transform: rotateY(180deg);
}

.subscribe3 .form__field {
  width: 100%;
  background: #fff;
  color: #a3a3a3;
  font: inherit;
  outline: 0;
  padding: 21px 18px 21px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 1px;
}

@media (max-width: 991.98px) {
  .subscribe3 {
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .subscribe3 .btn--inside {
    top: 8px;
  }
  .subscribe3 .btn--inside {
    left: 8px;
  }
}
.subscribe5 {
  padding-bottom: 30px;
  padding-top: 15px;
}

.subscribe5 .uppercase {
  text-transform: uppercase;
}

.subscribe5 h6, .subscribe5 .h6 {
  direction: rtl;
  text-align: left;
  margin-top: 13px;
  letter-spacing: 0pt;
  text-transform: capitalize;
  font-weight: 900;
  font-family: "KalamehWeb";
  font-size: 39px;
  color: #616161;
  text-shadow: #e0e0e0 1px 1px 0;
}

.subscribe5 .container__item {
  direction: rtl;
  position: relative;
  margin-right: 0;
}

.subscribe5 .btn--primary {
  background: #424242;
  color: #fff;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 12px 26px;
}

.subscribe5 .btn--primary:hover {
  background: #6c7ff2;
}

.subscribe5 .btn--primary:active {
  background: #7f8ff4;
  box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.subscribe5 .btn--inside {
  position: absolute;
  left: 8px;
  top: 8px;
  border-radius: 3px;
}

.subscribe5 form button, .subscribe5 form button span {
  display: inline-block;
  transform: rotateY(0);
  transition: transform 0.5s linear;
}

.subscribe5 form:hover button span, .subscribe5 form:hover button {
  transform: rotateY(180deg);
}

.subscribe5 .form__field {
  width: 100%;
  background: #fff;
  color: #a3a3a3;
  font: inherit;
  outline: 0;
  padding: 21px 18px 21px 18px;
  border-radius: 1px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.04) !important;
}

@media (max-width: 991.98px) {
  .subscribe5 {
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .subscribe5 .btn--inside {
    top: 8px;
  }
  .subscribe5 h6, .subscribe5 .h6 {
    margin-top: 0px;
    margin-bottom: 13px;
    direction: rtl;
    text-align: center;
    font-size: 20px;
  }
  .subscribe5 .btn--inside {
    left: 8px;
  }
}
.order-service .accordion-item {
  box-shadow: 0px 0px 29px -3px #959595;
}

.order-service .accordion-header .form-check {
  min-height: 1.5rem;
  padding-left: auto;
  padding-right: 1.5em;
}

.order-service .accordion-header .form-check .form-check-input {
  float: right;
  margin-left: -0.5em;
  top: 14px;
  right: 6px;
  font-size: 20px;
}

.order-service .form-check:hover .form-check-input:not(:checked),
.order-service tr:hover .form-check-input:not(:checked) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.order-service .accordion-header label {
  margin-right: 25px;
  position: relative;
  top: 13px;
  direction: rtl;
  font-family: "KalamehWeb";
  font-weight: 700;
  font-size: 22px;
  height: 58px;
}

.order-service .accordion-header label {
  cursor: pointer;
}

.order-service .form-check-input[disabled] ~ .form-check-label,
.order-service .form-check-input:disabled ~ .form-check-label {
  opacity: 1;
  cursor: default;
}

.order-service .accordion-header label span {
  font-size: 12px;
  color: red;
  font-family: "iransans";
  position: relative;
  top: 0;
  right: 8px;
}

.order-service .accordion-header .accordion-button {
  position: absolute;
  left: 0;
  top: 0px;
  background-color: rgba(255, 255, 255, 0.031372549);
  color: #2e3135;
  width: 180px;
  height: 68px;
  border-right: 1px solid #e5e5e5;
  font-family: "KalamehWeb";
  font-weight: 500;
}

.order-service .accordion-button:focus {
  z-index: 3;
  border-color: #e5e5e5;
  outline: 0;
  box-shadow: none;
}

.order-service .accordion-button:hover {
  background-color: #f5ffc8;
}

.order-service .accordion-button:not(.collapsed) {
  background-color: #f5ffc8;
  box-shadow: none;
}

.order-service .accordion-body {
  direction: rtl;
  padding: 0;
}

.order-service .accordion-body h5, .order-service .accordion-body .h5 {
  font-family: "KalamehWeb";
  font-size: 19px;
  padding: 2rem 2rem 0 2rem;
}

.order-service .accordion-body p {
  font-size: 15px;
  line-height: 30px;
  padding: 0 2rem 0 2rem;
}

.order-service .accordion-body .info-price {
  color: #009688;
  font-weight: 600;
  text-align: center;
}

.order-service .accordion-body .info-price span {
  color: red;
  font-size: 21px;
}

.order-service .accordion-body .price {
  font-size: 27px;
  font-weight: 700;
  position: relative;
  text-align: center;
}

.order-service .accordion-body .price del {
  display: inline-block;
  font-size: 20px;
  color: rgba(255, 35, 1, 0.4);
  margin-top: 10px;
}

.order-service .accordion-body span.currency {
  font-size: 16px;
}

.order-service .accordion-body span.trade-price {
  font-size: 13px;
  color: #ff1a1a;
  font-weight: 500;
}

.order-service .title-help {
  font-family: "KalamehWeb";
  text-align: right;
  direction: rtl;
}

.order-service h4.title-help, .order-service .title-help.h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0 10px 0;
}

.order-service .list-help {
  line-height: 35px;
  color: #000;
  font-size: 15px;
}

.order-service .list-help input {
  position: relative;
  margin: 4px 5px 0 5px;
}

.order-service .list-help i.bg-3colors {
  position: relative;
  padding-left: 5px;
  font-size: 20px;
  top: 2px;
}

.list-notes {
  direction: rtl;
}

.order-title {
  cursor: help;
}

.form-check-inline {
  display: inline-block;
  margin-left: 0;
  padding-left: 0.5em;
}

.form-check .form-check-input {
  float: right;
  margin-right: -1.5em;
  position: relative;
  top: -3px;
}

.form-check-input {
  width: 1.5em;
  height: 1.5em;
}

.form-check-input ~ .form-check-label {
  margin-right: 10px;
  position: relative;
  top: 2px;
  direction: rtl;
}

.table-h-code {
  max-width: 10px;
  text-align: center;
}

.table-code {
  text-align: center;
  max-width: 20px;
}

.table-price span {
  font-size: 1.2rem;
  position: relative;
  top: 3px;
  color: #000;
}

.table-h-price,
.table-price {
  text-align: center;
  max-width: 80px;
}

.table-required {
  position: relative;
  top: 3px;
  right: 0px;
  color: #ff1100;
  letter-spacing: 1px;
  display: inline-block;
  font-size: 11px !important;
  font-weight: 600;
}

.table-help {
  position: relative;
  top: 3px;
  right: 6px;
  color: #2a93ff;
  border-bottom: 1px dotted #2a93ff;
  letter-spacing: 1px;
  cursor: help;
  display: inline-block;
}

.table-title span {
  font-size: 13px;
  top: 1px;
  position: relative;
}

.table-consideration span {
  position: relative;
  top: 3px;
  font-size: 13px !important;
  color: #a5a5a5;
}

@media (max-width: 991.98px) {
  .order-service .accordion-header .form-check .form-check-input {
    top: 10px;
  }
  .order-service .accordion-header label {
    margin-right: 19px;
    top: 14px;
    font-size: 15px;
    height: 50px;
  }
  .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
  }
  .order-service .accordion-header .accordion-button {
    left: 0px;
    top: 0;
    width: 115px;
    height: 59px;
  }
  .order-service .accordion-body h5, .order-service .accordion-body .h5 {
    font-size: 17px;
    line-height: 30px;
    padding: 1rem 1rem 0 1rem;
  }
  .order-service .accordion-body p {
    font-size: 13px;
    line-height: 29px;
    padding: 0 1rem 0 1rem;
    text-align: justify;
    margin-top: -5px;
  }
  .table-h-price,
  .table-price {
    max-width: auto;
    text-align: left;
    min-width: 100px;
  }
  .form-check-input ~ .form-check-label {
    margin-right: 8px;
    top: 1px;
  }
  .table-help {
    top: 1px;
    right: -5px;
    font-size: 11px;
  }
  .order-service .accordion-body .price {
    font-size: 35px;
  }
  .order-service .list-help {
    font-size: 13px;
  }
}
@media (max-width: 50em) {
  .table-code,
  .table-h-code {
    display: none;
  }
  .form-check-inline {
    margin-left: auto;
    margin-right: 22px;
  }
}
.step-indicator {
  display: flex;
  align-items: center;
  padding: 0 10px;
  flex-direction: row;
  margin: 50px 0 50px 0;
}

.step {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.step-indicator .step-icon {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: #5e5e5e;
  font-size: 10px;
  text-align: center;
  color: #ffffff;
  position: relative;
  line-height: 51px;
  font-size: 23px;
}

.step.active .step-icon {
  background: tomato;
}

.step p {
  text-align: center;
  position: absolute;
  top: 65px;
  color: #5e5e5e;
  font-size: 14px;
  font-weight: 600;
  min-width: 100px;
}

.step.active p {
  color: tomato;
}

.step.step2 p,
.step.step3 p {
  left: 50%;
  transform: translateX(-50%);
}

.indicator-line {
  width: 100%;
  height: 2px;
  background: #c2c2c2;
  flex: 1;
}

.indicator-line.active {
  background: tomato;
}

@media (max-width: 991.98px) {
  .step-indicator {
    margin: 20px 0 15px 0;
  }
}
@media screen and (max-width: 500px) {
  .step p {
    font-size: 11px;
    bottom: -20px;
  }
}
.step-indicator {
  display: flex;
  align-items: center;
  padding: 0 10px;
  flex-direction: row;
  margin: 50px 0 50px 0;
}

.step {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.step-indicator .step-icon {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: #5e5e5e;
  font-size: 10px;
  text-align: center;
  color: #ffffff;
  position: relative;
  line-height: 51px;
  font-size: 23px;
}

.step.active .step-icon {
  background: tomato;
}

.step p {
  text-align: center;
  position: absolute;
  top: 65px;
  color: #5e5e5e;
  font-size: 14px;
  font-weight: 600;
  min-width: 100px;
}

.step.active p {
  color: tomato;
}

.step.step2 p,
.step.step3 p {
  left: 50%;
  transform: translateX(-50%);
}

.indicator-line {
  width: 100%;
  height: 2px;
  background: #c2c2c2;
  flex: 1;
}

.indicator-line.active {
  background: tomato;
}

.bg-opacity, .text-opacity {
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .step-indicator {
    margin: 10px 0 5px 0;
  }
}
@media screen and (max-width: 500px) {
  .step p {
    font-size: 11px;
    bottom: -20px;
  }
}
.content-headline {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  margin: 40px 0 40px 0;
}

.content-headline h2, .content-headline .h2 {
  background-color: #f3f3f3;
  display: inline-block;
  margin: 0;
  padding: 0 20px;
  position: relative;
  font-weight: 700;
  font-size: 24px;
}

.content-headline:before {
  content: "";
  height: 1px;
  background-color: #cb2027;
  width: 100%;
  display: block;
  position: absolute;
  top: 15px;
}

ul.index {
  margin: 0px;
  padding: 0px;
  min-width: 190px;
  direction: rtl;
  text-align: right;
}

ul.index li {
  position: relative;
  margin: 0px;
  padding: 0px;
  display: block;
}

ul.index li > a {
  display: block;
  line-height: 1.6rem;
  text-decoration: none;
  position: relative;
  direction: rtl;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
  transition: all 200ms linear;
  color: #13426b;
}

ul.index li i {
  top: 3px;
  right: 7px;
  left: auto;
  color: #f4364c;
  position: relative;
  transform: rotate(0);
}

ul.index li > a:hover {
  background: #e7e7e7;
  color: #13426b;
  padding: 10px 12px 10px 12px !important;
}

.index-content {
  background: #fff;
  padding: 30px 15px 30px 15px;
  border-radius: 13px;
  border: 1px solid #dfdfdf;
  margin: 30px 0 30px 0;
}

.article figure span {
  color: #461e1e;
  font-size: 13px;
  display: block;
  padding: 12px 0 12px;
}

.article figure img {
  border-radius: 13px;
  max-width: 100%;
  height: auto;
}

.article .article-title {
  font-size: 23px;
  line-height: 45px;
  font-weight: 700;
  direction: rtl;
  text-align: right;
}

.article .description {
  border: 1px solid #dfdfdf;
  background: #717171;
  padding: 15px 20px 15px 20px;
  direction: rtl;
  line-height: 31px;
  margin: 10px 0 20px 0;
  border-radius: 13px;
  font-size: 15px;
  color: #fdfdfd;
}

.article .infoxbox {
  color: #ccc;
  padding: 10px;
  direction: rtl;
}

.article .infoxbox a {
  color: #ccc;
}

.article .hr-info {
  max-width: 924px;
  margin: 5px 0 15px;
  color: #ccc;
}

.article .body-part {
  padding: 15px 0 15px;
}

.article > figure, .article > p, .article > h3, .article > .h3, .article .body-part {
  max-width: 926px;
  margin: 0 auto;
}

.article p {
  direction: rtl;
  text-align: justify;
  line-height: 34px;
  font-size: 16px;
}

.article h3, .article .h3 {
  font-size: 18px;
  font-weight: 600;
  direction: rtl;
  line-height: 35px;
  margin-bottom: 8px;
}

.article blockquote {
  position: relative;
  padding: 30px 70px 0;
  color: #000;
  text-align: center;
  font-size: 17px;
  line-height: 34px;
  direction: rtl;
}

.article blockquote:before {
  content: "";
  height: 60px;
  display: flex;
  background: url(/img/demo/quote.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 30px;
}

.article .entry-footer {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0;
}

.article .entry-tag {
  max-width: 1000px;
  margin: 0 auto;
}

.article .entry-tag > a {
  border: 2px solid #000;
  border-radius: 40px;
  color: #000;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 33px;
  line-height: 31px;
  margin: 5px 3px;
  padding: 0px 20px 0px 20px;
  text-transform: lowercase;
  direction: rtl;
  transition: all 0.3s;
}

.article .entry-tag > a:hover, .entry-tag > a:focus {
  background-color: #000;
  color: #fff;
}

.article .before-title {
  margin: 0;
  text-align: right;
  color: #858585;
}

.article .bg-black, .article .bg-dark {
  color: #e7e7e7;
}

.article .body-text {
  padding: 0 0;
}

.article .row {
  direction: ltr;
}

@media (max-width: 991.98px) {
  .article .body-part {
    padding: 15px 10px 15px 10px;
  }
  .article .infoxbox {
    padding: 0 10px 0 10px;
    font-size: 11px;
  }
  .article blockquote {
    padding: 30px 15px 0;
  }
  .article iframe, .article .body-image figure img {
    border-radius: 0;
  }
}
.reportage {
  background-image: url(/img/demo/bg-2.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}

.reportage .body {
  margin-top: 40px;
}

.reportage figure span {
  color: #461e1e;
  font-size: 13px;
  display: block;
  padding: 12px 0 12px;
}

.reportage figure img {
  border-radius: 13px;
  max-width: 100%;
  height: auto;
}

.reportage .reportage-title {
  font-size: 60px;
  /* line-height: 45px; */
  font-weight: 900;
  direction: rtl;
  text-align: center;
  font-family: "KalamehWeb";
  margin-top: 51px;
}

.reportage .description {
  font-family: "KalamehWeb";
  direction: rtl;
  border-radius: 13px;
  font-size: 15px;
  color: #303030;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin: 25px 0;
}

.reportage .infoxbox {
  color: #ccc;
  padding: 10px;
  direction: rtl;
}

.reportage .infoxbox a {
  color: #ccc;
}

.reportage .hr-info {
  max-width: 924px;
  margin: 5px 0 15px;
  color: #ccc;
}

.reportage .body-part {
  padding: 0;
}

.reportage > figure, .reportage > p, .reportage > h3, .reportage > .h3, .reportage .body-part {
  max-width: 926px;
  margin: 0 auto;
}

.reportage p {
  direction: rtl;
  text-align: justify;
  line-height: 2.5rem;
  font-size: 16px;
  margin: 10px 34px 30px 0;
}

.reportage .body-auto p {
  text-align: right;
  direction: rtl;
}

.reportage .body-right p {
  text-align: "right";
  direction: "rtl";
}

.reportage .body-left p {
  text-align: "left";
  direction: "ltr";
}

.reportage .body-center p {
  text-align: "center";
  direction: rtl;
}

.reportage .tick-wrap {
  margin-top: -20px;
}

.reportage .btn.btn-giant {
  font-size: 32px;
  padding: 18px 18px 15px 18px;
  font-family: "KalamehWeb";
  font-weight: 900;
  border-radius: 10px;
}

.reportage .tick-wrap p {
  margin: 15px 50px 70px 60px;
}

.reportage h3, .reportage .h3 {
  font-size: 25px;
  font-weight: 500;
  direction: rtl;
  line-height: 35px;
  margin-bottom: 0;
  font-family: "KalamehWeb";
}

.reportage h2, .reportage .h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  font-family: "KalamehWeb";
  letter-spacing: 0px;
  margin: 30px 0 20px 0;
  color: #404040;
}

.reportage h3.giant-text, .reportage .giant-text.h3 {
  font-size: 150px;
  font-family: "KalamehWeb";
  font-weight: 900;
  line-height: normal;
  margin: auto;
}

.reportage h4, .reportage .h4, .reportage .tick-wrap h5, .reportage .tick-wrap .h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  margin: 10px 5px;
  direction: rtl;
}

.reportage .tick-wrap h5, .reportage .tick-wrap .h5 {
  font-size: 18px;
  margin: 10px 20px;
}

.reportage h4 i, .reportage .h4 i {
  position: relative;
  font-size: 36px;
  top: 8px;
  right: -7px;
  min-width: 39px;
  min-height: 39px;
}

.reportage .tick-wrap h5 i, .reportage .tick-wrap .h5 i {
  position: relative;
  font-size: 30px;
  top: 7px;
  right: -14px;
}

.reportage blockquote {
  position: relative;
  padding: 30px 70px 0;
  color: #000;
  text-align: center;
  font-size: 17px;
  line-height: 34px;
  direction: rtl;
}

.reportage blockquote:before {
  content: "";
  height: 60px;
  display: flex;
  background: url(/img/demo/quote.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 30px;
}

.reportage .entry-footer {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0;
}

.reportage .entry-tag {
  max-width: 1000px;
  margin: 0 auto;
}

.reportage .entry-tag > a {
  border: 2px solid #000;
  border-radius: 40px;
  color: #000;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 33px;
  line-height: 31px;
  margin: 5px 3px;
  padding: 0px 20px 0px 20px;
  text-transform: lowercase;
  direction: rtl;
  transition: all 0.3s;
}

.reportage .entry-tag > a:hover, .entry-tag > a:focus {
  background-color: #000;
  color: #fff;
}

.reportage .before-title {
  margin: 0;
  text-align: right;
  color: #858585;
}

.reportage .bg-black, .reportage .bg-dark {
  color: #e7e7e7;
}

.reportage .body-text {
  padding: 30px 0;
}

.reportage .row {
  direction: ltr;
}

@media (max-width: 991.98px) {
  .reportage .body-part {
    padding: 15px 10px 15px 10px;
  }
  .reportage .infoxbox {
    padding: 0 10px 0 10px;
    font-size: 11px;
  }
  .reportage blockquote {
    padding: 30px 15px 0;
  }
  .reportage iframe, .reportage .body-image figure img {
    border-radius: 0;
  }
  .reportage .body-right_embed .row, .reportage .body-right_img .row {
    display: flex;
    flex-direction: column-reverse;
  }
  .reportage .reportage-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 25px;
  }
  .reportage .description {
    font-size: 21px;
    margin: 10px 0;
  }
  .reportage .giant-text.h3, .reportage h3.giant-text {
    margin-top: -30px;
  }
  .reportage .h2, .reportage h2 {
    font-size: 20px;
  }
}
.order-service .title {
  font-size: 60px;
  /* line-height: 45px; */
  font-weight: 900;
  direction: rtl;
  text-align: center;
  font-family: "KalamehWeb";
  margin-top: 51px;
}

.order-service .description {
  font-family: "KalamehWeb";
  direction: rtl;
  border-radius: 13px;
  font-size: 15px;
  color: #303030;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin: 25px 0;
}

.tab-wraper {
  position: relative;
  /* left: 0; */
  /* top: 0; */
  /* right: 0; */
  /* bottom: 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
  margin: 60px 0 50px;
}

.tabs {
  display: flex;
  position: relative;
  background-color: rgba(244, 244, 244, 0.44);
  padding: 0.75rem;
  border-radius: 99px;
  box-shadow: 0px 0px 29px -3px #959595;
}

.tabs * {
  z-index: 2;
}

.tabs input[type=radio] {
  display: none;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 210px;
  font-size: 16px;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
  font-weight: 700;
}

.tabs label:hover {
  color: #767676;
}

.tabs input[type=radio]:checked + label {
  color: #fff;
}

.tabs input[id=radio-0]:checked ~ .glider {
  transform: translateX(0);
}

.tabs input[id=radio-1]:checked ~ .glider {
  transform: translateX(-100%);
}

.tabs input[id=radio-2]:checked ~ .glider {
  transform: translateX(-200%);
}

.glider {
  position: absolute;
  display: flex;
  height: 54px;
  width: 210px;
  z-index: 1;
  border-radius: 99px;
  transition: 0.25s ease-out;
  background-color: #2f2f2f;
  background-image: linear-gradient(to right, #ce5762, #286bd7);
}

.static .header {
  position: relative;
}

.static .header h3, .static .header .h3 {
  font-size: 15px;
  font-weight: 700;
  position: relative;
  bottom: -9px;
  right: 1px;
}

.static .header a {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 12px;
  color: #111;
}

.static .header a i {
  position: relative;
  top: 0px;
  font-size: 14px;
  margin: 0 3px 0 3px;
}

.static .header a:hover {
  color: tomato;
}

.static .body h6, .static .body .h6 {
  font-weight: 600;
  font-size: 14px;
  color: tomato;
  margin-bottom: 5px;
}

.static .body p {
  font-size: 13px;
  line-height: 25px;
  text-align: justify;
  margin-bottom: 30px;
}

.static .body strong {
  font-size: 12px;
}

.list-help .big-number {
  font-size: 15px;
  position: relative;
  top: 1px;
}

.content-creator {
  max-width: 750px;
  margin: 0 auto;
}

.content-creator .form-check {
  min-height: 2.5rem;
  margin-bottom: 42px;
  position: relative;
}

.content-creator .form-check-input ~ .form-check-label {
  position: absolute;
  margin-right: 34px;
  top: -14px;
  width: 100%;
  right: -34px;
  height: 58px;
  border-radius: 5px;
  line-height: 60px;
  padding-right: 54px;
  padding-left: 10px;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  box-shadow: 0px 0px 29px -3px rgba(149, 149, 149, 0.4196078431);
}

.content-creator .form-check-input ~ .form-check-label:hover {
  background: lightgoldenrodyellow;
}

.content-creator .form-check-input ~ .form-check-label span.language {
  font-weight: 700;
  float: right;
  font-size: 16px;
}

.content-creator .form-check-input ~ .form-check-label span.language-form {
  font-size: 13px;
}

.content-creator .field-info {
  color: #979797;
  font-size: 12px;
  margin: 10px 5px 30px;
  display: block;
}

.content-creator .field-info i {
  position: relative;
  top: 2px;
  width: 15px;
}

.content-creator .form-check-input ~ .form-check-label div {
  border-right: 1px dashed #e9e9e9;
  text-align: center;
  width: 140px;
  height: 100%;
  float: left;
  line-height: 24px;
  padding-top: 5px;
}

.content-creator .form-check-input ~ .form-check-label span.name {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.content-creator .form-check-input ~ .form-check-label span.price {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  color: #000000;
}

.content-creator .form-check .form-check-input {
  margin-right: 15px;
  width: 2em;
  height: 2em;
  z-index: 1;
  top: -2px;
}

.content-creator .form-check .form-text-input {
  position: relative;
  top: -14px;
  right: 0;
  left: 0;
  width: 100%;
  min-height: 58px;
  border-radius: 5px;
  line-height: 60px;
  padding-right: 15px;
  padding-left: 15px;
  overflow: hidden;
  text-align: right;
  cursor: auto;
  box-shadow: 0px 0px 29px -3px rgba(149, 149, 149, 0.4196078431);
}

.content-creator .form-check .form-text-label {
  position: absolute;
  left: 17px;
  font-size: 12px;
  top: 2px;
}

.content-creator .form-floating > .form-control {
  font-family: "iransansNum";
  text-align: center;
  background: rgba(255, 176, 0, 0);
  font-size: 20px;
  padding-top: 36px;
  color: #3e90ef;
  font-weight: 700;
  background: rgba(235, 235, 235, 0.1882352941);
}

.content-creator .form-floating > .form-select {
  font-family: "iransansNum";
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.content-creator .show-range {
  position: absolute;
  left: 14px;
  top: -4px;
  font-size: 24px;
  color: #3e90ef;
}

label.range-label {
  font-weight: 700;
  font-size: 15px;
}

label.radios-label {
  position: relative;
  top: -20px;
}

@media (max-width: 991.98px) {
  .order-service .title {
    font-size: 30px;
    margin-top: 10px;
  }
  .order-service .description {
    font-size: 17px;
    margin: 10px 0;
  }
  .tab {
    width: 148px;
    font-size: 16px;
  }
  .glider {
    width: 148px;
  }
  label.radios-label {
    line-height: 28px;
  }
}
.iproducts {
  background-image: url(/img/demo/bg-2.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}

.iproducts .body {
  margin-top: 10px;
}

.iproducts .title-body {
  margin: 5px 0 -15px 0;
  font-size: 21px;
  font-weight: 600;
}

.iproducts figure span {
  color: #461e1e;
  font-size: 13px;
  display: block;
  padding: 12px 0 12px;
}

.iproducts figure img {
  border-radius: 13px;
  max-width: 100%;
  height: auto;
}

.iproducts .iproducts-title {
  font-size: 21px;
  line-height: 45px;
  font-weight: 700;
  direction: rtl;
  text-align: right;
  font-family: "KalamehWeb";
  margin-top: 51px;
}

.iproducts .iproducts-description {
  direction: rtl;
  color: #303030;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0;
  padding-bottom: 8px;
  line-height: 25px;
  border-bottom: 1px dotted #ccc;
}

.iproducts .infoxbox {
  color: #ccc;
  padding: 10px;
  direction: rtl;
}

.iproducts .infoxbox a {
  color: #ccc;
}

.iproducts .hr-info {
  max-width: 924px;
  margin: 5px 0 15px;
  color: #ccc;
}

.iproducts .body-part {
  padding: 15px 0 15px;
}

.iproducts > figure, .iproducts > p, .iproducts > h3, .iproducts > .h3, .iproducts .body-part {
  max-width: 926px;
  margin: 0 auto;
}

.iproducts p {
  direction: rtl;
  text-align: justify;
  line-height: 2.1rem;
  font-size: 16px;
  margin: 10px 0px 5px 0;
}

.iproducts .body-auto p {
  direction: rtl;
}

.iproducts .body-right p {
  text-align: "right";
  direction: "rtl";
}

.iproducts .body-left p {
  text-align: "left";
  direction: "ltr";
}

.iproducts .body-center p {
  text-align: "center";
  direction: rtl;
}

.iproducts .tick-wrap {
  margin-top: -20px;
}

.iproducts .btn.btn-giant {
  font-size: 32px;
  padding: 18px 18px 15px 18px;
  font-family: "KalamehWeb";
  font-weight: 900;
  border-radius: 10px;
}

.iproducts .tick-wrap p {
  margin: 15px 50px 70px 60px;
}

.iproducts h3, .iproducts .h3 {
  font-size: 25px;
  font-weight: 500;
  direction: rtl;
  line-height: 35px;
  margin-bottom: 0;
  font-family: "KalamehWeb";
}

.iproducts h2, .iproducts .h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  font-family: "KalamehWeb";
  letter-spacing: 0px;
  margin: 30px 0 20px 0;
  color: #404040;
}

.iproducts h3.giant-text, .iproducts .giant-text.h3 {
  font-size: 150px;
  font-family: "KalamehWeb";
  font-weight: 900;
  line-height: normal;
  margin: auto;
}

.iproducts h4, .iproducts .h4, .iproducts .tick-wrap h5, .iproducts .tick-wrap .h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  margin: 10px 5px;
  direction: rtl;
}

.iproducts .tick-wrap h5, .iproducts .tick-wrap .h5 {
  font-size: 18px;
  margin: 10px 20px;
}

.iproducts h4 i, .iproducts .h4 i {
  position: relative;
  font-size: 30px;
  top: 5px;
  right: -7px;
}

.iproducts .tick-wrap h5 i, .iproducts .tick-wrap .h5 i {
  position: relative;
  font-size: 30px;
  top: 7px;
  right: -14px;
}

.iproducts blockquote {
  position: relative;
  padding: 30px 70px 0;
  color: #000;
  text-align: center;
  font-size: 17px;
  line-height: 34px;
  direction: rtl;
}

.iproducts blockquote:before {
  content: "";
  height: 60px;
  display: flex;
  background: url(/img/demo/quote.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 30px;
}

.iproducts .entry-footer {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0;
}

.iproducts .entry-tag {
  max-width: 1000px;
  margin: 0 auto;
}

.iproducts .entry-tag > a {
  border: 2px solid #000;
  border-radius: 40px;
  color: #000;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 33px;
  line-height: 31px;
  margin: 5px 3px;
  padding: 0px 20px 0px 20px;
  text-transform: lowercase;
  direction: rtl;
  transition: all 0.3s;
}

.iproducts .entry-tag > a:hover, .entry-tag > a:focus {
  background-color: #000;
  color: #fff;
}

.iproducts .before-title {
  margin: 0;
  text-align: right;
  color: #858585;
}

.iproducts .bg-black, .iproducts .bg-dark {
  color: #e7e7e7;
}

.iproducts .body-text {
  padding: 30px 0;
}

.iproducts .row {
  direction: ltr;
}

.iproducts-info-1 {
  line-height: 28px;
  padding: 5px 0 3px 0;
}

.iproducts-info-1 .spacer {
  border-left: 1px solid #dcdcdc;
  display: inline-block;
}

.iproducts-socials {
  position: absolute;
  top: 57px;
  left: 5px;
}

.iproducts-socials button {
  display: block;
  color: #6c6c6c;
  font-size: 23px;
  margin-bottom: 0;
}

.iproducts-shop {
  background-color: #fff;
  border-radius: 4px;
  direction: rtl;
  border: 1px solid rgba(0, 0, 0, 0.125);
  padding: 5px;
  margin-top: 25px;
}

.iproducts-shop > img {
  height: 64px;
  width: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.iproducts-shop-name {
  color: #000;
  line-height: 30px;
  margin: 5px 10px 0 0;
  text-align: right;
}

.iproducts-shop-name strong {
  color: #000;
  display: block;
}

.iproducts-shop-name a {
  margin-right: auto;
}

.iproducts-shop-go {
  margin-right: auto;
  position: relative;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 12px 12px 0 0;
  color: #000;
  top: 13px;
  left: 8px;
  background: transparent;
  transition: background 0.2s linear;
}

.iproducts-shop-go i {
  position: relative;
  font-size: 20px;
  top: -3px;
  left: 4px;
}

.iproducts-shop:hover .iproducts-shop-go {
  background: #ededed;
  border: 1px solid #ebebeb;
}

.iproducts-help-wrap {
  margin: 15px 15px 0 0;
}

.iproducts-help-wrap > p {
  font-family: "KalamehWeb";
  font-weight: 600;
}

.iproducts-help {
  display: block;
  direction: rtl;
  padding: 5px;
  border-bottom: 1px dashed #ccc;
  margin-left: 15px;
}

.iproducts-help i {
  position: relative;
  top: 2px;
  padding: 5px;
  color: rgba(0, 0, 0, 0.56);
  transition: color 0.2s linear;
}

.iproducts-help span {
  padding: 5px;
  color: rgba(0, 0, 0, 0.56);
  transition: color 0.2s linear;
}

.iproducts-help:hover span, .iproducts-help:hover i {
  color: #000;
}

@media (max-width: 991.98px) {
  .iproducts .body-part {
    padding: 15px 10px 15px 10px;
  }
  .iproducts .infoxbox {
    padding: 0 10px 0 10px;
    font-size: 11px;
  }
  .iproducts blockquote {
    padding: 30px 15px 0;
  }
  .iproducts iframe, .iproducts .body-image figure img {
    border-radius: 0;
  }
}
.iads {
  background-color: #fff;
}

.iads:before {
  content: "";
  background-image: url(/img/demo/patterns/13.webp);
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.3;
}

.iads .body {
  margin-top: 10px;
}

.iads .title-body {
  margin: 5px 0 -15px 0;
  font-size: 21px;
  font-weight: 600;
}

.iads figure span {
  color: #461e1e;
  font-size: 13px;
  display: block;
  padding: 12px 0 12px;
}

.iads figure img {
  border-radius: 13px;
  max-width: 100%;
  height: auto;
}

.iads .iads-title {
  font-size: 21px;
  line-height: 45px;
  font-weight: 700;
  direction: rtl;
  text-align: right;
  font-family: "KalamehWeb";
  margin-top: 51px;
}

.iads .iads-description {
  direction: rtl;
  color: #303030;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0;
  padding-bottom: 8px;
  line-height: 25px;
  border-bottom: 1px dotted #ccc;
}

.iads .infoxbox {
  color: #ccc;
  padding: 10px;
  direction: rtl;
}

.iads .infoxbox a {
  color: #ccc;
}

.iads .hr-info {
  max-width: 924px;
  margin: 5px 0 15px;
  color: #ccc;
}

.iads .body-part {
  padding: 15px 0 15px;
}

.iads > figure, .iads > p, .iads > h3, .iads > .h3, .iads .body-part {
  max-width: 926px;
  margin: 0 auto;
}

.iads p {
  direction: rtl;
  text-align: justify;
  line-height: 2.1rem;
  font-size: 16px;
  margin: 10px 0px 5px 0;
}

.iads .body-auto p {
  direction: rtl;
}

.iads .body-right p {
  text-align: "right";
  direction: "rtl";
}

.iads .body-left p {
  text-align: "left";
  direction: "ltr";
}

.iads .body-center p {
  text-align: "center";
  direction: rtl;
}

.iads .tick-wrap {
  margin-top: -20px;
}

.iads .btn.btn-giant {
  font-size: 32px;
  padding: 18px 18px 15px 18px;
  font-family: "KalamehWeb";
  font-weight: 900;
  border-radius: 10px;
}

.iads .tick-wrap p {
  margin: 15px 50px 70px 60px;
}

.iads h3, .iads .h3 {
  font-size: 25px;
  font-weight: 500;
  direction: rtl;
  line-height: 35px;
  margin-bottom: 0;
  font-family: "KalamehWeb";
}

.iads h2, .iads .h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  font-family: "KalamehWeb";
  letter-spacing: 0px;
  margin: 30px 0 20px 0;
  color: #404040;
}

.iads h3.giant-text, .iads .giant-text.h3 {
  font-size: 150px;
  font-family: "KalamehWeb";
  font-weight: 900;
  line-height: normal;
  margin: auto;
}

.iads h4, .iads .h4, .iads .tick-wrap h5, .iads .tick-wrap .h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  margin: 10px 5px;
  direction: rtl;
}

.iads .tick-wrap h5, .iads .tick-wrap .h5 {
  font-size: 18px;
  margin: 10px 20px;
}

.iads h4 i, .iads .h4 i {
  position: relative;
  font-size: 30px;
  top: 5px;
  right: -7px;
}

.iads .tick-wrap h5 i, .iads .tick-wrap .h5 i {
  position: relative;
  font-size: 30px;
  top: 7px;
  right: -14px;
}

.iads blockquote {
  position: relative;
  padding: 30px 70px 0;
  color: #000;
  text-align: center;
  font-size: 17px;
  line-height: 34px;
  direction: rtl;
}

.iads blockquote:before {
  content: "";
  height: 60px;
  display: flex;
  background: url(/img/demo/quote.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 30px;
}

.iads .entry-footer {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0;
}

.iads .entry-tag {
  max-width: 1000px;
  margin: 0 auto;
}

.iads .entry-tag > a {
  border: 2px solid #000;
  border-radius: 40px;
  color: #000;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 33px;
  line-height: 31px;
  margin: 5px 3px;
  padding: 0px 20px 0px 20px;
  text-transform: lowercase;
  direction: rtl;
  transition: all 0.3s;
}

.iads .entry-tag > a:hover, .entry-tag > a:focus {
  background-color: #000;
  color: #fff;
}

.iads .before-title {
  margin: 0;
  text-align: right;
  color: #858585;
}

.iads .bg-black, .iads .bg-dark {
  color: #e7e7e7;
}

.iads .body-text {
  padding: 30px 0;
}

.iads .row {
  direction: ltr;
}

.iads-info-1 {
  line-height: 28px;
  padding: 5px 0 3px 0;
}

.iads-info-1 .spacer {
  border-left: 1px solid #dcdcdc;
  display: inline-block;
}

.iads-socials {
  position: absolute;
  top: 57px;
  left: 5px;
}

.iads-socials button {
  display: block;
  color: #6c6c6c;
  font-size: 23px;
  margin-bottom: 0;
}

.iads-shop {
  background-color: #fff;
  border-radius: 4px;
  direction: rtl;
  border: 1px solid rgba(0, 0, 0, 0.125);
  padding: 5px;
  margin-top: 25px;
}

.iads-shop > img {
  height: 64px;
  width: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.iads-shop-name {
  color: #000;
  line-height: 30px;
  margin: 5px 10px 0 0;
  text-align: right;
}

.iads-shop-name strong {
  color: #000;
  display: block;
}

.iads-shop-name a {
  margin-right: auto;
}

.iads-shop-go {
  margin-right: auto;
  position: relative;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 12px 12px 0 0;
  color: #000;
  top: 13px;
  left: 8px;
  background: transparent;
  transition: background 0.2s linear;
}

.iads-shop-go i {
  position: relative;
  font-size: 20px;
  top: -3px;
  left: 4px;
}

.iads-shop:hover .iads-shop-go {
  background: #ededed;
  border: 1px solid #ebebeb;
}

.iads-help-wrap {
  margin: 15px 15px 0 0;
}

.iads-help-wrap > p {
  font-family: "KalamehWeb";
  font-weight: 600;
}

.iads-help {
  display: block;
  direction: rtl;
  padding: 5px;
  border-bottom: 1px dashed #ccc;
  margin-left: 15px;
}

.iads-help i {
  position: relative;
  top: 2px;
  padding: 5px;
  color: rgba(0, 0, 0, 0.56);
  transition: color 0.2s linear;
}

.iads-help span {
  padding: 5px;
  color: rgba(0, 0, 0, 0.56);
  transition: color 0.2s linear;
}

.iads-help:hover span, .iads-help:hover i {
  color: #000;
}

.i-ads {
  margin-top: 40px;
}

.i-ads:before {
  content: "";
  background-image: url(/img/demo/patterns/13.webp);
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.2;
}

.i-ads .main-title {
  font-size: 21px;
  line-height: 35px;
  font-weight: 700;
  direction: rtl;
  text-align: right;
  font-family: "KalamehWeb";
  margin-top: 30px;
  margin-bottom: 5px;
  letter-spacing: 0px;
}

.i-ads .main-title i {
  font-weight: 700;
  position: relative;
  top: 3px;
  right: -5px;
}

.i-ads .inner-title {
  margin: 15px 0 5px 0;
  font-size: 21px;
  font-weight: 700;
  font-family: "KalamehWeb";
  color: #212121;
  text-align: right;
}

.i-ads .info {
  color: #999;
  font-size: 13px;
}

.i-ads hr {
  height: 1px;
  background-color: #e3e3e3;
  border: 0;
  width: 100%;
  opacity: 1;
}

.i-ads .spacer {
  border-left: 1px solid #e3e3e3;
  height: 40px;
  width: 1px;
}

.i-ads .row-info {
  background: #f8f9fa;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding: 10px 10px 7px 10px;
}

.i-ads .description {
  text-align: right;
}

.i-ads p {
  line-height: 23px;
  font-size: 14px;
  margin: 15px 10px 15px 10px;
}

.i-ads .i-ads-shop {
  background-color: #fff;
  border-radius: 4px;
  direction: rtl;
  border: 1px solid rgba(0, 0, 0, 0.125);
  padding: 5px;
  margin-top: 25px;
}

.i-ads .i-ads-shop > img {
  height: 64px;
  width: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.i-ads .i-ads-shop-name {
  color: #000;
  line-height: 30px;
  margin: 5px 10px 0 0;
  text-align: right;
}

.i-ads .i-ads-shop-name strong {
  color: #000;
  display: block;
}

.i-ads .i-ads-shop-name a {
  margin-right: auto;
}

.i-ads .i-ads-shop-go {
  margin-right: auto;
  position: relative;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 12px 12px 0 0;
  color: #000;
  top: 13px;
  left: 8px;
  background: transparent;
  transition: background 0.2s linear;
}

.i-ads .i-ads-shop-go i {
  position: relative;
  font-size: 20px;
  top: -3px;
  left: 4px;
}

.i-ads .i-ads-shop:hover .i-ads-shop-go {
  background: #ededed;
  border: 1px solid #ebebeb;
}

.i-ads .i-ads-socials {
  position: relative;
  top: -7px;
  left: 0;
  max-width: 400px;
  margin: 0 auto;
}

.i-ads .i-ads-socials button {
  display: block;
  color: #6c6c6c;
  font-size: 23px;
  margin-bottom: 0;
  transition: color 200ms ease;
}

.i-ads .i-ads-socials button:hover {
  color: tomato;
}

.i-ads .ads-btn {
  margin: 55px 0 30px 0;
}

.i-ads .ads-btn button {
  position: relative;
  font-size: 14px;
  font-family: "KalamehWeb";
  font-weight: 500;
  min-width: 150px;
  text-align: right;
  direction: rtl;
  margin: 0 5px 0 5px;
  z-index: 1;
  border-radius: 4px;
}

.i-ads .sl-wrapper .sl-image .sl-caption {
  direction: rtl;
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .iads .body-part {
    padding: 15px 10px 15px 10px;
  }
  .iads .infoxbox {
    padding: 0 10px 0 10px;
    font-size: 11px;
  }
  .iads blockquote {
    padding: 30px 15px 0;
  }
  .iads iframe, .iads .body-image figure img {
    border-radius: 0;
  }
}
.clear {
  clear: both;
}

.login-form {
  background: #dddddd;
  background-image: url(/img/pattern.webp);
  height: calc(100vh - 0.1em);
  overflow: hidden;
}

.log {
  width: 400px;
  background-color: #FFF;
  padding: 0;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.log .logo {
  background-color: #00b6e4;
  color: #fff;
  display: inline-block;
  font-family: KalamehWeb, tahoma;
  font-size: 37px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 10px 5px;
  transition: color 500ms;
  z-index: 1050;
  text-align: center;
  direction: rtl;
  display: inline-block;
  display: block;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.log .logo:hover {
  color: #000;
}

.log .title {
  color: #3db3e3;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 25px 15px;
  text-align: right;
  letter-spacing: 1pt;
  text-transform: capitalize;
  direction: rtl;
  margin: 0;
}

.log .title i {
  position: relative;
  padding-left: 10px;
  top: 5px;
  font-size: 25px;
  line-height: 9px;
}

.log .description {
  direction: rtl;
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 32px;
  color: #6c757d;
  background: #3db3e3;
  color: #fff;
  font-family: "KalamehWeb";
}

.log .description span {
  display: block;
  color: white;
  font-weight: bold;
  font-size: 20px;
  margin: 8px 0 3px 0;
  letter-spacing: 1px;
  overflow: "hidden";
}

.log .description span.email {
  color: #f9ff07;
  font-size: 16px;
}

.log .input-wrapper {
  background-color: #3DB3E3;
  padding: 15px 0 20px 0;
}

.log .input-cont {
  position: relative;
  margin: 0 35px 30px;
}

.log .input-cont:last-of-type {
  margin-bottom: 30px;
}

.log .input-cont input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 40px;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  background: none;
  border: none;
  top: 6px;
  border-radius: 3px;
  font-weight: 500;
}

.log .input-cont input#captcha {
  width: calc(100% - 137px);
  margin-left: 135px;
}

.log .input-cont input::-moz-placeholder {
  color: transparent;
}

.log .input-cont input::placeholder {
  color: transparent;
}

.log .input-cont input:focus {
  outline: none;
}

.log .input-cont label {
  position: absolute;
  color: #fff;
  top: 0;
  right: 0;
  line-height: 40px;
  font-weight: 500;
  transition: 0.3s;
}

.log .input-cont input:not(:-moz-placeholder-shown) + label {
  margin-top: -15px;
  transform: scale(0.8);
  color: #000;
  font-weight: 500;
}

.log .input-cont input:focus + label,
.log .input-cont input:not(:placeholder-shown) + label {
  margin-top: -15px;
  transform: scale(0.8);
  color: #000;
  font-weight: 500;
}

.log .border1,
.log .border2 {
  position: absolute;
  height: 1px;
  background-color: #fff;
  left: 0;
  bottom: -4px;
  width: 100%;
}

.log .border1::after,
.log .border1::before,
.log .border2::after,
.log .border2::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  transition: 0.5s;
}

.log .border1::after,
.log .border2::after {
  right: 50%;
  background-color: #000;
}

.log .border1::before,
.log .border2::before {
  left: 50%;
  background-color: #000;
}

.log .input-cont input:focus ~ .border1::after,
.log .input-cont input:focus ~ .border1::before,
.log .input-cont input:focus ~ .border2::after,
.log .input-cont input:focus ~ .border2::before {
  width: 50%;
}

.log .radio {
  display: block;
  font-size: 12px;
  direction: rtl;
  text-align: right;
  margin-right: 50px;
  color: #fff;
}

.log .check {
  display: block;
  font-size: 15px;
  direction: rtl;
  text-align: right;
  margin-right: 35px;
  margin-top: -3px;
  color: #fff;
}

.log input[type=checkbox] {
  font-size: 15px;
  position: relative;
  top: 1px;
}

.log .check .form-check-label {
  margin-right: 5px;
  font-size: 0.9em;
}

.log .submit-wrap {
  padding: 15px 0 15px;
}

.log form button[type=submit] {
  display: block;
  margin: 0 auto;
  padding: 6px 30px;
  font-size: 17px;
  cursor: pointer;
  color: #fbfbfb;
  transition: 0.5s;
  background: #3db3e3;
  border: 2px solid #3db3e3;
  min-width: 161px;
}

.log form button[type=submit]:focus {
  outline: none;
}

.log form button[type=submit]:hover {
  border: 2px solid #3db3e3;
  background: #fff;
  color: #3db3e3;
}

.log button span {
  margin-right: 5px;
  direction: ltr;
  display: inline-block;
  font-family: "iransansNum";
  font-weight: 400;
  position: relative;
  top: 1px;
  font-size: 13px;
  width: 40px;
  text-align: left;
  margin-right: 8px;
}

.log .btn-instagram,
.log .btn-facebook,
.log .btn-google {
  background: #3db3e3;
  color: #fff;
  transition: 300ms;
  min-width: 90px;
  text-align: center;
}

.log .btn-instagram:hover {
  background: #ff5722;
}

.log .btn-facebook:hover {
  background: #4060a4;
}

.log .btn-google:hover {
  background: #d34836;
}

.log .captcha {
  width: 120px;
  height: 45px;
  position: absolute;
  top: -8px;
  left: 0px;
  border-radius: 5px;
  border: 8px solid #fff;
  background: #fff;
  opacity: 0.8;
}

.log .footer-link {
  text-align: center;
  margin-top: -5px;
  padding-bottom: 7px;
  font-size: 12px;
}

.log .footer-link a {
  color: #3db3e3;
  font-size: 12px;
  display: inline-block;
  font-weight: 500;
  transition: 300ms;
  direction: rtl;
  text-align: center;
}

.log .footer-link a:hover {
  color: tomato;
}

.log .footer-link span {
  display: inline-block;
  width: 25px;
  color: #3db3e3;
  font-size: 20px;
  height: 19px;
  overflow: hidden;
  position: relative;
  top: -3px;
}

.log .footer-link small, .log .footer-link .small {
  font-family: "iransansNum";
  position: relative;
  left: -1px;
  top: -1px;
  display: inline-block;
  min-width: 45px;
}

.log .social {
  text-align: center;
  padding-bottom: 5px;
  border-top: 1px solid #ccc;
  padding-top: 7px;
  margin-top: 0;
}

.log .social h6, .log .social .h6 {
  position: relative;
  top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #3db3e3;
  font-family: "KalamehWeb";
}

.log .invalid-feedback {
  position: absolute;
  bottom: -23px;
  text-align: right;
  direction: rtl;
  font-size: 10px;
  color: yellow;
}

.log label span {
  color: yellow;
}

.log .return {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #0399bf;
  font-family: kalamehweb;
  font-weight: 500;
  padding: 7px 0 15px 0;
}

@media (max-width: 991.98px) {
  .login-form {
    height: calc(100vh - 0.1em);
    overflow: hidden;
  }
  .log {
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .log .logo {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .log .title {
    background: #fff;
  }
  .log .submit-wrap {
    background: #fff;
  }
  .log .footer-link {
    background: #fff;
  }
}
@media (max-height: 540px) {
  .log .logo,
  .log .social h6, .log .social .h6,
  .log .return {
    display: none;
  }
}
.box {
  border: 1px solid #e0e0e2;
  padding: 0;
  border-radius: 8px;
  background: #fff;
}

.header-box {
  position: relative;
  height: 50px;
  border-bottom: 1px solid #e0e0e2;
}

.header-box .print-btn {
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 13px;
  font-weight: 600;
}

.header-box .print-btn i {
  position: relative;
  font-size: 19px;
  margin: -1px 5px 0 5px;
  top: 4px;
}

.title-box {
  font-family: "KalamehWeb";
  font-weight: 700;
  text-align: right;
  direction: rtl;
  font-size: 15px;
  position: relative;
  top: 14px;
  right: 15px;
}

.box label {
  display: inline;
  color: #ccc;
  font-size: 12px;
  margin-bottom: -11px;
}

.box label i {
  font-size: 25px;
}

.box .form-control {
  background: lightyellow;
}

.box-form {
  padding: 0 30px 0px 15px;
}

.row-box {
  position: relative;
  border-bottom: 1px solid #e0e0e2;
}

.row-box-odd {
  background: rgba(96, 125, 139, 0.0588235294);
}

.row-box-trash {
  position: absolute;
  left: 3px;
  top: 5px;
  font-size: 22px;
  padding: 5px 10px 5px 7px;
  color: #b1b1b1;
  transition: color 0.2s linear;
}

.row-box-trash:hover {
  color: #f44336;
}

.row-box img {
  width: 160px;
  height: 160px;
  margin: 10px 10px 0 0;
  border-radius: 5px;
}

.row-box-quantity {
  margin: 15px 20px 10px 10px;
}

.row-box h3, .row-box .h3 {
  font-size: 17px;
  margin: 15px 10px 10px 10px;
  font-weight: 700;
}

.row-box h3 span.badge, .row-box .h3 span.badge {
  font-size: 11px;
}

.row-box h3 a, .row-box .h3 a {
  color: #212529;
  transition: color 0.2s linear;
}

.row-box h3 a:hover, .row-box .h3 a:hover {
  color: #64676a;
}

.row-box-list {
  padding: 0 15px 5px 5px;
  line-height: 26px;
  color: #000;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: "KalamehWeb";
}

.row-box-list i {
  font-size: 9px;
  padding-left: 5px;
  position: relative;
  top: 0px;
}

.row-box-list strong {
  font-size: 13px;
  font-weight: 400;
  line-height: 2.15;
  color: #81858b;
  margin-left: 6px;
}

.row-box .price {
  color: #009688;
  font-weight: 700;
  font-family: "iransansNum";
  font-size: 17px;
  position: relative;
  top: 1px;
  margin: 0px 0 0 5px;
}

.row-box .discount {
  color: #f44336;
  font-weight: 400;
  font-family: "iransansNum";
  font-size: 12px;
  position: relative;
  top: 1px;
  margin: 0px 0px 0 5px;
}

.footer-box {
  border-top: 1px solid #e0e0e2;
  background: lightgoldenrodyellow;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 45px;
}

.empty-baskect {
  margin-top: 50px;
  text-align: center;
  direction: rtl;
}

.empty-baskect img {
  height: 256px;
  width: 256px;
  margin: 0 auto;
}

.empty-baskect .title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #222832;
  margin-top: 20px;
}

.empty-baskect .description {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.17;
  color: #656970;
}

.empty-baskect div {
  margin: 20px 0 75px 0;
}

.empty-baskect div a {
  color: #18bdd1;
  position: relative;
  display: inline-block;
  padding: 3px 0 3px 0;
}

.empty-baskect div a:first-of-type {
  padding-left: 10px;
  margin-left: 10px;
}

.empty-baskect div a:first-of-type:after {
  position: absolute;
  left: -2px;
  top: 47%;
  transform: translateY(-50%);
  background-color: #ccc;
  width: 1px;
  content: " ";
  height: calc(100% - 10px);
}

.empty-baskect div a:hover {
  color: #cb2424;
}

.row-box-field {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #81858b;
}

.row-box-field-price {
  border-top: 1px solid #e0e0e2;
  padding: 7px 0 8px 0;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin: 5px -12px -8px -12px;
  position: relative;
  text-indent: 14px;
  font-family: "KalamehWeb";
  background: #eff1f3;
}

.row-box-field-price .price {
  position: relative;
  top: 0px;
  margin: 0px 5px 0 10px;
  background: #fff;
  border-radius: 3px;
  padding: 3px 0px 0 5px;
  text-align: center;
  display: inline-block;
}

.row-box-field span {
  color: #000;
  display: inline-block;
  margin-right: 5px;
}

.row-box-field .icon-left-open-big {
  position: relative;
  font-size: 9px;
  margin-left: 2px;
  color: black;
}

.row-box-field .icon-circle {
  font-size: 6px;
  margin-left: 7px;
  position: relative;
  top: 0px;
  color: tomato;
}

.header-box .title-box .number {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  height: 22px;
  width: 22px;
  display: inline-block;
  position: relative;
  top: 1px;
  left: 0;
  background: #222529;
  text-align: center;
  border-radius: 50%;
  margin-left: 0px;
  text-align: center;
  line-height: 25px;
  margin: 0px 5px 0 5px;
}

.title-box .badge {
  position: relative;
  top: -1px;
  right: 6px;
  padding: 5px 5px 2px 5px;
  font-family: "iransansNum";
}

.header-box-color {
  position: relative;
  height: 50px;
  border-bottom: 1px solid #b5b5b5;
  background: #f5a815;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.header-box-btns {
  position: relative;
  float: left;
  top: -28px;
}

.header-box .header-box-btns button, .header-box .header-box-btns a {
  direction: rtl;
  left: 8px;
  position: relative;
  top: 10px;
  transition: color 0.2s linear;
  width: 80px;
  padding: 0;
  margin: 0 3px 0 3px;
  text-align: center;
  font-size: 11px;
  height: 25px;
  padding-top: 3px;
  transition: background-colo 300ms ease;
}

.header-box .header-box-btns button i {
  position: relative;
  font-size: 20px;
  top: 5px;
  left: 9px;
}

.spacer-end {
  margin-left: 30px;
}

.invoice-product-title a {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.invoice-product-title i {
  position: relative;
  margin-left: 6px;
  top: 1px;
  color: #606060;
  font-size: 11px;
}

.row-box-header {
  background: rgba(186, 223, 255, 0.8117647059);
  font-family: "KalamehWeb";
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .row-box .flex-shrink-0 {
    text-align: center;
  }
  .row-box img {
    margin: 15px 10px 0 0;
    border-radius: 50%;
  }
  .row-box-quantity {
    margin: 15px auto 10px auto;
    max-width: 150px;
  }
  .row-box h3, .row-box .h3 {
    text-align: center;
    margin: 15px 10px 10px 10px;
    border-bottom: 1px dashed #dfdfdf;
    padding-bottom: 12px;
  }
  .row-box h3 a, .row-box .h3 a {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    line-height: 30px;
  }
  .row-box-list {
    padding: 0 10px 5px 10px;
  }
  .footer-box .title-box {
    font-size: 13px;
    top: 14px;
    right: 0;
    left: 0;
    text-align: center;
  }
  .box-form {
    padding: 0 20px 0px 20px;
  }
}
.comments .header {
  direction: rtl;
  height: 70px;
}

.comments .title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  height: 13px;
}

.comment {
  direction: rtl;
  border: 1px solid #f3f3f3;
  border-right: 2px solid #ccc;
  margin: 35px 0 35px 0;
  padding: 20px 20px 15px 20px;
  position: relative;
  transition: all 1s ease;
  background: #fbfbfb;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.comment:hover {
  border-right-color: tomato;
}

.comment span {
  font-size: 11px;
}

.comment .name {
  display: inline-block;
  direction: rtl;
  margin-right: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.comment .admin {
  margin-right: 10px;
  border: 1px dashed #00a715;
  padding: 0 5px 0 5px;
  color: #00a715;
  font-size: 11px;
  display: inline-block;
}

.comment .seprator {
  margin: 0 5px 0 5px;
  color: transparent;
  transition: all 1s ease;
}

.comment:hover > div > div > .seprator {
  color: #ccc;
}

.comment .date {
  color: #999;
}

.comment .code {
  color: transparent;
  transition: all 1s ease;
}

.comment:hover > div > div > .code {
  color: #999;
}

.comment .body-comment {
  position: relative;
  padding: 20px 15px 20px 0;
  text-align: right;
}

.comment .body-comment strong {
  display: inline-block;
  direction: rtl;
  margin-right: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(33, 37, 41, 0.8509803922);
}

.comment .body-comment strong i {
  margin-left: 9px;
}

.comment .body-comment p {
  padding: 0;
  line-height: 30px;
  font-size: 13px;
}

.comment > .comment p {
  color: #999;
}

.comment > div > .reply {
  position: absolute;
  transition: all 0.5s ease;
  left: 0;
  bottom: -5px;
  left: -12px;
  font-size: 12px;
}

.comment > div > .reply:hover {
  color: tomato;
}

.announcements-1-1 {
  background: #f7f7f7;
  position: relative;
}

.announcements-1-1 blockquote {
  min-height: 120px;
  color: #777;
  line-height: 28px;
  margin: 0 0px 20px 49px;
  font-size: 14px;
  text-align: justify;
  direction: rtl;
  font-family: "KalamehWeb";
  font-weight: 500;
}

.announcements-1-1 blockquote:before {
  color: #777;
  display: block !important;
  left: 10px;
  top: 0;
  content: "“";
  font-size: 80px;
  font-style: normal;
  line-height: 1;
  font-family: "KalamehWeb", serif;
  position: absolute;
}

.announcements-1-1 .testimonial {
  position: relative;
}

.announcements-1-1.parallax {
  margin-top: 110px;
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: repeat;
  background-attachment: fixed;
  position: relative;
  clear: both;
}

.announcements-1-1 .parallax-background {
  background-image: url(/img/demo/service/service-14-1.webp);
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 110%;
  transform: translate3d(0px, -30px, 0px);
  background-position-x: 50%;
}

.announcements-1-1 img {
  position: relative;
  max-width: 450px;
  z-index: 0;
}

.announcements-1-1 .author {
  direction: rtl;
}

.announcements-1-1 .author strong {
  display: inline-block;
  font-family: "KalamehWeb";
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}

.announcements-1-1 .author p {
  font-family: "KalamehWeb";
}

@media (max-width: 991.98px) {
  .announcements-1-1 blockquote {
    margin: 0 0px 20px 10px;
  }
  .announcements-1-1 blockquote:before {
    left: -30px;
  }
}
.services {
  padding-top: 100px;
}

.service-wrap {
  width: 100%;
  height: 320px;
  margin: 50px 0;
  text-align: center;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  direction: rtl;
}

.service-wrap .icon {
  position: relative;
  top: 100px;
  display: inline-block;
  margin-bottom: 40px;
  padding: 10px;
  background: whitesmoke;
  transition: all 0.3s ease;
}

.service-wrap .icon i {
  font-size: 24pt;
}

.service-wrap .heading {
  text-transform: uppercase;
  font-size: 11pt;
  letter-spacing: 1pt;
  position: relative;
  top: 80px;
  font-weight: 600;
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-wrap .description {
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 1pt;
  line-height: 19pt;
  width: 80%;
  margin: 0 auto;
  opacity: 0;
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: scale(0);
}

.service-wrap:hover {
  border-color: #1b1b1b;
}

.service-wrap:hover .icon {
  top: -30px;
}

.service-wrap:hover .heading {
  top: -30px;
}

.service-wrap:hover .description {
  opacity: 1;
  transform: scale(1);
}

.orders-card {
  position: relative;
  background-image: url(/img/demo/bg-1.webp);
  min-height: 620px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding-bottom: 0;
}

.orders-wrap {
  max-width: 950px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.order-wrap {
  text-align: center;
  display: block;
  padding: 40px 0 35px 0;
  color: #000;
  position: relative;
  overflow: hidden;
}

.order-wrap:hover {
  color: #000;
  cursor: pointer;
}

.order-wrap h5, .order-wrap .h5 {
  font-size: 16px;
  font-weight: 700;
}

.order-wrap i {
  font-size: 35px;
  margin-top: 16px;
  display: block;
}

.order-wrap div {
  font-size: 14px;
  position: absolute;
  width: 100%;
  display: block;
  bottom: -20px;
  text-align: center;
  left: 0;
  transition: bottom 0.3s linear;
}

.order-wrap:hover div {
  bottom: 7px;
  display: block;
}

.order-box-1 {
  background-color: rgba(81, 100, 122, 0.8);
  border-top-right-radius: 5px;
}

.order-box-2 {
  background-color: rgba(109, 193, 202, 0.8);
}

.order-box-3 {
  background-color: rgba(211, 81, 45, 0.8);
  border-top-left-radius: 5px;
}

.order-box-4 {
  background-color: rgba(235, 167, 36, 0.8);
  border-bottom-right-radius: 5px;
}

.order-box-5 {
  background-color: rgba(75, 135, 150, 0.8);
}

.order-box-6 {
  background-color: rgba(100, 66, 87, 0.8);
  border-bottom-left-radius: 5px;
}

@media (max-width: 991.98px) {
  .order-box-2 {
    border-top-left-radius: 5px;
  }
  .order-box-3 {
    border-top-left-radius: 0;
  }
  .order-box-4 {
    background-color: rgba(235, 167, 36, 0.8);
    border-bottom-right-radius: 0;
  }
  .order-box-5 {
    border-bottom-right-radius: 5px;
  }
}
.service-3 .wrapper-glitch {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}

.service-3 .wrapper-glitch a span {
  color: #6d9cf2;
  position: absolute;
  right: 28px;
  top: 55px;
  z-index: 2;
  font-family: "KalamehWeb";
  font-weight: 700;
}

.service-3 .wrapper-glitch.wrapper-glitch-en a span {
  top: 26px;
  left: 34px;
  right: auto;
}

.service-3 .wrapper-glitch.wrapper-glitch-ar a span {
  top: 30px;
  right: 33px;
}

.service-3 .wrapper-glitch h1.glitch, .service-3 .wrapper-glitch .glitch.h1 {
  color: #6d9cf2;
  font-family: "KalamehWeb";
  font-weight: 900;
  position: relative;
  font-size: 100px;
  padding: 35px 30px 25px 30px;
}

.service-3 .wrapper-glitch h1.glitch::before, .service-3 .wrapper-glitch .glitch.h1::before, .service-3 .wrapper-glitch h1.glitch::after, .service-3 .wrapper-glitch .glitch.h1::after {
  padding: 35px 30px 25px 30px;
  color: white;
  content: "!برند شو";
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  overflow: hidden;
  top: 0;
}

.service-3 .wrapper-glitch.wrapper-glitch-en h1.glitch::before, .service-3 .wrapper-glitch.wrapper-glitch-en .glitch.h1::before, .service-3 .wrapper-glitch.wrapper-glitch-en h1.glitch::after, .service-3 .wrapper-glitch.wrapper-glitch-en .glitch.h1::after {
  content: "Brand!";
}

.service-3 .wrapper-glitch.wrapper-glitch-ar h1.glitch::before, .service-3 .wrapper-glitch.wrapper-glitch-ar .glitch.h1::before, .service-3 .wrapper-glitch.wrapper-glitch-ar h1.glitch::after, .service-3 .wrapper-glitch.wrapper-glitch-ar .glitch.h1::after {
  content: "!العلامة";
}

.service-3 .wrapper-glitch h1.glitch::before, .service-3 .wrapper-glitch .glitch.h1::before {
  left: 3px;
  text-shadow: -2px 0 #6d9cf2;
  animation-name: glitch-animation-1;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: reverse-alternate;
}

.service-3 .wrapper-glitch h1.glitch::after, .service-3 .wrapper-glitch .glitch.h1::after {
  left: -3px;
  text-shadow: -2px 0 blue;
  animation-name: glitch-animation-2;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: reverse-alternate;
}

.service-3 .wrapper-glitch a:hover h1.glitch::before, .service-3 .wrapper-glitch a:hover .glitch.h1::before, .service-3 .wrapper-glitch a:hover h1.glitch::after, .service-3 .wrapper-glitch a:hover .glitch.h1::after {
  color: #6d9cf2;
  text-shadow: -2px 0 #6d9cf2;
  cursor: pointer;
}

@keyframes glitch-animation-1 {
  0% {
    clip: rect(5px, 350px, 93px, 30px);
  }
  5% {
    clip: rect(78px, 350px, 93px, 30px);
  }
  10% {
    clip: rect(43px, 350px, 131px, 30px);
  }
  15% {
    clip: rect(115px, 350px, 62px, 30px);
  }
  20% {
    clip: rect(14px, 350px, 134px, 30px);
  }
  25% {
    clip: rect(71px, 350px, 35px, 30px);
  }
  30% {
    clip: rect(7px, 350px, 52px, 30px);
  }
  35% {
    clip: rect(136px, 350px, 95px, 30px);
  }
  40% {
    clip: rect(68px, 350px, 13px, 30px);
  }
  45% {
    clip: rect(143px, 350px, 35px, 30px);
  }
  50% {
    clip: rect(127px, 350px, 100px, 30px);
  }
  55% {
    clip: rect(62px, 350px, 55px, 30px);
  }
  60% {
    clip: rect(5px, 350px, 72px, 30px);
  }
  65% {
    clip: rect(17px, 350px, 22px, 30px);
  }
  70% {
    clip: rect(79px, 350px, 65px, 30px);
  }
  75% {
    clip: rect(22px, 350px, 64px, 30px);
  }
  80% {
    clip: rect(66px, 350px, 67px, 30px);
  }
  85% {
    clip: rect(81px, 350px, 139px, 30px);
  }
  90% {
    clip: rect(50px, 350px, 118px, 30px);
  }
  95% {
    clip: rect(21px, 350px, 111px, 30px);
  }
  100% {
    clip: rect(27px, 350px, 90px, 30px);
  }
}
@keyframes glitch-animation-2 {
  0% {
    clip: rect(100px, 350px, 27px, 30px);
  }
  5% {
    clip: rect(123px, 350px, 101px, 30px);
  }
  10% {
    clip: rect(51px, 350px, 54px, 30px);
  }
  15% {
    clip: rect(131px, 350px, 64px, 30px);
  }
  20% {
    clip: rect(117px, 350px, 1px, 30px);
  }
  25% {
    clip: rect(30px, 350px, 75px, 30px);
  }
  30% {
    clip: rect(130px, 350px, 28px, 30px);
  }
  35% {
    clip: rect(8px, 350px, 121px, 30px);
  }
  40% {
    clip: rect(9px, 350px, 102px, 30px);
  }
  45% {
    clip: rect(13px, 350px, 87px, 30px);
  }
  50% {
    clip: rect(6px, 350px, 64px, 30px);
  }
  55% {
    clip: rect(33px, 350px, 80px, 30px);
  }
  60% {
    clip: rect(82px, 350px, 63px, 30px);
  }
  65% {
    clip: rect(111px, 350px, 13px, 30px);
  }
  70% {
    clip: rect(19px, 350px, 99px, 30px);
  }
  75% {
    clip: rect(34px, 350px, 32px, 30px);
  }
  80% {
    clip: rect(102px, 350px, 101px, 30px);
  }
  85% {
    clip: rect(80px, 350px, 102px, 30px);
  }
  90% {
    clip: rect(121px, 350px, 62px, 30px);
  }
  95% {
    clip: rect(41px, 350px, 134px, 30px);
  }
  100% {
    clip: rect(84px, 350px, 150px, 30px);
  }
}
.service-6 .text-offer {
  display: block;
  font-family: "KalamehWeb";
  font-weight: 900;
  color: #616161;
  background-color: #bababa;
  text-shadow: #e0e0e0 1px 1px 0;
  text-align: center;
  font-size: 35px;
  direction: rtl;
  padding: 50px 0 50px 0;
  border-top: 1px solid #a5a5a5;
  border-bottom: 1px solid #a5a5a5;
  transition: color 300ms ease-in;
}

.service-6 .text-offer:hover {
  color: #3c3c3c;
}

.service-5 {
  position: relative;
  background-image: url(/img/demo/bg-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding-bottom: 20px;
}

body.social .service-5 .section-header-5 {
  padding: 80px 0 0px 0;
}

.service-5 p {
  text-align: justify;
  line-height: 30px;
}

.service-5 .section-more {
  text-align: left;
  margin-top: 0;
  position: relative;
  left: 0;
  transform: none;
  bottom: 25px;
}

.service-5 .section-more a span {
  color: #4CAF50;
}

@media (max-width: 991.98px) {
  .service-5 .section-more {
    text-align: center;
    margin-top: 0px;
    left: 0;
    top: 9px;
    bottom: auto;
  }
  body.social .service-5 .section-header-5 {
    padding: 50px 0 0px 0;
  }
}
.service-8 {
  position: relative;
  width: 100%;
  background-color: #ddd;
  background-image: linear-gradient(to right, #ddd 35%, #eee 50%, #ddd 65%);
  padding: 0;
}

.content {
  max-width: 900px;
  margin: auto;
}

.service-8 .holder {
  padding-bottom: 30px;
  margin: 0 10px 0 10px;
}

.service-8 .button {
  position: relative;
  max-width: 880px;
  height: 100px;
  margin: 0 auto;
  padding: 0px;
  text-align: left;
  padding-left: 20px;
  z-index: 2;
  display: block;
  color: #222;
  transition: color 500ms ease;
  cursor: default;
}

.service-8 .button .wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px 0 0 50px;
  background-image: linear-gradient(to left, #ddd 40%, #fff 60%);
  z-index: 9;
}

.service-8 .button .box {
  position: absolute;
  left: 40px;
  top: 0;
  right: 40%;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
}

.service-8 .button .box::before {
  position: absolute;
  left: 0;
  top: 90%;
  width: 100%;
  height: 80%;
  content: "";
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.76) 60%, black 100%);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 0 0);
          clip-path: polygon(100% 0, 0% 100%, 0 0);
  box-shadow: 0 0 10px black;
}

.service-8 .button i {
  position: absolute;
  display: block;
  font-size: 30px;
  left: 10px;
  top: 10px;
  width: 80px;
  height: 80px;
  background-color: red;
  margin: 0;
  padding: 0;
  line-height: 80px;
  text-align: center;
  border-radius: 50px;
  box-shadow: inset 7px 7px 10px rgba(0, 0, 0, 0.5);
  transition: background-color 500ms ease;
}

.service-8 .button:nth-child(2n+1) .wrap {
  border-radius: 0 50px 50px 0;
  background-image: linear-gradient(to right, #ddd 40%, #fff 60%);
}

.service-8 .button:nth-child(2n+1) i {
  left: auto;
  right: 10px;
  box-shadow: inset -7px 7px 10px rgba(0, 0, 0, 0.5);
}

.service-8 .button:nth-child(2n+1) .box {
  left: 40%;
  right: 0;
  bottom: 0;
  transform: scaleX(-1);
}

.service-8 .button .description {
  position: absolute;
  padding-top: 23px;
  width: 50%;
  z-index: 10;
  left: 110px;
  right: auto;
  text-align: left;
  transform: translateX(0);
  overflow: hidden;
  max-height: 80px;
}

.service-8 .button:nth-child(2n+1) .description {
  right: 110px;
  left: auto;
}

.service-8 .button .description h2, .service-8 .button .description .h2 {
  margin: 0;
  padding: 0;
  font-family: "KalamehWeb";
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-block;
  color: #222;
  transition: color 500ms ease;
}

.service-8 .button .description p {
  margin: 2px 0 0 0;
  padding: 0;
  line-height: 31px;
  direction: rtl;
}

.service-8 .button:nth-child(2n+1) .description {
  text-align: right;
}

.service-8 .button:nth-child(1) {
  z-index: 6;
}

.service-8 .button:nth-child(1) i {
  background-color: steelblue;
  color: #FFF;
}

.service-8 .button:nth-child(2) {
  z-index: 5;
}

.service-8 .button:nth-child(2) i {
  background-color: cadetblue;
  color: #FFF;
}

.service-8 .button:nth-child(3) {
  z-index: 4;
}

.service-8 .button:nth-child(3) i {
  background-color: indianred;
  color: #FFF;
}

.service-8 .button:nth-child(4) {
  z-index: 3;
}

.service-8 .button:nth-child(4) i {
  background-color: chocolate;
  color: #FFF;
}

.service-8 .button:nth-child(5) {
  z-index: 2;
}

.service-8 .button:nth-child(5) i {
  background-color: seagreen;
  color: #FFF;
}

.service-8 .button:nth-child(6) {
  z-index: 1;
}

.service-8 .button:nth-child(6) i {
  background-color: mediumpurple;
  color: #FFF;
}

.service-8 .button i:hover {
  background-color: gray;
  cursor: pointer;
}

.service-8 .button h2:hover, .service-8 .button .h2:hover {
  cursor: pointer;
  color: #7e7e7e;
}

@media (max-width: 991.98px) {
  .service-8 .button .description p {
    display: none;
  }
  .service-8 .button .description {
    padding-top: 37px;
  }
  .service-8 .button .description h2, .service-8 .button .description .h2 {
    font-size: 1.3rem;
  }
}
.service-9 {
  margin-top: -63px;
  margin-bottom: 25px;
}

.service-9 .row {
  direction: ltr;
}

.service-9 .card-icon-border-large {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  text-align: center;
  line-height: 50px;
  background-color: #fff;
  border: 6px solid;
  border-radius: 50%;
  font-size: 1.88rem;
  line-height: 90px;
  color: #666;
  margin-top: -3.06rem;
}

.service-9 .card .card-icon-border-large i {
  display: block;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 1;
  transition: opacity 1s;
}

.service-9 .card .card-icon-border-large span {
  display: block;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  font-weight: bold;
  transition: opacity 1.5s;
}

.service-9 .card:hover .card-icon-border-large i {
  opacity: 0;
}

.service-9 .card:hover .card-icon-border-large span {
  opacity: 1;
}

.service-9 .border-primary {
  border-color: #f0c24b !important;
}

.service-9 .border-success {
  border-color: #b5d56a !important;
}

.service-9 .border-info {
  border-color: #84bed6 !important;
}

.service-9 .border-danger {
  border-color: #ea7066 !important;
}

.service-9 .text-primary {
  color: #f0c24b !important;
}

.service-9 .text-success {
  color: #b5d56a !important;
}

.service-9 .text-info {
  color: #84bed6 !important;
}

.service-9 .text-danger {
  color: #ea7066 !important;
}

.service-9 .title {
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  top: 30px;
  font-family: dosis, sans-serif;
}

.service-9 .title span {
  display: block;
  font-family: KalamehWeb;
  font-size: 1.2rem;
  margin-top: 10px;
}

.service-9 .card .btn-scroll-down {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: relative;
  top: 35px;
}

.service-9 .card:hover .btn-scroll-down {
  visibility: visible;
  opacity: 1;
}

.service-9 .btn-scroll-down i {
  font-size: 1.13rem;
  color: #fff;
}

.service-16 {
  position: relative;
  background-color: #8a55ae;
  border-color: #65427c;
  color: #fff;
  min-height: 500px;
  z-index: 1;
  min-height: 400px;
}

.service-16 .separator-tg {
  position: absolute;
  bottom: -30px;
  background: #8a55ae;
  transform: rotateX(180deg);
}

.service-16 .carousel {
  padding-top: 250px;
  max-width: 500px;
  margin: 0 auto;
}

.service-16 .carousel-item img {
  margin: 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 35px;
  display: none !important;
}

.service-16 .carousel-caption {
  position: relative;
  left: auto;
  right: auto;
  bottom: 0;
  max-width: 500px;
  margin: 0 auto;
  height: 200px;
  overflow: hidden;
  direction: rtl;
}

.service-16 .carousel-caption h5, .service-16 .carousel-caption .h5 {
  margin-bottom: 15px;
  font-family: "KalamehWeb";
  font-weight: 700;
  color: rgba(255, 255, 255, 0.831372549);
}

.service-16 .carousel-caption p {
  color: rgba(255, 255, 255, 0.831372549);
  font-size: 14px;
  line-height: 29px;
}

.service-16 .carousel-indicators {
  position: relative;
  padding-bottom: 50px;
}

#css3-spinner-svg-pulse-wrapper {
  position: absolute;
  overflow: hidden;
  width: 260px;
  height: 210px;
  top: 50px;
  left: 50%;
  margin-top: -30px;
  margin-left: -130px;
  background-color: transparent;
  animation: none;
  -webkit-animation: none;
}

#css3-spinner-svg-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -105px;
  margin-left: -287px;
}

#css3-spinner-pulse {
  stroke-dasharray: 281;
  -webkit-animation: dash 5s infinite linear forwards;
}

@media (max-width: 991.98px) {
  .service-16 .carousel {
    padding: 230px 10px 0 10px;
    min-height: 200px;
  }
  .service-16 .carousel-indicators {
    padding-top: 20px;
  }
}
/*Animation*/
@keyframes dash {
  from {
    stroke-dashoffset: 814;
  }
  to {
    stroke-dashoffset: -814;
  }
}
.service-18 {
  position: relative;
  background-color: #ffffff;
  z-index: 0;
  height: 550px;
  padding-top: 30px;
}

.service-18 img.person {
  position: absolute;
  right: -50px;
  float: right;
}

.service-18 .main-text {
  text-align: center;
  margin-right: 450px;
  max-width: 500px;
  float: right;
}

.service-18 .up-title {
  font-size: 17px;
  font-family: "KalamehWeb";
  color: #444;
  margin-bottom: 15px;
}

.service-18 .dash {
  border-top: 3px solid #249a9e;
  width: 50px;
  margin: 0 auto;
}

.service-18 .title {
  margin-top: 9px;
  font-family: "KalamehWeb";
  margin-bottom: 20px;
  font-size: 31px;
}

.service-18 .title span {
  color: #249a9e;
}

.service-18 p {
  font-size: 15px;
  line-height: 32px;
  color: #444;
}

.service-18 img.signature {
  max-width: 150px;
  height: auto;
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

@media (max-width: 991.98px) {
  .service-18 img.person {
    position: relative;
    width: 100%;
    right: 0;
  }
  .service-18 .main-text {
    position: absolute;
    text-align: center;
    max-width: 100%;
    top: 280px;
    z-index: 11111111;
    background: rgba(166, 202, 203, 0.81);
    border-radius: 5px;
    margin: 0 5px 0 5px;
    padding: 15px 5px 15px 5px;
    left: 0;
    right: 0;
  }
  .service-18 img.signature {
    margin-top: 20px;
    max-width: 100px;
  }
  .service-18 .section-header-8 .title {
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 10px;
  }
  .service-18 .section-header-8 p {
    font-size: 15px;
  }
}
.service-20 {
  position: relative;
  background-color: #249a9e;
  border-color: #65427c;
  color: #fff;
  z-index: 2;
  padding-bottom: 30px;
}

.service-20 .separator-tg.separator-tg-top {
  position: absolute;
  top: -30px;
  background: #249a9e;
}

.service-20 .separator-tg.separator-tg-bottom {
  position: absolute;
  bottom: -30px;
  background: #249a9e;
  transform: rotateX(180deg);
}

.service-20 .avatar {
  position: relative;
  margin-bottom: -130px;
  padding-top: 20px;
  width: 100%;
}

.service-20 .avatar img {
  display: block;
  margin: 0 auto;
  width: 125px;
  border-radius: 50%;
  background: #356d6e;
  border: 5px solid rgba(61, 110, 110, 0.6588235294);
}

.service-20 .avatar span {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 250px;
  font-family: "KalamehWeb";
  padding: 10px 0px 10px 0;
  border-radius: 5px;
  color: #bbfeff;
  margin-top: 15px;
  letter-spacing: 1px;
  background-image: linear-gradient(to left, #249a9e, #3d6e6e, #249a9e);
}

.service-20 .right, .service-20 .left {
  width: 40%;
  margin-top: 140px;
}

.service-20 .right ul {
  direction: ltr;
  text-align: left;
  padding: 0;
  list-style: none;
}

.service-20 .left ul {
  padding: 0;
  list-style: none;
}

.service-20 .line {
  display: inline-block;
  width: 10px;
  background: #356d6e;
  margin: 0 1px 0 1px;
  border-radius: 15px;
}

.service-20 .left ul li {
  background-image: linear-gradient(to right, #249a9e, #225858);
  color: #bbfeff;
  line-height: 40px;
  font-size: 13px;
  padding-right: 15px;
  margin: 10px 0px 10px;
}

.service-20 .right ul li {
  background-image: linear-gradient(to left, #249a9e, #225858);
  color: #bbfeff;
  line-height: 40px;
  font-size: 13px;
  padding-left: 15px;
  margin: 10px 0px 10px;
}

.service-20 .right ul li span, .service-20 .left ul li span {
  direction: rtl;
  display: inline-block;
}

.service-20 ul li:before {
  content: "\e835";
  font-family: "iconix";
  color: #b2fdff;
}

.service-20 .left ul li:before {
  padding-left: 10px;
}

.service-20 .right ul li:before {
  padding-right: 10px;
}

@media (max-width: 991.98px) {
  .service-20 ul li:before {
    font-size: 10px;
  }
  .service-20 .right ul li span, .service-20 .left ul li span {
    display: inline;
  }
  .service-20 .right ul li {
    line-height: 30px;
    font-size: 12px;
    padding-left: 15px;
    margin: 10px 0px 10px;
    min-height: 100px;
  }
  .service-20 .left ul li {
    line-height: 30px;
    font-size: 12px;
    padding-right: 15px;
    margin: 10px 0px 10px;
    min-height: 100px;
  }
  .service-20 .right, .service-20 .left {
    width: 45%;
  }
}
.service-22 {
  position: relative;
  margin-top: 20px;
}

.service-25 .main-category {
  position: relative;
  margin-bottom: 25px;
}

.service-22 .main-category .title {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
  font-family: "KalamehWeb";
  color: #222;
  min-width: 300px;
  margin: 0 auto 30px auto;
}

.service-22 .main-category .main-category-full .title {
  position: absolute;
  left: 120px;
}

.service-22 .main-category .title > h2, .service-22 .main-category .title > .h2 {
  font-size: 40px;
  font-weight: 600;
}

.service-22 .main-category .title > a {
  border-radius: 2px;
  display: inline-block;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.1019607843);
  background-color: #eb3a3f;
  color: #fff;
  min-height: 44px;
  min-width: 140px;
  font-family: "KalamehWeb";
  font-size: 16px;
  font-weight: 500;
  padding-top: 9px;
  margin-top: 15px;
  transition: background-color 400ms ease, color 400ms ease;
}

.service-22 .main-category .title > a:hover {
  background-color: #222;
  color: #fff;
}

.service-22 .main-category .title > p {
  padding: 0;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
}

.service-22 .tns-nav {
  bottom: 2px;
}

@media (max-width: 991.98px) {
  .service-22 .main-category .title {
    min-width: 200px;
    padding-bottom: 30px;
  }
  .service-22 .main-category .main-category-full .title {
    left: 30px;
  }
  .service-22 .main-category .title > p {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .service-22 .main-category .title > h2, .service-22 .main-category .title > .h2 {
    font-size: 25px;
  }
  .service-22 .main-category .title > a {
    min-height: 35px;
    min-width: 100px;
    font-size: 14px;
    padding-top: 8px;
    margin-top: 15px;
  }
}
.service-23 {
  position: relative;
  background-color: #f4f4f4;
  min-height: 400px;
  padding: 40px 0 40px 0;
}

.service-23 .countdown-wrapper {
  text-align: center;
}

.service-23 .countdown-wrapper h3, .service-23 .countdown-wrapper .h3 {
  font-size: 35px;
  font-weight: 600;
  font-family: "KalamehWeb";
}

.service-23 .timer {
  direction: ltr;
  margin-top: 45px;
}

.service-23 .single-countdown {
  display: inline-block;
  color: #4a4a4a;
  width: 110px;
}

.service-23 .countdown-image {
  position: relative;
}

.service-23 .countdown-off {
  display: inline-block;
  font-family: "iransansNum";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  position: absolute;
  left: 20px;
  top: 50px;
  font-size: 18px;
  padding: 12px 0 0 0;
  text-align: center;
}

.service-23 .single-countdown-time {
  display: block;
  font-family: "iransansNum";
  font-size: 40px;
  font-weight: 300;
  line-height: 56px;
  position: relative;
  width: 42px;
  letter-spacing: 2px;
  text-align: left;
  margin: 0 auto;
  margin-bottom: 30px;
}

.service-23 .seperator {
  top: -70px;
  font-size: 35px;
  position: relative;
  font-weight: 700;
  color: #ec393f;
}

.service-23 .single-countdown-text {
  font-family: "KalamehWeb";
  display: block;
  font-size: 19px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.service-23 .countdown-wrapper a {
  border-radius: 2px;
  display: inline-block;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.1019607843);
  background: #eb3a3f;
  color: #fff;
  min-height: 44px;
  min-width: 140px;
  font-family: "KalamehWeb";
  font-size: 16px;
  font-weight: 500;
  padding-top: 9px;
  margin-top: 15px;
  transition: background 400ms ease, color 400ms ease;
}

.service-23 .countdown-wrapper a:hover {
  background: #222;
  color: #fff;
}

@media (max-width: 991.98px) {
  .service-23 .single-countdown {
    width: 50px;
  }
  .service-23 .single-countdown-time {
    font-size: 30px;
  }
}
.service-24 {
  position: relative;
  background-color: #fff;
  padding: 50px 0 0px 0;
}

.service-24 .header-tab {
  margin-bottom: 70px;
}

.service-24 .header-tab a {
  color: #ccc;
  transition: color 400ms ease;
  font-family: "KalamehWeb";
  padding: 0 15px 0 15px;
  font-size: 20px;
  font-weight: 600;
  transition: color 400ms ease;
}

.service-24 .header-tab a.active {
  color: #222;
  transition: color 400ms ease;
}

.service-25 {
  position: relative;
}

.service-25 .main-category {
  position: relative;
  margin-bottom: 25px;
}

.service-25 .single-category {
  position: relative;
  margin-bottom: 25px;
}

.service-25 .single-category a img {
  transition: all 1s;
  transform: scale(1);
}

.service-25 .single-category a:hover img {
  transform: scale(1.1);
}

.service-25 .single-category .title {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 20px;
  text-align: center;
  font-family: "KalamehWeb";
}

.service-25 .single-category .title > p {
  display: inline-block;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.1019607843);
  background: #eb3a3f;
  color: #fff;
  min-height: 44px;
  min-width: 140px;
  font-size: 16px;
  font-weight: 500;
  padding-top: 9px;
}

.service-25 .single-category .title > h3, .service-25 .single-category .title > .h3 {
  display: inline-block;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  color: #222;
  min-height: 44px;
  min-width: 140px;
  font-size: 18px;
  font-weight: 500;
  padding-top: 9px;
  border-radius: 2px;
  transition: background 400ms ease, color 400ms ease;
}

.service-25 .single-category .title > h3:hover, .service-25 .single-category .title > .h3:hover {
  background: #222;
  color: #fff;
}

.service-25 .main-category .title {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
  font-family: "KalamehWeb";
  color: #222;
  min-width: 300px;
  margin: 0 auto 30px auto;
}

.service-25 .main-category .main-category-full .title {
  position: absolute;
  left: 120px;
}

.service-25 .main-category .title > h2, .service-25 .main-category .title > .h2 {
  font-size: 40px;
  font-weight: 600;
}

.service-25 .main-category .title > a {
  border-radius: 2px;
  display: inline-block;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.1019607843);
  background-color: #eb3a3f;
  color: #fff;
  min-height: 44px;
  min-width: 140px;
  font-family: "KalamehWeb";
  font-size: 16px;
  font-weight: 500;
  padding-top: 9px;
  margin-top: 15px;
  transition: background-color 400ms ease, color 400ms ease;
}

.service-25 .main-category .title > a:hover {
  background-color: #222;
  color: #fff;
}

.service-25 .main-category .title > p {
  padding: 0;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
}

.service-25 .tns-nav {
  bottom: 2px;
}

@media (max-width: 991.98px) {
  .service-25 .main-category .title {
    min-width: 200px;
    padding-bottom: 30px;
  }
  .service-25 .main-category .main-category-full .title {
    left: 30px;
  }
  .service-25 .main-category .title > p {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .service-25 .main-category .title > h2, .service-25 .main-category .title > .h2 {
    font-size: 25px;
  }
  .service-25 .main-category .title > a {
    min-height: 35px;
    min-width: 100px;
    font-size: 14px;
    padding-top: 8px;
    margin-top: 15px;
  }
}
.service-1-1 {
  position: relative;
  margin-bottom: -60px;
  z-index: 2;
}

.service-1-1 .box {
  width: 270px;
  height: 310px;
  background: grey;
  border: 1px solid;
  border-radius: 0;
}

.service-1-1 .box-1, .service-1-1 .box-3 {
  transform: perspective(500px) rotateY(15deg);
}

.service-1-1 .box-2, .service-1-1 .box-4 {
  transform: perspective(500px) rotateY(345deg);
}

.service-1-1 .box img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  background: rgba(0, 0, 0, 0.2509803922);
  padding: 15px;
  transform: rotate(0);
  transition: transform 300ms;
}

.service-1-1 .box:hover img {
  transform: rotate(60deg);
}

.service-1-1 .box span {
  display: block;
  text-align: center;
  font-size: 14px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.631372549);
  transition: color 300ms ease;
}

.service-1-1 .box strong {
  display: block;
  text-align: center;
  font-size: 22px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.631372549);
  transition: color 300ms ease;
}

.service-1-1 .box:hover span, .service-1-1 .box:hover strong {
  color: #fff;
}

.service-1-1 .box-1 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #462e56;
  border-color: #462e56;
  color: #fff;
}

.service-1-1 .box-2 {
  margin-left: -26px;
  margin-right: 5px;
  border-radius: 0;
  background-color: #249a9e;
  border-color: #249a9e;
  color: #fff;
}

.service-1-1 .box-3 {
  margin-right: -26px;
  margin-left: 5px;
  border-radius: 0;
  background-color: #288f91;
  border-color: rgb(40, 143, 145);
  color: #fff;
}

.service-1-1 .box-4 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #462e56;
  border-color: #462e56;
  color: #fff;
}

@media (max-width: 991.98px) {
  .service-1-1 {
    margin-bottom: -60px;
  }
  .service-1-1 .box-wrap {
    flex-wrap: wrap-reverse !important;
    width: 100% !important;
  }
  .service-1-1 .box {
    flex: 0 0 auto;
    width: 50%;
    border-radius: 0 !important;
  }
  .service-1-1 .box-1, .service-1-1 .box-3,
  .service-1-1 .box-2, .service-1-1 .box-4 {
    transform: none;
    margin: 0;
  }
  .service-1-1 .box-1 {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }
  .service-1-1 .box-4 {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}
.service-1-2 {
  position: relative;
  margin-bottom: -60px;
  z-index: 2;
}

.service-1-2 .box {
  width: 270px;
  height: 310px;
  background: grey;
  border: 1px solid;
  border-radius: 0;
}

.service-1-2 .box-1, .service-1-2 .box-3 {
  transform: perspective(500px) rotateY(15deg);
}

.service-1-2 .box-2, .service-1-2 .box-4 {
  transform: perspective(500px) rotateY(345deg);
}

.service-1-2 .box img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  display: block;
  transform: rotate(0);
  transition: transform 300ms;
}

.service-1-2 .box:hover img {
  transform: rotate(60deg);
}

.service-1-2 .box span {
  display: block;
  text-align: center;
  font-size: 14px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.631372549);
  transition: color 300ms ease;
}

.service-1-2 .box strong {
  display: block;
  text-align: center;
  font-size: 20px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.81);
  transition: color 300ms ease;
}

.service-1-2 .box:hover span, .service-1-2 .box:hover strong {
  color: #fff;
}

.service-1-2 .box-1 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #a35101;
  border-color: #743e00;
  color: #fff;
}

.service-1-2 .box-2 {
  margin-left: -26px;
  margin-right: 5px;
  border-radius: 0;
  background-color: #249a9e;
  border-color: #249a9e;
  color: #fff;
}

.service-1-2 .box-3 {
  margin-right: -26px;
  margin-left: 5px;
  border-radius: 0;
  background-color: #288f91;
  border-color: rgb(40, 143, 145);
  color: #fff;
}

.service-1-2 .box-4 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #a35101;
  border-color: #743e00;
  color: #fff;
}

@media (max-width: 991.98px) {
  .service-1-2 {
    margin-bottom: -60px;
  }
  .service-1-2 .box-wrap {
    flex-wrap: wrap-reverse !important;
    width: 100% !important;
  }
  .service-1-2 .box {
    flex: 0 0 auto;
    width: 50%;
    border-radius: 0 !important;
  }
  .service-1-2 .box-1, .service-1-2 .box-3,
  .service-1-2 .box-2, .service-1-2 .box-4 {
    transform: none;
    margin: 0;
  }
  .service-1-2 .box-1 {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }
  .service-1-2 .box-4 {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}
.service-3-1 {
  background: #f7f7f7;
  padding: 50px 0 0 0;
  position: relative;
  overflow: hidden;
}

.service-3-1 .row, .service-3-1 .col-12 {
  direction: rtl;
}

.service-3-1 .title {
  font-family: kalamehWeb;
  font-weight: 900;
  color: #212529;
  margin-top: 20px;
  font-size: 2rem;
  text-transform: uppercase;
}

.service-3-1 .sub-title {
  font-family: kalamehWeb;
  font-weight: 900;
  color: #212529;
  font-size: 1.3rem;
}

.service-3-1 .main-icon {
  position: relative;
  font-size: 40px;
  top: -12px;
  left: 10px;
}

.service-3-1 p {
  color: #777;
  line-height: 26px;
  margin: 0 0 20px;
  font-size: 14px;
  text-align: justify;
  direction: rtl;
}

.service-3-1 .more {
  color: #e04622;
}

.service-3-1 .more i {
  position: relative;
  top: 2px;
  transform: translate3d(0, 0, 0);
  transition: ease transform 300ms;
}

.service-3-1 .more:hover i {
  transform: translate3d(-7px, 0, 0);
}

.service-3-1 .custom-square-1 {
  width: 216px;
  height: 216px;
  background-color: #CCC;
  transform: rotate(48deg);
  transform-origin: 0% 100%;
}

.service-3-1 .custom-square-wrap {
  position: absolute;
  bottom: -40px;
}

.service-3-1 .custom-square-1.bg-dark {
  margin-left: 20px;
}

.service-3-1 .custom-square-1.bg-darktomato {
  margin-left: 120px;
}

@media (max-width: 991.98px) {
  .service-3-1 .custom-square-wrap {
    position: absolute;
    bottom: -70px;
  }
}
.faq-1-1 {
  margin-top: 0;
  position: relative;
  padding: 40px 0 50px;
  background: #f4f4f4;
}

.faq-1-1 .accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-1-1 .section-header-10 {
  margin-bottom: 70px;
  margin-top: 30px;
}

.faq-1-1 .accordion-button {
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  padding: 18px 20px 18px 20px;
}

.faq-1-1 .accordion-button .number {
  width: 25px;
  height: 25px;
  background: #7a7a7a;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  padding-top: 6px;
  font-size: 13px;
  margin-left: 8px;
  display: inline-block;
  line-height: 16px;
}

.faq-1-1 .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: #eeeeee;
}

.faq-1-1 .accordion-body {
  direction: rtl;
  text-align: justify;
  line-height: 30px;
  font-size: 14px;
}

.faq-1-1 .separator-tg.separator-tg-bottom {
  position: absolute;
  bottom: -30px;
  background: #fff;
  transform: rotateX(180deg);
}

.faq-1-1 .accordion-item {
  border: none;
  margin-bottom: 15px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.04) !important;
}

.faq-1-1 .accordion-item:first-of-type {
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.faq-1-1 .accordion-item:not(:first-of-type) {
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.faq-1-1 .accordion-button:hover, .faq-1-1 .accordion-button:not(.collapsed) {
  background: var(--bs-gray-400);
}

@media (max-width: 991.98px) {
  .faq-1-1 .accordion-button .number {
    display: none;
  }
  .faq-1-1 .accordion-button {
    font-size: 13px;
    line-height: 29px;
  }
}
.faq-1-2 {
  margin-top: 0;
  position: relative;
  padding: 40px 0 50px;
}

.faq-1-2 .accordion {
  max-width: 700px;
  margin: 0 auto;
}

.faq-1-2 .section-header-10 {
  margin-bottom: 50px;
  margin-top: 33px;
}

.faq-1-2 .accordion-button {
  text-align: right;
  font-size: 15px;
  font-weight: 600;
}

.faq-1-2 .accordion-button .number {
  width: 25px;
  height: 25px;
  background: #f2565d;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  padding-top: 6px;
  font-size: 13px;
  margin-left: 8px;
  display: inline-block;
}

.faq-1-2 .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: #eeeeee;
}

.faq-1-2 .accordion-body {
  direction: rtl;
  text-align: justify;
  line-height: 30px;
  font-size: 14px;
}

.faq-1-2 .separator-tg.separator-tg-bottom {
  position: absolute;
  bottom: -30px;
  background: #fff;
  transform: rotateX(180deg);
}

@media (max-width: 991.98px) {
  .faq-1-2 .accordion-button .number {
    display: none;
  }
  .faq-1-2 .accordion-button {
    font-size: 13px;
    line-height: 29px;
  }
}
.faq-1-3 {
  margin-top: 0;
  position: relative;
  padding: 40px 0 50px;
}

.faq-1-3 .accordion {
  max-width: 700px;
  margin: 0 auto;
}

.faq-1-3 .section-header-10 {
  margin-bottom: 50px;
  margin-top: 33px;
}

.faq-1-3 .accordion-button {
  text-align: right;
  font-size: 15px;
  font-weight: 600;
}

.faq-1-3 .accordion-button .number {
  width: 25px;
  height: 25px;
  background: #00a6a6;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  padding-top: 6px;
  font-size: 13px;
  margin-left: 8px;
  display: inline-block;
}

.faq-1-3 .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: #eeeeee;
}

.faq-1-3 .accordion-body {
  direction: rtl;
  text-align: justify;
  line-height: 30px;
  font-size: 14px;
}

.faq-1-3 .separator-tg.separator-tg-bottom {
  position: absolute;
  bottom: -30px;
  background: #fff;
  transform: rotateX(180deg);
}

@media (max-width: 991.98px) {
  .faq-1-3 .accordion-button .number {
    display: none;
  }
  .faq-1-3 .accordion-button {
    font-size: 13px;
    line-height: 29px;
  }
}
.gallery-1-1 {
  overflow: hidden;
}

.gallery-1-1 .title {
  font-family: kalamehWeb;
  font-weight: 900;
  color: #212529;
  margin-top: 20px;
  font-size: 2rem;
  text-transform: uppercase;
}

.gallery-1-1 p {
  color: #777;
  line-height: 26px;
  margin: 0 0 20px;
  font-size: 14px;
  text-align: justify;
  direction: rtl;
}

.gallery-1-1 .diamonds-wrapper {
  direction: ltr;
  text-align: left;
}

.gallery-1-1 .diamonds {
  font-size: 0;
  margin: 40px auto 85px;
  position: relative;
  text-align: center;
  padding: 50px 0 0 57px;
  direction: rtl;
}

.gallery-1-1 .diamonds > li {
  display: inline-block;
  font-size: 18px;
  margin-left: 135px;
  line-height: 24px;
}

.gallery-1-1 .diamonds > li:nth-child(3) {
  margin-left: 0;
}

.gallery-1-1 .diamonds > li:nth-child(4) {
  left: 200px;
  top: 9px;
  position: absolute;
}

.gallery-1-1 .diamonds > li:nth-child(5) {
  margin-right: 516px;
  margin-top: -70px;
}

.gallery-1-1 .diamonds > li:nth-child(6) {
  position: absolute;
  margin: -8px -27px 0 0;
  left: 43px;
}

.gallery-1-1 .diamonds > li:nth-child(7) {
  position: absolute;
  margin: 93px -133px 0 0;
  left: 147px;
}

.gallery-1-1 .diamonds .diamond {
  background: 0 0;
  display: block;
  height: 243px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: 245px;
  overflow: hidden;
  transform: rotate(225deg);
}

.gallery-1-1 .diamonds .diamond-sm {
  height: 123px;
  width: 123px;
}

.gallery-1-1 .diamonds .diamond:before {
  transition: all 0.2s ease;
  color: #fff;
  content: "\e821";
  font-family: iconix;
  font-size: 28px;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 1000;
  transform-origin: 50% 50%;
  transform: translate3d(-50%, -50%, 0) rotate(225deg) scale(2);
}

.diamonds .diamond:hover:before {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) rotate(225deg) scale(1);
}

.gallery-1-1 .diamonds .content {
  display: table-cell;
  height: 255px;
  padding: 0 8px 0 6px;
  transform: rotate(135deg);
  text-align: center;
  vertical-align: middle;
  width: 255px;
  position: relative;
}

.gallery-1-1 .diamonds .diamond-sm .content {
  height: 123px;
  width: 123px;
}

.gallery-1-1 .diamonds .content img {
  max-width: 375px;
  min-width: 355px;
  margin-left: -50%;
}

.gallery-1-1 .diamonds .diamond-sm .content img {
  max-width: 195px;
  min-width: 184px;
}

.gallery-1-1 .diamonds .diamond:after {
  transition: all 0.2s ease;
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  transform: scale(0);
  z-index: 100;
}

.gallery-1-1 .diamonds .diamond:hover:after {
  opacity: 0.3;
  transform: scale(1);
}

.gallery-1-1 .more-project {
  border-radius: 2px;
}

.gallery-1-1 .more-project i {
  transform: translate3d(0, 0, 0);
  transition: ease transform 300ms;
}

.gallery-1-1 .more-project:hover i {
  transform: translate3d(-7px, 0, 0);
}

@media (max-width: 991.98px) {
  .gallery-1-1 .diamonds > li {
    margin: 0 auto;
    display: block;
  }
  .gallery-1-1 .diamonds > li:nth-child(3) {
    margin: 0 auto;
  }
  .gallery-1-1 .diamonds > li:nth-child(4) {
    left: auto;
    top: auto;
    position: relative;
  }
  .gallery-1-1 .diamonds > li:nth-child(5) {
    margin: 0 auto;
  }
  .gallery-1-1 .diamonds > li:nth-child(6) {
    position: relative;
    margin: 0 auto;
    left: auto;
  }
  .gallery-1-1 .diamonds > li:nth-child(7) {
    position: relative;
    margin: 0 auto;
    left: auto;
  }
  .gallery-1-1 .diamonds .diamond {
    margin: 0 auto;
  }
  .gallery-1-1 p.footer {
    margin-top: 50px;
  }
  .gallery-1-1 .diamonds {
    padding: 50px 0 0 18px;
  }
  .gallery-1-1 .footer {
    text-align: center;
  }
}
.gallery-1-2 {
  overflow: hidden;
}

.gallery-1-2 .title {
  font-family: kalamehWeb;
  font-weight: 900;
  color: #212529;
  margin-top: 20px;
  font-size: 2rem;
  text-transform: uppercase;
}

.gallery-1-2 p {
  color: #777;
  line-height: 26px;
  margin: 0 0 20px;
  font-size: 14px;
  text-align: justify;
  direction: rtl;
}

.gallery-1-2 .diamonds-wrapper {
  direction: ltr;
  text-align: left;
}

.gallery-1-2 .diamonds {
  font-size: 0;
  margin: 40px auto 85px;
  position: relative;
  text-align: center;
  padding: 50px 0 0 57px;
  direction: rtl;
}

.gallery-1-2 .diamonds > li {
  display: inline-block;
  font-size: 18px;
  margin-left: 135px;
  line-height: 24px;
}

.gallery-1-2 .diamonds > li:nth-child(3) {
  margin-left: 0;
}

.gallery-1-2 .diamonds > li:nth-child(4) {
  left: 200px;
  top: 9px;
  position: absolute;
}

.gallery-1-2 .diamonds > li:nth-child(5) {
  margin-right: 516px;
  margin-top: -70px;
}

.gallery-1-2 .diamonds > li:nth-child(6) {
  position: absolute;
  margin: -8px -27px 0 0;
  left: 43px;
}

.gallery-1-2 .diamonds > li:nth-child(7) {
  position: absolute;
  margin: 93px -133px 0 0;
  left: 147px;
}

.gallery-1-2 .diamonds .diamond {
  background: 0 0;
  display: block;
  height: 243px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: 245px;
  overflow: hidden;
  transform: rotate(225deg);
}

.gallery-1-2 .diamonds .diamond-sm {
  height: 123px;
  width: 123px;
}

.gallery-1-2 .diamonds .diamond:before {
  transition: all 0.2s ease;
  color: #fff;
  content: "\e821";
  font-family: iconix;
  font-size: 28px;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 1000;
  transform-origin: 50% 50%;
  transform: translate3d(-50%, -50%, 0) rotate(225deg) scale(2);
}

.diamonds .diamond:hover:before {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) rotate(225deg) scale(1);
}

.gallery-1-2 .diamonds .content {
  display: table-cell;
  height: 255px;
  padding: 0 8px 0 6px;
  transform: rotate(135deg);
  text-align: center;
  vertical-align: middle;
  width: 255px;
  position: relative;
}

.gallery-1-2 .diamonds .diamond-sm .content {
  height: 123px;
  width: 123px;
}

.gallery-1-2 .diamonds .content img {
  max-width: 375px;
  margin-left: -50%;
}

.gallery-1-2 .diamonds .diamond-sm .content img {
  max-width: 195px;
}

.gallery-1-2 .diamonds .diamond:after {
  transition: all 0.2s ease;
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  transform: scale(0);
  z-index: 100;
}

.gallery-1-2 .diamonds .diamond:hover:after {
  opacity: 0.3;
  transform: scale(1);
}

.gallery-1-2 .more-project {
  border-radius: 2px;
}

.gallery-1-2 .more-project i {
  transform: translate3d(0, 0, 0);
  transition: ease transform 300ms;
}

.gallery-1-2 .more-project:hover i {
  transform: translate3d(-7px, 0, 0);
}

.gallery-1-2.circle .diamonds .diamond {
  border-radius: 30%;
  border: 1px solid rgba(0, 0, 0, 0.5215686275);
}

.gallery-1-2.circle .footer {
  position: relative;
  top: -60px;
}

@media (max-width: 991.98px) {
  .gallery-1-2 .diamonds > li {
    margin: 0 auto;
    display: block;
  }
  .gallery-1-2 .diamonds > li:nth-child(3) {
    margin: 0 auto;
  }
  .gallery-1-2 .diamonds > li:nth-child(4) {
    left: auto;
    top: auto;
    position: relative;
  }
  .gallery-1-2 .diamonds > li:nth-child(5) {
    margin: 0 auto;
  }
  .gallery-1-2 .diamonds > li:nth-child(6) {
    position: relative;
    margin: 0 auto;
    left: auto;
  }
  .gallery-1-2 .diamonds > li:nth-child(7) {
    position: relative;
    margin: 0 auto;
    left: auto;
  }
  .gallery-1-2 .diamonds .diamond {
    margin: 0 auto;
  }
  .gallery-1-2 p.footer {
    margin-top: 50px;
  }
  .gallery-1-2 .diamonds {
    padding: 50px 0 0 18px;
  }
  .gallery-1-2 .footer {
    text-align: center;
  }
  .gallery-1-2.circle .footer {
    top: 20px;
    margin: 25px 0 25px 0;
  }
  .gallery-1-2.circle .footer p {
    text-align: center;
  }
}
.gallery-1-3 {
  overflow: hidden;
}

.gallery-1-3 .title {
  font-family: kalamehWeb;
  font-weight: 900;
  color: #212529;
  margin-top: 20px;
  font-size: 2rem;
  text-transform: uppercase;
}

.gallery-1-3 p {
  color: #777;
  line-height: 26px;
  margin: 0 0 20px;
  font-size: 14px;
  text-align: justify;
  direction: rtl;
}

.gallery-1-3 .diamonds-wrapper {
  direction: ltr;
  text-align: left;
}

.gallery-1-3 .diamonds {
  font-size: 0;
  margin: 40px auto 85px;
  position: relative;
  text-align: center;
  padding: 50px 28px 0 28px;
  transform: rotateY(180deg);
  direction: rtl;
}

.gallery-1-3 .diamonds > li {
  display: inline-block;
  font-size: 18px;
  margin-left: 135px;
  line-height: 24px;
}

.gallery-1-3 .diamonds > li:nth-child(3) {
  margin-left: 0;
}

.gallery-1-3 .diamonds > li:nth-child(4) {
  left: 172px;
  top: 9px;
  position: absolute;
}

.gallery-1-3 .diamonds > li:nth-child(5) {
  margin-right: 516px;
  margin-top: -70px;
}

.gallery-1-3 .diamonds > li:nth-child(6) {
  position: absolute;
  margin: -8px -27px 0 0;
  right: 333px;
  top: 16px;
}

.gallery-1-3 .diamonds > li:nth-child(7) {
  position: absolute;
  margin: 93px -133px 0 0;
  right: 376px;
  top: 145px;
}

.gallery-1-3 .diamonds .diamond {
  background: 0 0;
  display: block;
  height: 243px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: 245px;
  overflow: hidden;
  transform: rotate(225deg);
}

.gallery-1-3 .diamonds .diamond-sm {
  height: 123px;
  width: 123px;
}

.gallery-1-3 .diamonds .diamond:before {
  transition: all 0.2s ease;
  color: #fff;
  content: "\e821";
  font-family: iconix;
  font-size: 28px;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 1000;
  transform-origin: 50% 50%;
  transform: translate3d(-50%, -50%, 0) rotate(225deg) scale(2);
}

.diamonds .diamond:hover:before {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) rotate(225deg) scale(1);
}

.gallery-1-3 .diamonds .content {
  display: table-cell;
  height: 255px;
  padding: 0 8px 0 6px;
  transform: rotate(135deg);
  text-align: center;
  vertical-align: middle;
  width: 255px;
  position: relative;
}

.gallery-1-3 .diamonds .diamond-sm .content {
  height: 123px;
  width: 123px;
}

.gallery-1-3 .diamonds .content img {
  max-width: 375px;
  margin-left: -50%;
  transform: rotateY(180deg);
}

.gallery-1-3 .diamonds .diamond-sm .content img {
  max-width: 195px;
}

.gallery-1-3 .diamonds .diamond:after {
  transition: all 0.2s ease;
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  transform: scale(0);
  z-index: 100;
}

.gallery-1-3 .diamonds .diamond:hover:after {
  opacity: 0.3;
  transform: scale(1);
}

.gallery-1-3 .more-project {
  border-radius: 2px;
}

.gallery-1-3 .more-project i {
  transform: translate3d(0, 0, 0);
  transition: ease transform 300ms;
}

.gallery-1-3 .more-project:hover i {
  transform: translate3d(-7px, 0, 0);
}

.gallery-1-3.circle .diamonds .diamond {
  border-radius: 30%;
  border: 1px solid rgba(0, 0, 0, 0.5215686275);
}

.gallery-1-3.circle .footer {
  position: relative;
  text-align: center;
}

@media (max-width: 991.98px) {
  .gallery-1-3 .diamonds > li {
    margin: 0 auto;
    display: block;
  }
  .gallery-1-3 .diamonds > li:nth-child(3) {
    margin: 0 auto;
  }
  .gallery-1-3 .diamonds > li:nth-child(4) {
    left: auto;
    top: auto;
    position: relative;
  }
  .gallery-1-3 .diamonds > li:nth-child(5) {
    margin: 0 auto;
  }
  .gallery-1-3 .diamonds > li:nth-child(6) {
    position: relative;
    margin: 0 auto;
    right: 0;
    left: 0;
  }
  .gallery-1-3 .diamonds > li:nth-child(7) {
    position: relative;
    margin: 0 auto;
    right: 0;
    left: 0;
    top: 0;
  }
  .gallery-1-3 .diamonds .diamond {
    margin: 0 auto;
  }
  .gallery-1-3 p.footer {
    margin-top: 50px;
  }
  .gallery-1-3 .diamonds {
    padding: 50px 0 0 18px;
  }
  .gallery-1-3 .footer {
    text-align: center;
  }
  .gallery-1-3.circle .footer {
    top: 20px;
    margin: 25px 0 25px 0;
  }
  .gallery-1-3.circle .footer p {
    text-align: center;
  }
}
.map-1-1 {
  position: relative;
  background-color: #327575;
  border-color: #efefef;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  height: 490px;
}

.map-1-1 .address-box {
  background: #288f91;
  border: 2px dashed #f1f1f1;
  color: rgba(255, 255, 255, 0.8392156863);
  height: 490px;
  width: 325px;
  margin: 0;
  padding: 35px;
  direction: rtl;
  text-align: right;
}

.map-1-1 .address-box .title {
  font-family: "KalamehWeb";
  font-weight: 600;
  color: #fff;
}

.map-1-1 .address-box .part-1 {
  margin-top: 20px;
  width: 100%;
}

.map-1-1 .address-box .part-1 > div {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1215686275);
  padding-bottom: 13px;
  padding-top: 14px;
  font-size: 13px;
}

.map-1-1 .address-box .part-1 > div:last-child {
  border-bottom: none;
}

.map-1-1 .address-box .part-2 {
  margin-bottom: 20px;
  width: 100%;
}

.map-1-1 .address-box .part-2 > div {
  padding: 15px 0 0px 0;
  font-size: 12px;
}

.map-1-1 .address-box .part-2 > div i {
  position: relative;
  top: 0;
  margin-left: 8px;
}

.map-1-1 .address-box .part-2 > div span.text-left {
  letter-spacing: 2px;
}

@media (max-width: 991.98px) {
  .map-1-1 .address-box {
    background: #267d7f;
    margin: 0 auto;
  }
}
.map-1-2 {
  position: relative;
  background-color: #327575;
  border-color: #efefef;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  height: 290px;
}

.map-1-2 .address-box {
  position: absolute;
  background: #288f91;
  color: rgba(255, 255, 255, 0.8392156863);
  height: 208px;
  width: 325px;
  margin: 0;
  padding: 35px;
  direction: rtl;
  text-align: right;
  right: 0;
  top: 40px;
  border-radius: 5px;
}

.map-1-2 .address-box .title {
  font-family: "KalamehWeb";
  font-weight: 600;
  color: #fff;
}

.map-1-2 .address-box .part-1 {
  margin-top: 20px;
  width: 100%;
}

.map-1-2 .address-box .part-1 > div {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1215686275);
  padding-bottom: 13px;
  padding-top: 14px;
  font-size: 13px;
}

.map-1-2 .address-box .part-1 > div:last-child {
  border-bottom: none;
}

.map-1-2 .address-box .part-2 {
  margin-bottom: 20px;
  width: 100%;
}

.map-1-2 .address-box .part-2 > div {
  padding: 15px 0 0px 0;
  font-size: 12px;
}

.map-1-2 .address-box .part-2 > div i {
  position: relative;
  top: 0;
  margin-left: 8px;
}

.map-1-2 .address-box .part-2 > div span.text-left {
  letter-spacing: 2px;
}

@media (max-width: 991.98px) {
  .map-1-2 .address-box {
    background: #267d7f;
    margin: 0 auto;
  }
}
.area {
  position: relative;
  background: #fff;
}

.area .container {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 300px;
}

.area .qr {
  position: relative;
  left: 0;
  top: 32px;
  display: inline-block;
  text-align: center;
}

.area .qr img {
  width: 210px;
  border-radius: 10px;
}

.area .qr .name {
  direction: ltr;
  display: block;
  font-size: 17px;
  font-family: inherit;
  color: #000;
  margin-top: -24px;
  letter-spacing: 1px;
  font-weight: 700;
  transition: color 400ms ease;
}

.area .qr i {
  font-style: normal;
  position: relative;
  padding: 0 4px 1 6px;
  display: inline-block;
  margin-right: 2px;
  top: -1px;
  color: #545454;
  transition: color 400ms ease;
}

.area .qr:hover i, .area .qr:hover .name {
  color: tomato;
}

.area .qr .desc {
  display: block;
  font-size: 12px;
  margin-top: -2px;
  font-weight: 700;
  font-family: "KalamehWeb";
  color: hsl(0, 0%, 0%);
}

.area .wrap {
  position: relative;
  right: 0;
  top: 60px;
  direction: rtl;
}

.area .wrap .title {
  font-size: 34px;
  font-weight: 600;
  margin-top: 56px;
  letter-spacing: 1px;
  font-family: "KalamehWeb";
  color: #959595;
}

.area .wrap p {
  margin-top: 11px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

.area .wrap a:before {
  content: "[";
}

.area .wrap a {
  color: tomato;
  display: inline-block;
  margin: 0 8px 0 0;
  transition: color 400ms ease;
}

.area .wrap a:after {
  content: "]";
}

.area .wrap a:hover {
  color: red;
}

.area .wrap a:before:hover {
  right: 0;
}

.area .wrap a:after:hover {
  left: 0;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.circles i {
  position: absolute;
  display: block;
  list-style: none;
  color: #000;
  font-size: 1rem;
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles i:nth-child(1) {
  left: 25%;
  font-size: 1.6rem;
  animation-delay: 0s;
}

.circles i:nth-child(2) {
  left: 10%;
  font-size: 0.9rem;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles i:nth-child(3) {
  left: 70%;
  font-size: 1.1rem;
  animation-delay: 4s;
}

.circles i:nth-child(4) {
  left: 40%;
  font-size: 1.3rem;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles i:nth-child(5) {
  left: 65%;
  font-size: 1rem;
  animation-delay: 0s;
}

.circles i:nth-child(6) {
  left: 75%;
  font-size: 1.7rem;
  animation-delay: 3s;
}

.circles i:nth-child(7) {
  left: 35%;
  font-size: 1.9rem;
  animation-delay: 7s;
}

.circles i:nth-child(8) {
  left: 50%;
  font-size: 0.8rem;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles i:nth-child(9) {
  left: 20%;
  font-size: 0.6rem;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles i:nth-child(10) {
  left: 85%;
  font-size: 1.4rem;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-350px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@media (max-width: 991.98px) {
  .area {
    padding-bottom: 40px;
  }
  .area .wrap {
    text-align: center;
    padding-bottom: 25px;
    top: 0px;
  }
  .area .wrap .title {
    font-size: 1.5rem;
    margin-top: 40px;
  }
  .area .wrap p {
    font-size: 14px;
  }
  .area .wrap a {
    display: block;
  }
  .area .container {
    height: auto;
  }
  .area .qr {
    top: 0px;
  }
  .area .qr img {
    margin-bottom: -25px;
    margin-top: -15px;
  }
  .area .qr .name {
    margin-top: 0;
  }
}
.filter-v {
  display: block;
  font-family: "KalamehWeb";
  font-weight: 900;
  color: #616161;
  background-color: #f1f1f1;
  text-shadow: #e0e0e0 1px 1px 0;
  text-align: center;
  font-size: 35px;
  direction: rtl;
  padding: 50px 0 50px 0;
  border-top: 1px solid #a5a5a5;
  border-bottom: 1px solid #d7d7d7;
  transition: color 300ms ease-in;
  background-image: url(/img/demo/patterns/14.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.filter-v .form-select {
  border-color: #d7d7d7;
}

.filter-v:hover {
  color: #3c3c3c;
}

@media (max-width: 991.98px) {
  .filter-v {
    padding: 15px 0 15px 0;
  }
}
.filter-1-1 {
  position: relative;
  background: #eee;
  text-align: center;
  direction: rtl;
  border-bottom: 1px solid #e5e5e5;
}

.filter-1-1 .btn-filter-wrap {
  position: relative;
  display: inline-block;
  margin: 10px 0 10px 5px;
}

.filter-1-1 .btn-filter {
  border: 1px solid #999;
  border-radius: 20px;
  background-color: #fff;
  color: #333;
  padding: 4px 0 2px 0;
}

.filter-1-1 .btn-filter span {
  display: inline-block;
  font-size: 13px;
  position: relative;
  top: -1px;
  padding: 0 10px 0 10px;
}

.filter-1-1 .btn-filter.active {
  border-color: #ab2024;
  background-color: #ffdcdd;
  color: #ab2024;
  transition: background-color 100ms ease;
}

.filter-1-1 .btn-filter.has-modal:hover {
  border-color: #ab2024;
  color: #ab2024;
  background-color: #ffbfbf;
}

.filter-1-1 .btn-filter.no-modal:hover {
  border: 1px solid #999;
  background-color: #fff;
  color: #333;
}

.filter-1-1 .btn-filter.active span {
  padding-left: 35px;
}

.filter-1-1 .btn-filter .filter-icon {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  padding: 0 2px 0 2px;
  left: -9px;
  top: 3px;
}

.filter-1-1 .btn-filter-wrap .btn-remove {
  position: absolute;
  float: left;
  left: -10px;
  top: -7px;
  font-size: 23px;
  color: #a41326;
  transition: color 200ms ease;
}

.filter-1-1 .btn-filter-wrap .btn-remove i {
  transform: rotate(0); /* چرخش المان به زاویه ۹۰ درجه */
  transform-origin: center; /* مرکز چرخش را در مرکز المان قرار دهید */
  transition: transform 150ms ease;
}

.filter-1-1 .btn-filter-wrap .btn-remove:hover i {
  transform: rotate(90deg); /* چرخش المان به زاویه ۹۰ درجه */
}

.filter-1-1 .filter-list {
  direction: rtl;
  margin: 0px 0px 5px 10px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.filter-1-1 .filter-list::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.filter-1-1 .filter-list::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 5px;
}

.filter-1-1 .filter-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #999;
}

@media (max-width: 991.98px) {
  .filter-1-1.fixed-footer {
    position: fixed;
    bottom: 51px;
    z-index: 11;
    width: 100%;
    padding-top: 3px;
    border-top: 1px solid #c9c9c9;
  }
}
/* footer */
footer {
  border-top: 2px solid #000000;
  background: #1f2327;
  padding-top: 20px;
}

footer ul {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin-bottom: 18px;
  direction: rtl;
}

footer li {
  display: inline-block;
  margin: 0px 15px;
  line-height: 2;
}

footer a {
  color: #282b2d;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

footer a:hover {
  color: #0c8ae4;
  text-decoration: none;
}

footer .footer-main {
  text-align: center;
  color: #b7b7b7;
  font-size: 0.75rem;
}

.social-wrap {
  text-align: center;
  width: 100%;
  transition: background 0.5s ease-in-out;
}

.social-wrap ul {
  padding: 0px;
}

.social-wrap li {
  display: inline-block;
  padding: 0px 4px;
  font-size: 50px;
  margin: 0;
}

.social-wrap li a {
  display: inline-block;
  color: #fff;
  background: #ddd;
  padding: 5px 15px 5px 15px;
  transition: all 0.5s ease-in-out;
  border-radius: 50px;
  font-size: 30px;
}

.social-wrap li a i {
  position: relative;
  top: 6px;
}

.social-wrap li:hover a {
  color: #fff;
  background: #000; /* Chrome, Safari, Opera */
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}

.lab_social_icon_footer {
  padding: 15px 0 33px 0;
}

.lab_social_icon_footer a {
  background: #ffffff;
  color: #000a1e;
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 5px;
  margin: 0 2px 0 2px;
  transition: all 0.5s ease-in-out;
}

.lab_social_icon_footer a i {
  font-size: 22px;
  text-align: center;
  position: relative;
  top: 4px;
  left: 0px;
}

.lab_social_icon_footer a:hover {
  background: #97cef5;
  transform: rotate(15deg);
}

.footer-copyright {
  position: relative;
  color: #cbcbcb;
  font-weight: 500;
  font-size: 0.75rem;
  direction: rtl;
  height: 26px;
  background: #3e3e3e;
}

.footer-copyright a {
  color: #c7c7c7;
  font-weight: 500;
}

.footer-copyright a:hover {
  color: rgb(122, 122, 108);
}

.footer-copyright i {
  font-size: 12px;
  position: relative;
  padding: 0 5px 0 5px;
  top: 1px;
}

.developer {
  position: absolute;
  left: 18px;
  font-size: 12px;
  top: 3px;
}

.developer a {
  font-size: 12px;
}

@media (max-width: 991.98px) {
  footer {
    margin-bottom: 59px;
  }
  .lab_social_icon_footer {
    padding: 25px 0 40px 0;
  }
  .developer {
    position: relative;
    left: auto;
    font-size: 12px;
    top: 0px;
  }
}
.footer-1 {
  background: none;
  position: relative;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ccc;
}

.footer-1 .top-footer {
  /* background: linear-gradient(rgb(248 249 250), rgb(204 204 204 / 58%)); */
  overflow: hidden;
  background: #ebebeb;
}

.footer-1 .footer-menu a {
  color: #444;
}

.footer-1 > .nav {
  background: #ebebeb;
}

.footer-1 > .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-1 > .nav .nav-link {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-1 > .nav .nav-link:hover {
  border-bottom: 2px solid #0d6efd;
}

.footer-1 .bottom-footer {
  height: 89px;
  font-weight: 600;
  padding: 28px 90px 0 50px;
  position: relative;
  border-top: 1px solid #cbcbcb;
  background: #e7e7e7;
  border-bottom: 10px solid #2f2f2f;
}

.footer-1 .web-developer {
  float: right;
}

.footer-1 .web-developer a {
  display: inline-block;
  color: #000;
  font-size: 14px;
}

.footer-1 .web-developer a:hover {
  color: #000;
}

.footer-1 .web-developer a:hover span {
  color: #0d6efd;
}

.footer-1 .copy-right {
  direction: ltr;
  margin-left: 35px;
  text-transform: capitalize;
}

.footer-1 .copy-right span.text {
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-1 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-1 .copy-right a {
  color: #000;
  font-size: 13px;
}

.footer-1 .copy-right a:hover {
  color: #0d6efd;
}

.footer-1 .social-btns {
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.footer-1 .social-btns ul {
  margin: 0;
  padding: 0;
}

.footer-1 .social-btns ul li {
  list-style: none;
  margin: 0;
}

.footer-1 .social-btns ul li a {
  position: relative;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  margin: 0 5px;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s;
  border: 1px solid #a9a9a9;
}

.footer-1 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-1 .social-btns ul li a .iconix {
  height: 100%;
  display: block;
  line-height: 38px;
  font-size: 24px;
  color: #7a7a7a;
  transition: 0.5s;
}

.footer-1 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-1 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-1 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-1 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-1 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-1 .namad {
  max-width: 314px;
  margin: 0 auto;
}

.footer-1 .namad a {
  margin-bottom: 5px;
  display: inline-block;
}

.footer-1 .namad img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #cbcbcb;
  max-width: 100%;
  min-width: 95px;
  min-height: 95px;
}

.footer-1 .namad img.enamad {
  cursor: pointer;
  padding: 0px 4px 0 4px;
  background: #fff;
}

.footer-1 .contacts {
  text-align: center;
}

.footer-1 .icon-location {
  font-size: 70px;
  color: #959595;
  margin-top: 15px;
}

.footer-1 .key {
  font-weight: 700;
  font-family: "KalamehWeb";
  margin-top: 10px;
  font-size: 20px;
  color: #959595;
  direction: rtl;
}

.footer-1 .value {
  color: #6a6a6a;
  font-weight: 700;
  direction: rtl;
  margin-top: 12px;
  text-transform: capitalize;
}

.footer-1 .value a.num {
  letter-spacing: 2px;
  direction: ltr;
  margin-top: 15px;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  font-family: "iransansNum";
}

.footer-1 .value span.headline {
  font-family: "KalamehWeb";
  letter-spacing: 0;
  direction: rtl;
  font-size: 16px;
  font-weight: 700;
}

.footer-1 .value span.colon {
  color: tomato;
  font-size: 18px;
  font-weight: 700;
  margin: 0 2px 0 2px;
}

.footer-1 .list-group {
  direction: rtl;
  text-align: right;
}

.footer-1 .list-group li {
  margin: 0;
  line-height: 35px;
}

.footer-1 .list-group li a {
  font-weight: 500;
  font-size: 0.8rem;
}

.footer-1 .list-group li a i {
  position: relative;
  margin: 0;
  padding: 0 0 0 7px;
  top: 1px;
  color: tomato;
  font-size: 12px;
  transition: margin 150ms linear;
}

.footer-1 .list-group li a:hover i {
  margin: 0 5px 0 0;
}

@media (max-width: 991.98px) {
  .footer-1 {
    border-top: none;
  }
  .footer-1 .namad {
    max-width: 400px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 12px;
  }
  .footer-1 .contacts {
    text-align: center;
  }
  .footer-1 .bottom-footer {
    margin-bottom: 60px;
    padding: 20px 10px 0;
  }
  .footer-1 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-1 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-1 .social-btns {
    margin-bottom: 35px;
  }
  .footer-1 .bottom-footer {
    height: 100px;
  }
}
.footer-2 {
  background: none;
  position: relative;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ccc;
}

footer.footer-2 a {
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-2 .top-footer {
  background-repeat: no-repeat;
  background-position: bottom;
  background-image: linear-gradient(237deg, #000a0c 0%, #3F51B5 100%) !important;
  overflow: hidden;
  background: #ebebeb;
}

.footer-2 .top-footer .row {
  margin-top: 22px;
}

.footer-2 .footer-menu {
  background: #1b2854;
  border-bottom: 1px solid #000000;
}

.footer-2 .footer-menu a em {
  font-weight: 500;
}

.footer-2 .footer-menu .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-2 .footer-menu a:hover {
  color: #ff6448;
  border-bottom: 2px solid #ff6448;
}

.footer-2 .footer-menu .nav .nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-2 .footer-menu .nav .nav-link:hover {
  border-bottom: 2px solid #ff6448;
}

.footer-2 .bottom-footer {
  height: 89px;
  font-weight: 500;
  padding: 30px 90px 0 50px;
  position: relative;
  border-top: 1px solid #263246;
  background: #1b2854;
  border-bottom: 10px solid #000000;
}

.footer-2 .web-developer {
  float: right;
}

.footer-2 .web-developer a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}

.footer-2 .web-developer a:hover {
  color: #fff;
}

.footer-2 .web-developer a:hover span {
  color: #ff6448;
}

.footer-2 .copy-right {
  direction: ltr;
}

.footer-2 .copy-right span.text {
  color: #fff;
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-2 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-2 .copy-right a {
  color: #fff;
  font-size: 13px;
}

.footer-2 .copy-right a:hover {
  color: #ff6448;
}

.footer-2 .social-btns {
  margin-top: 20px;
  margin-bottom: 25px;
  text-align: center;
}

.footer-2 .social-btns ul {
  margin: 0;
  padding: 0;
}

.footer-2 .social-btns ul li {
  list-style: none;
  margin: 0;
}

.footer-2 .social-btns ul li a {
  position: relative;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  margin: 0 5px;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s;
  border: none;
  background: #fff;
  color: #000;
}

.footer-2 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-2 .social-btns ul li a .iconix {
  height: 100%;
  display: block;
  line-height: 38px;
  font-size: 24px;
  color: #161616;
  transition: 0.5s;
}

.footer-2 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-2 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-2 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-2 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-2 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-2 .namad {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.footer-2 .namad a {
  margin-bottom: 5px;
  display: inline-block;
}

.footer-2 .namad img {
  margin: 5px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #cbcbcb;
  padding: 5px;
}

.footer-2 .contacts {
  text-align: center;
}

.footer-2 .icon-location {
  font-size: 70px;
  color: #fff;
  margin-top: 15px;
}

.footer-2 .key {
  font-weight: 500;
  font-family: "KalamehWeb";
  margin-top: 10px;
  font-size: 20px;
  color: #ffd000;
}

.footer-2 .value {
  color: #fff;
  font-weight: 500;
  margin-top: 12px;
}

.footer-2 .value span.num {
  letter-spacing: 2px;
  direction: ltr;
  margin-top: 15px;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  font-family: "iransansNum";
}

.footer-2 .value span.headline {
  font-family: "KalamehWeb";
  letter-spacing: 0;
  direction: rtl;
  font-size: 16px;
  font-weight: 500;
}

.footer-2 .value span.colon {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin: 0 2px 0 2px;
}

.footer-2 .list-group li {
  margin: 0;
  line-height: 38px;
}

.footer-2 .list-group li a {
  font-weight: 500;
  font-size: 13px;
  color: #ededed;
}

.footer-2 .list-group li a i {
  position: relative;
  padding-left: 7px;
  margin-right: 0;
  top: 1px;
  color: #ffffff;
  font-size: 12px;
  transition: margin-right 150ms linear;
}

.footer-2 .list-group li a:hover i {
  margin-right: 5px;
}

.footer-2 .map {
  max-width: 100%;
  margin-top: -20px;
  overflow: hidden;
  height: 107%;
  margin-right: -30px;
}

@media (max-width: 991.98px) {
  .footer-2 {
    border-top: none;
  }
  .footer-2 .namad {
    max-width: 400px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 12px;
  }
  .footer-2 .contacts {
    text-align: center;
  }
  .footer-2 .bottom-footer {
    margin-bottom: 60px;
    padding: 15px 10px 0 10px;
  }
  .footer-2 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-2 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-2 .social-btns {
    margin-bottom: 35px;
  }
  .footer-2 .footer-menu a.actives-item, .footer-2 .footer-menu a:hover {
    color: #ff6448;
    border-bottom-color: #ff6448;
  }
  .footer-2 .social-btns ul {
    overflow: hidden;
    max-height: 50px;
  }
  .footer-2 .list-group-flush {
    margin-bottom: 20px;
    margin-right: 15px;
  }
  .footer-2 .map {
    margin-top: 0px;
    height: 100%;
    margin-right: 0;
  }
}
.footer-3 {
  background-color: #64417b;
  border-color: #64417b;
  position: relative;
  padding: 0;
  margin: 0;
  border-top: 1px solid;
}

.footer-3 .separator-tg {
  position: absolute;
  top: -31px;
  background: #64417b;
}

.footer-3 .top-footer {
  overflow: hidden;
  padding-top: 25px;
  border-top: 1px solid rgba(82, 52, 102, 0.7411764706);
}

.footer-3 .footer-title {
  font-weight: 700;
  font-family: "KalamehWeb";
  color: #cabed3;
}

.footer-3 .footer-contact {
  text-align: left;
  direction: ltr;
  color: #444;
  transition: color 0.3s ease-out;
}

.footer-3 .footer-contact:hover {
  color: #e4405f;
  transition: color 0.3s ease-out;
}

.footer-3 .footer-contact span {
  font-size: 14px;
  display: inline-block;
  font-weight: 700;
}

.footer-3 .footer-contact i {
  font-size: 16px;
  position: relative;
  top: 3px;
  right: 0;
  margin-right: 5px;
  display: inline-block;
  font-weight: 700;
}

.footer-3 > .nav {
  background: #c8b2d9;
}

.footer-3 > .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-3 > .nav .nav-link {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-3 > .nav .nav-link:hover {
  border-bottom: 2px solid #0d6efd;
}

.footer-3 .bottom-footer {
  height: 79px;
  padding: 32px 90px 50px 50px;
  position: relative;
  background-color: #523466;
  color: #c8b2d9;
}

.footer-3 .bottom-footer a {
  font-weight: 500;
}

.footer-3 .web-developer {
  float: right;
}

.footer-3 .web-developer a {
  display: inline-block;
  color: #c8b2d9;
  font-size: 14px;
}

.footer-3 .web-developer a:hover {
  color: #c8b2d9;
  transition: color 0.3s ease-out;
}

.footer-3 .web-developer a:hover span {
  color: #ffc107;
  transition: color 0.3s ease-out;
}

.footer-3 .copy-right {
  direction: ltr;
  margin-left: 35px;
  text-transform: capitalize;
}

.footer-3 .copy-right span.text {
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-3 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-3 .copy-right a {
  color: #c8b2d9;
  font-size: 13px;
  transition: color 0.3s ease-out;
}

.footer-3 .copy-right a:hover {
  color: #ffc107;
  transition: color 0.3s ease-out;
}

.footer-3 .social-btns {
  text-align: center;
  position: relative;
  width: 100%;
  bottom: 0px;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
  margin-top: 80px;
}

.footer-3 .social-btns ul {
  margin: 0;
  padding: 0;
}

.footer-3 .social-btns ul li {
  list-style: none;
  margin: 0;
}

.footer-3 .social-btns ul li a {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  margin: 0 5px;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s;
  text-decoration: none;
  background: #493058;
  border: 1px solid #442b52;
}

.footer-3 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-3 .social-btns ul li a .iconix {
  left: -1px;
  height: 100%;
  display: block;
  font-size: 19px;
  color: #c0a3d3;
  transition: 0.5s;
  position: relative;
  top: 5px;
}

.footer-3 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-3 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-3 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-3 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-3 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-3 .footer-menu {
  background: #64417b;
}

.footer-3 .footer-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #2c2c2c;
  position: relative;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  transition: all 0.5s ease-out;
  min-width: 100px;
  font-weight: 500;
}

.footer-3 .footer-menu a:hover {
  color: #2c2c2c;
  border-bottom: 2px solid #eedbfb;
  transition: all 0.5s ease-out;
}

.footer-3 .footer-menu a em {
  color: #eedbfb;
  font-weight: 500;
  font-size: 13px;
  margin-top: 3px;
}

.footer-3 .list-group {
  direction: rtl;
  text-align: right;
  margin-top: 30px;
}

.footer-3 .list-group li {
  margin: 0;
  line-height: 35px;
}

.footer-3 .list-group li a {
  font-weight: 500;
  font-size: 0.75rem;
  color: #c8b2d9;
  transition: color 150ms ease;
}

.footer-3 .list-group li a i {
  position: relative;
  margin: 0;
  padding: 0 0 0 7px;
  top: 1px;
  color: tomato;
  font-size: 12px;
  transition: margin 150ms linear;
}

.footer-3 .list-group li a:hover {
  color: #e04622;
  transition: color 150ms ease;
}

.footer-3 .list-group li a:hover i {
  margin: 0 5px 0 0;
}

.footer-3 .footer-logo {
  display: block;
  margin-top: 0;
  font-family: "KalamehWeb";
  font-weight: 600;
  text-align: center;
}

.footer-3 .footer-logo img {
  max-width: 170px;
  width: 100%;
}

.footer-3 .footer-logo strong {
  color: #e7e6e7;
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

.footer-3 .footer-logo span {
  color: #c8b2d9;
  display: block;
  margin-top: 6px;
  font-size: 15px;
}

@media (max-width: 991.98px) {
  .footer-3 {
    border-top: none;
  }
  .footer-3 .bottom-footer {
    margin-bottom: 60px;
    padding: 20px 10px 0;
  }
  .footer-3 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-3 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-3 .social-btns {
    margin-bottom: 35px;
  }
  .footer-3 .footer-menu {
    background: inherit;
    background-color: #fff;
    color: #444444;
  }
  .footer-3 .footer-menu a {
    min-width: auto;
    min-height: 60px;
  }
  .footer-3 .footer-menu a i {
    margin-bottom: 0px;
  }
  .footer-3 .footer-menu a em {
    color: inherit;
    font-size: 12px;
    margin-top: 8px;
  }
  .footer-3 .footer-menu a:hover {
    color: #367e7e;
    border-bottom: 2px solid #367e7e;
  }
  .footer-3 .contact-wrap {
    margin-bottom: 35PX;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ccc;
  }
  .footer-3 .list-group {
    margin-top: 15px;
  }
  .footer-3 .list-group li {
    text-align: center;
  }
  .footer-3 .footer-title {
    text-align: center;
  }
  .footer-3 .footer-logo {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 355px) {
  .footer-3 .contact-wrap.d-flex {
    display: block !important;
    margin-bottom: 5px;
  }
}
.footer-4 {
  background: #f4f4f4;
  position: relative;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ccc;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-image: url("/img/demo/bg/19.webp");
  overflow: hidden;
}

.footer-4 .row {
  direction: rtl;
}

.footer-4 .top-footer {
  overflow: hidden;
  padding-top: 25px;
  border-top: 1px solid #ccc;
}

.footer-4 .footer-title {
  font-weight: 700;
  font-family: "KalamehWeb";
}

.footer-4 .footer-contact {
  text-align: left;
  direction: ltr;
  color: #444;
  transition: color 0.3s ease-out;
}

.footer-4 .footer-contact:hover {
  color: #e4405f;
  transition: color 0.3s ease-out;
}

.footer-4 .footer-contact span {
  font-size: 14px;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-4 .footer-contact i {
  font-size: 16px;
  position: relative;
  top: 3px;
  right: 0;
  margin-right: 5px;
  display: inline-block;
  font-weight: 700;
}

.footer-4 > .nav {
  background: #ebebeb;
}

.footer-4 > .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-4 > .nav .nav-link {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-4 > .nav .nav-link:hover {
  border-bottom: 2px solid #0d6efd;
}

.footer-4 .bottom-footer {
  height: 89px;
  font-weight: 600;
  padding: 32px 90px 50px 50px;
  position: relative;
  border-bottom: 10px solid #2f2f2f;
}

.footer-4 .bottom-footer a {
  font-weight: 500;
}

.footer-4 .web-developer {
  float: right;
}

.footer-4 .web-developer a {
  display: inline-block;
  color: #000;
  font-size: 14px;
}

.footer-4 .web-developer a:hover {
  color: #000;
  transition: color 0.3s ease-out;
}

.footer-4 .web-developer a:hover span {
  color: #f4f4f4;
  transition: color 0.3s ease-out;
}

.footer-4 .copy-right {
  direction: ltr;
  margin-left: 35px;
  text-transform: capitalize;
}

.footer-4 .copy-right span.text {
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-4 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-4 .copy-right a {
  color: #000;
  font-size: 13px;
  transition: color 0.3s ease-out;
}

.footer-4 .copy-right a:hover {
  color: #f4f4f4;
  transition: color 0.3s ease-out;
}

.footer-4 .social-btns {
  text-align: center;
  position: relative;
  width: 100%;
  bottom: 0px;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
  margin-top: 80px;
}

.footer-4 .social-btns ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.footer-4 .social-btns ul li {
  display: inline-block;
  line-height: 2;
  list-style: none;
  margin: 0;
}

.footer-4 .social-btns ul li a {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  margin: 0 5px;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-4 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-4 .social-btns ul li a .iconix {
  height: 100%;
  display: block;
  line-height: 31px;
  font-size: 19px;
  color: #444;
  transition: 0.5s;
}

.footer-4 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-4 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-4 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-4 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-4 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-4 .footer-menu {
  background: #e04622;
}

.footer-4 .footer-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #2c2c2c;
  position: relative;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  transition: all 0.5s ease-out;
  min-width: 100px;
  font-weight: 500;
}

.footer-4 .footer-menu a:hover {
  color: #2c2c2c;
  border-bottom: 2px solid #f4f4f4;
  transition: all 0.5s ease-out;
}

.footer-4 .footer-menu a em {
  color: #f4f4f4;
  font-weight: 500;
  font-size: 14px;
  margin-top: 3px;
}

.footer-4 .list-group {
  direction: rtl;
  text-align: right;
  margin-top: 30px;
}

.footer-4 .list-group li {
  margin: 0;
  line-height: 35px;
}

.footer-4 .list-group li a {
  font-weight: 500;
  font-size: 0.8rem;
  color: #444;
  transition: color 150ms ease;
}

.footer-4 .list-group li a i {
  position: relative;
  margin: 0;
  padding: 0 0 0 7px;
  top: 1px;
  color: tomato;
  font-size: 12px;
  transition: margin 150ms linear;
}

.footer-4 .list-group li a:hover {
  color: #e04622;
  transition: color 150ms ease;
}

.footer-4 .list-group li a:hover i {
  margin: 0 5px 0 0;
}

.footer-4 .footer-logo {
  display: block;
  margin-top: 0;
  font-family: "KalamehWeb";
  font-weight: 600;
  text-align: center;
}

.footer-4 .footer-logo img {
  filter: invert(80%);
  max-width: 320px;
  width: 100%;
}

.footer-4 .footer-logo strong {
  color: #333;
  display: block;
  margin-top: -30px;
  font-size: 18px;
}

.footer-4 .footer-logo span {
  color: #666;
  display: block;
  margin-top: 2px;
  font-size: 15px;
}

.footer-4 .ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #015871;
}

.footer-4 .wave {
  background: url("/img/assets/wave.svg") repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.footer-4 .wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

.footer-4 .endWave {
  display: none;
}

@media (max-width: 991.98px) {
  .footer-4 {
    border-top: none;
  }
  .footer-4 .bottom-footer {
    margin-bottom: 60px;
    padding: 20px 10px 0;
  }
  .footer-4 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-4 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-4 .social-btns {
    margin-bottom: 35px;
  }
  .footer-4 .footer-menu {
    background: inherit;
  }
  .footer-4 .footer-menu a {
    min-width: auto;
    min-height: 60px;
  }
  .footer-4 .footer-menu a i {
    margin-bottom: 0px;
  }
  .footer-4 .footer-menu a em {
    color: #444444;
    font-size: 12px;
    margin-top: 8px;
  }
  .footer-4 .contact-wrap {
    margin-bottom: 35PX;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ccc;
  }
  .footer-4 .list-group {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 355px) {
  .footer-4 .contact-wrap.d-flex {
    display: block !important;
    margin-bottom: 5px;
  }
}
@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%, 100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
.footer-5 {
  border-top: 1px solid #ccc;
  margin: 0;
  padding: 0;
  position: relative;
  background-image: url(/img/demo/patterns/14.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ffffff;
}

.footer-5 .top-footer {
  /* background: linear-gradient(rgb(248 249 250), rgb(204 204 204 / 58%)); */
  overflow: hidden;
}

.footer-5 .footer-menu {
  border-bottom: 1px solid #ccc;
  background-color: rgba(231, 231, 231, 0.7215686275);
}

.footer-5 .footer-menu .nav {
  background: #ebebeb;
  border-bottom: 1px solid #cbcbcb;
}

.footer-5 .footer-menu .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-5 .footer-menu .nav .nav-link {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-5 .footer-menu .nav .nav-link:hover {
  border-bottom: 2px solid tomato;
}

.footer-5 .bottom-footer {
  height: 89px;
  font-weight: 600;
  padding: 30px 90px 0 50px;
  position: relative;
  border-top: 1px solid #cbcbcb;
  background: #e7e7e7;
  border-bottom: 10px solid #2f2f2f;
}

.footer-5 .web-developer {
  float: right;
}

.footer-5 .web-developer a {
  display: inline-block;
  color: #000;
  font-size: 14px;
  direction: rtl;
}

.footer-5 .web-developer a:hover {
  color: #000;
}

.footer-5 .web-developer a:hover span {
  color: tomato;
}

.footer-5 .copy-right {
  direction: ltr;
}

.footer-5 .copy-right span.text {
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-5 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-5 .copy-right a {
  color: #000;
  font-size: 13px;
}

.footer-5 .copy-right a:hover {
  color: tomato;
}

.footer-5 .social-btns {
  margin-bottom: 15px;
  margin-top: 15px;
  text-align: center;
}

.footer-5 .social-btns ul {
  margin: 0;
  padding: 0;
}

.footer-5 .social-btns ul li {
  list-style: none;
  margin: 0;
}

.footer-5 .social-btns ul li a {
  border-radius: 6px;
  box-sizing: border-box;
  display: block;
  height: 50px;
  margin: 0 5px;
  padding: 6px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
  width: 50px;
}

.footer-5 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-5 .social-btns ul li a .iconix {
  color: #7a7a7a;
  display: block;
  font-size: 25px;
  height: 100%;
  line-height: 38px;
  transition: 0.5s;
}

.footer-5 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-5 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-5 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-5 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-5 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-5 .namad {
  max-width: 314px;
  margin: 0 auto;
}

.footer-5 .namad a {
  margin-bottom: 5px;
  display: inline-block;
}

.footer-5 .namad img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #cbcbcb;
  max-width: 100%;
}

.footer-5 .namad img.enamad {
  cursor: pointer;
  padding: 0px 4px 0 4px;
  background: #fff;
}

.footer-5 .contacts {
  text-align: center;
}

.footer-5 .icon-globe-alt {
  color: rgba(135, 135, 135, 0.9490196078);
  font-size: 55px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.footer-5 .key {
  color: #646464;
  font-family: KalamehWeb;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

.footer-5 .value {
  color: #646464;
  font-weight: 700;
  margin-top: 12px;
}

.footer-5 .value a.num {
  letter-spacing: 2px;
  direction: ltr;
  margin-top: 15px;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  font-family: "iransansNum";
}

.footer-5 .value a.num:hover {
  color: tomato;
}

.footer-5 .value span.headline {
  font-family: "KalamehWeb";
  letter-spacing: 0;
  direction: rtl;
  font-size: 16px;
  font-weight: 700;
}

.footer-5 .value span.colon {
  color: tomato;
  font-size: 18px;
  font-weight: 700;
  margin: 0 2px 0 2px;
}

.footer-5 .list-group li {
  margin: 0;
  line-height: 35px;
}

.footer-5 .list-group li a {
  font-weight: 500;
  font-size: 0.8rem;
}

.footer-5 .list-group li a:hover {
  color: tomato;
}

.footer-5 .list-group li a i {
  position: relative;
  padding-left: 7px;
  margin-right: 0;
  top: 1px;
  color: tomato;
  font-size: 12px;
  transition: margin-right 150ms linear;
}

.footer-5 .list-group li a:hover i {
  margin-right: 5px;
  color: tomato;
}

.footer-5 .map {
  max-width: 100%;
  margin-top: -20px;
  overflow: hidden;
  height: 107%;
  opacity: 0.7;
  margin-right: -30px;
  border-left: 1px solid #cbcbcb;
  border-right: 1px solid #cbcbcb;
}

@media (max-width: 991.98px) {
  .footer-5 {
    border-top: none;
  }
  .footer-5 .namad {
    max-width: 400px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 12px;
  }
  .footer-5 .contacts {
    text-align: center;
  }
  .footer-5 .bottom-footer {
    margin-bottom: 60px;
    padding: 15px 10px 0 10px;
  }
  .footer-5 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-5 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-5 .social-btns {
    margin-bottom: 35px;
  }
  .footer-5 .footer-menu {
    background-color: #fff;
  }
  .footer-5 .map {
    border-left: none;
    border-right: none;
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-top: 0px;
    max-width: 100%;
    margin-bottom: 6px;
    opacity: 0.7;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 10px;
  }
}
.footer-8 {
  position: relative;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ccc;
  background: url(/img/demo/patterns/13.webp);
}

.footer-8 .top-footer {
  background: linear-gradient(rgb(248, 249, 250), rgba(204, 204, 204, 0.58));
  overflow: hidden;
  /* background: #ebebeb; */
  padding-top: 50px;
  padding-bottom: 40px;
}

.footer-8 .footer-menu {
  background: #70767a;
}

.footer-8 .footer-menu a {
  color: #f4f4f4;
}

.footer-8 > .nav {
  background: #ebebeb;
}

.footer-8 > .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-8 > .nav .nav-link {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-8 > .nav .nav-link:hover {
  border-bottom: 2px solid #0d6efd;
}

.footer-8 .bottom-footer {
  height: 89px;
  font-weight: 600;
  padding: 28px 90px 0 50px;
  position: relative;
  border-top: 1px solid #cbcbcb;
  background: rgba(231, 231, 231, 0.8);
  border-bottom: 10px solid #2f2f2f;
}

.footer-8 .web-developer {
  float: right;
}

.footer-8 .web-developer a {
  display: inline-block;
  color: #000;
  font-size: 14px;
}

.footer-8 .web-developer a:hover {
  color: #000;
}

.footer-8 .web-developer a:hover span {
  color: #0d6efd;
}

.footer-8 .copy-right {
  direction: ltr;
  margin-left: 35px;
  text-transform: capitalize;
}

.footer-8 .copy-right span.text {
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-8 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-8 .copy-right a {
  color: #000;
  font-size: 13px;
}

.footer-8 .copy-right a:hover {
  color: #0d6efd;
}

.footer-8 .social-btns {
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.footer-8 .social-btns ul {
  margin: 0;
  padding: 0;
}

.footer-8 .social-btns ul li {
  list-style: none;
  margin: 0;
}

.footer-8 .social-btns ul li a {
  position: relative;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  margin: 0 5px;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s;
  border: 1px solid #a9a9a9;
}

.footer-8 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-8 .social-btns ul li a .iconix {
  height: 100%;
  display: block;
  line-height: 38px;
  font-size: 24px;
  color: #01a7aa;
  transition: 0.5s;
}

.footer-8 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-8 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-8 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-8 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-8 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-8 .namad {
  max-width: 314px;
  margin: 0 auto;
}

.footer-8 .namad a {
  margin-bottom: 5px;
  display: inline-block;
}

.footer-8 .namad img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #cbcbcb;
  max-width: 100%;
  min-width: 95px;
  min-height: 95px;
}

.footer-8 .namad img.enamad {
  cursor: pointer;
  padding: 0px 4px 0 4px;
  background: #fff;
}

.footer-8 .contacts {
  text-align: center;
}

.footer-8 .icon-location {
  font-size: 70px;
  color: #01a7aa;
  margin-top: 15px;
}

.footer-8 .key {
  font-weight: 500;
  font-family: "KalamehWeb";
  margin-top: 10px;
  font-size: 20px;
  color: #000;
  direction: rtl;
}

.footer-8 .value {
  color: #000;
  font-weight: 700;
  direction: rtl;
  margin-top: 12px;
  text-transform: capitalize;
}

.footer-8 .value a.num {
  letter-spacing: 2px;
  direction: ltr;
  margin-top: 15px;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  font-family: "iransansNum";
}

.footer-8 .value span.headline {
  font-family: "KalamehWeb";
  letter-spacing: 0;
  direction: rtl;
  font-size: 16px;
  font-weight: 700;
}

.footer-8 .value span.colon {
  color: tomato;
  font-size: 18px;
  font-weight: 700;
  margin: 0 2px 0 2px;
}

.footer-8 .list-group {
  direction: rtl;
  text-align: right;
}

.footer-8 .list-group li {
  margin: 0;
  line-height: 35px;
}

.footer-8 .list-group li a {
  font-weight: 500;
  font-size: 0.8rem;
}

.footer-8 .list-group li a i {
  position: relative;
  margin: 0;
  padding: 0 0 0 7px;
  top: 1px;
  color: #000;
  font-size: 12px;
  transition: margin 150ms linear;
}

.footer-8 .list-group li a:hover i {
  margin: 0 5px 0 0;
}

@media (max-width: 991.98px) {
  .footer-8 {
    border-top: none;
  }
  .footer-8 .namad {
    max-width: 400px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 12px;
  }
  .footer-8 .contacts {
    text-align: center;
  }
  .footer-8 .bottom-footer {
    margin-bottom: 60px;
    padding: 20px 10px 0;
  }
  .footer-8 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-8 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-8 .social-btns {
    margin-bottom: 35px;
  }
  .footer-8 .bottom-footer {
    height: 100px;
  }
}
.footer-9 {
  background-color: #f4f4f4;
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
}

.footer-9 .top-footer {
  overflow: hidden;
  padding: 41px 0 30px 0;
  border-top: 1px solid #ebebeb;
}

.footer-9 .footer-title {
  font-weight: 600;
  font-family: "KalamehWeb";
  color: #111;
}

.footer-9 .footer-contact {
  text-align: left;
  direction: ltr;
  color: #444;
  transition: color 0.3s ease-out;
}

.footer-9 .footer-contact:hover {
  color: #e4405f;
  transition: color 0.3s ease-out;
}

.footer-9 .footer-contact span {
  font-size: 14px;
  display: inline-block;
  font-weight: 700;
}

.footer-9 .footer-contact i {
  font-size: 16px;
  position: relative;
  top: 3px;
  right: 0;
  margin-right: 5px;
  display: inline-block;
  font-weight: 700;
}

.footer-9 > .nav {
  background: #222;
}

.footer-9 > .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-9 > .nav .nav-link {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-9 > .nav .nav-link:hover {
  border-bottom: 2px solid #0d6efd;
}

.footer-9 .bottom-footer {
  height: 79px;
  padding: 32px 90px 50px 50px;
  position: relative;
  background-color: #ebebeb;
  color: #222;
}

.footer-9 .bottom-footer a {
  font-weight: 500;
}

.footer-9 .web-developer {
  float: right;
}

.footer-9 .web-developer a {
  display: inline-block;
  color: #222;
  font-size: 14px;
}

.footer-9 .web-developer a:hover {
  color: #222;
  transition: color 0.3s ease-out;
}

.footer-9 .web-developer a:hover span {
  color: #ea3a3f;
  transition: color 0.3s ease-out;
}

.footer-9 .copy-right {
  direction: ltr;
  margin-left: 35px;
  text-transform: capitalize;
}

.footer-9 .copy-right span.text {
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-9 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-9 .copy-right a {
  color: #222;
  font-size: 13px;
  transition: color 0.3s ease-out;
}

.footer-9 .copy-right a:hover {
  color: #ea3a3f;
  transition: color 0.3s ease-out;
}

.footer-9 .social-btns {
  text-align: center;
  position: relative;
  width: 100%;
  bottom: 0px;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
  margin-top: 80px;
}

.footer-9 .social-btns ul {
  margin: 0;
  padding: 0;
}

.footer-9 .social-btns ul li {
  list-style: none;
  margin: 0;
}

.footer-9 .social-btns ul li a {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  margin: 0 5px;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s;
  text-decoration: none;
  background: #493058;
  border: 1px solid #442b52;
}

.footer-9 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-9 .social-btns ul li a .iconix {
  left: -1px;
  height: 100%;
  display: block;
  font-size: 19px;
  color: #c0a3d3;
  transition: 0.5s;
  position: relative;
  top: 5px;
}

.footer-9 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-9 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-9 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-9 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-9 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-9 .footer-menu {
  background: #ebebeb;
}

.footer-9 .footer-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #2c2c2c;
  position: relative;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  transition: all 0.5s ease-out;
  min-width: 100px;
  font-weight: 500;
}

.footer-9 .footer-menu a:hover {
  color: #2c2c2c;
  border-bottom: 2px solid #3c3c3c;
  transition: all 0.5s ease-out;
}

.footer-9 .footer-menu a em {
  color: #222;
  font-weight: 500;
  font-size: 14px;
  margin-top: 3px;
  font-family: "KalamehWeb";
}

.footer-9 .list-group {
  direction: rtl;
  text-align: right;
  margin-top: 15px;
}

.footer-9 .list-group li {
  margin: 0;
  line-height: 35px;
}

.footer-9 .list-group li a {
  font-weight: 500;
  font-size: 0.8rem;
  color: #222;
  transition: color 150ms ease;
}

.footer-9 .list-group li a i {
  position: relative;
  margin: 0;
  padding: 0 0 0 7px;
  top: 3px;
  font-size: 16px;
  transition: margin 150ms linear;
}

.footer-9 .list-group li a:hover {
  color: #ea3a3f;
  transition: color 150ms ease;
}

.footer-9 .footer-logo {
  display: block;
  margin-top: 0;
  font-family: "KalamehWeb";
  font-weight: 600;
  text-align: center;
}

.footer-9 .footer-logo img {
  max-width: 200px;
  width: 100%;
}

.footer-9 .footer-logo strong {
  color: #222;
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

.footer-9 .footer-logo span {
  color: #222;
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

@media (max-width: 991.98px) {
  .footer-9 {
    border-top: none;
  }
  .footer-9 .bottom-footer {
    margin-bottom: 60px;
    padding: 20px 10px 0;
  }
  .footer-9 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-9 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-9 .social-btns {
    margin-bottom: 35px;
  }
  .footer-9 .footer-menu {
    background: inherit;
    background-color: #fff;
    color: #444444;
  }
  .footer-9 .footer-menu a {
    min-width: auto;
    min-height: 60px;
  }
  .footer-9 .footer-menu a i {
    margin-bottom: 0px;
  }
  .footer-9 .footer-menu a em {
    color: inherit;
    font-size: 12px;
    margin-top: 8px;
  }
  .footer-9 .footer-menu a:hover {
    color: #367e7e;
    border-bottom: 2px solid #367e7e;
  }
  .footer-9 .contact-wrap {
    margin-bottom: 35PX;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ccc;
  }
  .footer-9 .list-group {
    margin-top: 15px;
  }
  .footer-9 .list-group li {
    text-align: center;
  }
  .footer-9 .footer-title {
    text-align: center;
  }
  .footer-9 .footer-logo {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 355px) {
  .footer-9 .contact-wrap.d-flex {
    display: block !important;
    margin-bottom: 5px;
  }
}
.footer-10 {
  background-color: #f4f4f4;
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
}

.footer-10 .top-footer {
  overflow: hidden;
  padding: 41px 0 30px 0;
  border-top: 1px solid #ebebeb;
}

.footer-10 .footer-title {
  font-weight: 600;
  font-family: "KalamehWeb";
  color: #111;
  direction: rtl;
}

.footer-10 .footer-contact {
  text-align: left;
  direction: ltr;
  color: #444;
  transition: color 0.3s ease-out;
}

.footer-10 .footer-contact:hover {
  color: #e4405f;
  transition: color 0.3s ease-out;
}

.footer-10 .footer-contact span {
  font-size: 14px;
  display: inline-block;
  font-weight: 700;
}

.footer-10 .footer-contact i {
  font-size: 16px;
  position: relative;
  top: 3px;
  right: 0;
  margin-right: 5px;
  display: inline-block;
  font-weight: 700;
}

.footer-10 > .nav {
  background: #222;
}

.footer-10 > .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-10 > .nav .nav-link {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-10 > .nav .nav-link:hover {
  border-bottom: 2px solid #0d6efd;
}

.footer-10 .bottom-footer {
  height: 79px;
  padding: 32px 90px 50px 50px;
  position: relative;
  background-color: #ebebeb;
  color: #222;
}

.footer-10 .bottom-footer a {
  font-weight: 500;
}

.footer-10 .web-developer {
  float: right;
}

.footer-10 .web-developer a {
  display: inline-block;
  color: #222;
  font-size: 14px;
}

.footer-10 .web-developer a:hover {
  color: #222;
  transition: color 0.3s ease-out;
}

.footer-10 .web-developer a:hover span {
  color: #ea3a3f;
  transition: color 0.3s ease-out;
}

.footer-10 .copy-right {
  direction: ltr;
  margin-left: 35px;
  text-transform: capitalize;
}

.footer-10 .copy-right span.text {
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-10 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-10 .copy-right a {
  color: #222;
  font-size: 13px;
  transition: color 0.3s ease-out;
}

.footer-10 .copy-right a:hover {
  color: #ea3a3f;
  transition: color 0.3s ease-out;
}

.footer-10 .social-btns {
  text-align: center;
  position: relative;
  width: 100%;
  bottom: 0px;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
  margin-top: 80px;
}

.footer-10 .social-btns ul {
  margin: 0;
  padding: 0;
}

.footer-10 .social-btns ul li {
  list-style: none;
  margin: 0;
}

.footer-10 .social-btns ul li a {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  margin: 0 5px;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s;
  text-decoration: none;
  background: #493058;
  border: 1px solid #442b52;
}

.footer-10 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-10 .social-btns ul li a .iconix {
  left: -1px;
  height: 100%;
  display: block;
  font-size: 19px;
  color: #c0a3d3;
  transition: 0.5s;
  position: relative;
  top: 5px;
}

.footer-10 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-10 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-10 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-10 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-10 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-10 .footer-menu {
  background: #ebebeb;
}

.footer-10 .footer-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #2c2c2c;
  position: relative;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  transition: all 0.5s ease-out;
  min-width: 100px;
  font-weight: 500;
}

.footer-10 .footer-menu a:hover {
  color: #2c2c2c;
  border-bottom: 2px solid #3c3c3c;
  transition: all 0.5s ease-out;
}

.footer-10 .footer-menu a em {
  color: #222;
  font-weight: 500;
  font-size: 14px;
  margin-top: 3px;
  font-family: "KalamehWeb";
}

.footer-10 .list-group {
  direction: rtl;
  text-align: right;
  margin-top: 15px;
}

.footer-10 .list-group li {
  margin: 0;
  line-height: 35px;
}

.footer-10 .list-group li a {
  font-weight: 500;
  font-size: 0.8rem;
  color: #222;
  transition: color 150ms ease;
}

.footer-10 .list-group li a i {
  position: relative;
  margin: 0;
  padding: 0 0 0 7px;
  top: 3px;
  font-size: 16px;
  transition: margin 150ms linear;
}

.footer-10 .list-group li a:hover {
  color: #ea3a3f;
  transition: color 150ms ease;
}

.footer-10 .footer-logo {
  display: block;
  margin-top: 0;
  font-family: "KalamehWeb";
  font-weight: 600;
  text-align: center;
}

.footer-10 .footer-logo img {
  max-width: 115px;
  width: 100%;
}

.footer-10 .footer-logo strong {
  color: #222;
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

.footer-10 .footer-logo span {
  color: #222;
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

@media (max-width: 991.98px) {
  .footer-10 {
    border-top: none;
  }
  .footer-10 .bottom-footer {
    margin-bottom: 60px;
    padding: 20px 10px 0;
  }
  .footer-10 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-10 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-10 .social-btns {
    margin-bottom: 35px;
  }
  .footer-10 .footer-menu {
    background: inherit;
    background-color: #fff;
    color: #444444;
  }
  .footer-10 .footer-menu a {
    min-width: auto;
    min-height: 60px;
  }
  .footer-10 .footer-menu a i {
    margin-bottom: 0px;
  }
  .footer-10 .footer-menu a em {
    color: inherit;
    font-size: 12px;
    margin-top: 8px;
  }
  .footer-10 .footer-menu a:hover {
    color: #367e7e;
    border-bottom: 2px solid #367e7e;
  }
  .footer-10 .contact-wrap {
    margin-bottom: 35PX;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ccc;
  }
  .footer-10 .list-group {
    margin-top: 15px;
  }
  .footer-10 .list-group li {
    text-align: center;
  }
  .footer-10 .footer-title {
    text-align: center;
  }
  .footer-10 .footer-logo {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 355px) {
  .footer-10 .contact-wrap.d-flex {
    display: block !important;
    margin-bottom: 5px;
  }
}
.footer-11 {
  background: none;
  position: relative;
  padding: 0;
  margin: 0;
  border-top: none;
}

.footer-11 .footer-menu {
  background: #000;
}

.footer-menu a {
  color: #fff;
  font-weight: 500;
}

.footer-11 .top-footer {
  overflow: hidden;
  background: #f4f4f4;
  padding: 75px 0 0 0;
}

.footer-11 .footer-menu a em {
  font-size: 14px;
  font-weight: 500;
}

.footer-11 > .nav {
  background: #ebebeb;
}

.footer-11 > .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-11 > .nav .nav-link {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-11 > .nav .nav-link:hover {
  border-bottom: 2px solid #0d6efd;
}

.footer-11 .bottom-footer {
  height: 89px;
  font-weight: 600;
  padding: 28px 90px 0 50px;
  position: relative;
  border-top: 1px solid #cbcbcb;
  background: #e7e7e7;
  border-bottom: 10px solid #2f2f2f;
}

.footer-11 .web-developer {
  float: right;
}

.footer-11 .web-developer a {
  display: inline-block;
  color: #000;
  font-size: 14px;
}

.footer-11 .web-developer a:hover {
  color: #000;
}

.footer-11 .web-developer a:hover span {
  color: #0d6efd;
}

.footer-11 .copy-right {
  direction: ltr;
  margin-left: 35px;
  text-transform: capitalize;
}

.footer-11 .copy-right span.text {
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-11 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-11 .copy-right a {
  color: #000;
  font-size: 13px;
}

.footer-11 .copy-right a:hover {
  color: #0d6efd;
}

.footer-11 .social-btns {
  margin-top: 60px;
  margin-bottom: 10px;
  text-align: center;
}

.footer-11 .social-btns ul {
  margin: 0;
  padding: 0;
}

.footer-11 .social-btns ul li {
  list-style: none;
  margin: 0;
}

.footer-11 .social-btns ul li a {
  position: relative;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  margin: 0 5px;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.2s;
  background-color: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.07) !important;
}

.footer-11 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background-color: #fff;
}

.footer-11 .social-btns ul li a .iconix {
  height: 100%;
  display: block;
  line-height: 38px;
  font-size: 24px;
  color: #7a7a7a;
  transition: 0.5s;
}

.footer-11 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-11 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-11 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-11 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-11 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-11 .namad {
  max-width: 314px;
  margin: 0 auto;
}

.footer-11 .namad a {
  margin-bottom: 5px;
  display: inline-block;
}

.footer-11 .namad img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #cbcbcb;
  max-width: 100%;
}

.footer-11 .namad img.enamad {
  cursor: pointer;
  padding: 0px 4px 0 4px;
  background: #fff;
}

.footer-11 .contacts {
  text-align: center;
}

.footer-11 .icon-location {
  font-size: 70px;
  color: #959595;
  margin-top: 15px;
}

.footer-11 .key {
  font-weight: 500;
  font-family: "KalamehWeb";
  margin-top: 10px;
  font-size: 17px;
  color: #444;
  direction: rtl;
}

.footer-11 .value {
  color: #6a6a6a;
  font-weight: 700;
  direction: rtl;
  margin-top: 12px;
  text-transform: capitalize;
}

.footer-11 .value a.num {
  letter-spacing: 2px;
  direction: ltr;
  margin-top: 15px;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  font-family: "iransansNum";
}

.footer-11 .value span.headline {
  font-family: "KalamehWeb";
  letter-spacing: 0;
  direction: rtl;
  font-size: 16px;
  font-weight: 700;
}

.footer-11 .value span.colon {
  color: tomato;
  font-size: 18px;
  font-weight: 700;
  margin: 0 2px 0 2px;
}

.footer-11 .list-group {
  direction: rtl;
  text-align: right;
}

.footer-11 .list-group li {
  margin: 0;
  line-height: 35px;
}

.footer-11 .list-group li a {
  font-weight: 500;
  font-size: 0.8rem;
  transition: all 150ms linear;
  color: #555;
}

.footer-11 .list-group li a i.chevron {
  position: relative;
  right: 0;
  padding: 0 0 0 7px;
  top: 1px;
  font-size: 12px;
  transition: all 150ms linear;
}

.footer-11 .list-group li a:hover i.chevron {
  color: tomato;
  right: 3px;
}

.footer-11 .list-group li a:hover {
  color: tomato;
}

@media (max-width: 991.98px) {
  .footer-11 {
    border-top: none;
  }
  .footer-11 .namad {
    max-width: 400px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 12px;
  }
  .footer-11 .contacts {
    text-align: center;
  }
  .footer-11 .bottom-footer {
    margin-bottom: 60px;
    padding: 20px 10px 0;
  }
  .footer-11 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-11 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-11 .social-btns {
    margin-bottom: 35px;
  }
  .footer-11 .bottom-footer {
    height: 100px;
  }
}
.footer-12 {
  background-color: #f4f4f4;
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
}

.footer-12 .top-footer {
  overflow: hidden;
  padding: 41px 0 30px 0;
  border-top: 1px solid #ebebeb;
}

.footer-12 .footer-title {
  font-weight: 600;
  font-family: "KalamehWeb";
  color: #111;
}

.footer-12 .footer-contact {
  text-align: left;
  direction: ltr;
  color: #444;
  transition: color 0.3s ease-out;
}

.footer-12 .footer-contact:hover {
  color: #e4405f;
  transition: color 0.3s ease-out;
}

.footer-12 .footer-contact span {
  font-size: 14px;
  display: inline-block;
  font-weight: 700;
}

.footer-12 .footer-contact i {
  font-size: 16px;
  position: relative;
  top: 3px;
  right: 0;
  margin-right: 5px;
  display: inline-block;
  font-weight: 700;
}

.footer-12 > .nav {
  background: #222;
}

.footer-12 > .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-12 > .nav .nav-link {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-12 > .nav .nav-link:hover {
  border-bottom: 2px solid #0d6efd;
}

.footer-12 .bottom-footer {
  height: 79px;
  padding: 32px 90px 50px 50px;
  position: relative;
  background-color: #ebebeb;
  color: #222;
}

.footer-12 .bottom-footer a {
  font-weight: 500;
}

.footer-12 .web-developer {
  float: right;
}

.footer-12 .web-developer a {
  display: inline-block;
  color: #222;
  font-size: 14px;
}

.footer-12 .web-developer a:hover {
  color: #222;
  transition: color 0.3s ease-out;
}

.footer-12 .web-developer a:hover span {
  color: #ea3a3f;
  transition: color 0.3s ease-out;
}

.footer-12 .copy-right {
  direction: ltr;
  margin-left: 35px;
  text-transform: capitalize;
}

.footer-12 .copy-right span.text {
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-12 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-12 .copy-right a {
  color: #222;
  font-size: 13px;
  transition: color 0.3s ease-out;
}

.footer-12 .copy-right a:hover {
  color: #ea3a3f;
  transition: color 0.3s ease-out;
}

.footer-12 .social-btns {
  text-align: center;
  position: relative;
  width: 100%;
  bottom: 0px;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
  margin-top: 80px;
}

.footer-12 .social-btns ul {
  margin: 0;
  padding: 0;
}

.footer-12 .social-btns ul li {
  list-style: none;
  margin: 0;
}

.footer-12 .social-btns ul li a {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  margin: 0 5px;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s;
  text-decoration: none;
  background: #493058;
  border: 1px solid #442b52;
}

.footer-12 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-12 .social-btns ul li a .iconix {
  left: -1px;
  height: 100%;
  display: block;
  font-size: 19px;
  color: #c0a3d3;
  transition: 0.5s;
  position: relative;
  top: 5px;
}

.footer-12 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-12 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-12 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-12 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-12 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-12 .footer-menu {
  background: #ebebeb;
}

.footer-12 .footer-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #2c2c2c;
  position: relative;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  transition: all 0.5s ease-out;
  min-width: 100px;
  font-weight: 500;
}

.footer-12 .footer-menu a:hover {
  color: #2c2c2c;
  border-bottom: 2px solid #3c3c3c;
  transition: all 0.5s ease-out;
}

.footer-12 .footer-menu a em {
  color: #222;
  font-weight: 500;
  font-size: 14px;
  margin-top: 3px;
  font-family: "KalamehWeb";
}

.footer-12 .list-group {
  direction: rtl;
  text-align: right;
  margin-top: 15px;
}

.footer-12 .list-group li {
  margin: 0;
  line-height: 35px;
}

.footer-12 .list-group li a {
  font-weight: 500;
  font-size: 0.8rem;
  color: #222;
  transition: color 150ms ease;
}

.footer-12 .list-group li a i {
  position: relative;
  margin: 0;
  padding: 0 0 0 7px;
  top: 3px;
  font-size: 16px;
  transition: margin 150ms linear;
}

.footer-12 .list-group li a:hover {
  color: #ea3a3f;
  transition: color 150ms ease;
}

.footer-12 .footer-logo {
  display: block;
  margin-top: 0;
  font-family: "KalamehWeb";
  font-weight: 600;
  text-align: center;
}

.footer-12 .footer-logo img {
  max-width: 200px;
  width: 100%;
}

.footer-12 .footer-logo strong {
  color: #222;
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

.footer-12 .footer-logo span {
  color: #222;
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

@media (max-width: 991.98px) {
  .footer-12 {
    border-top: none;
  }
  .footer-12 .bottom-footer {
    margin-bottom: 60px;
    padding: 20px 10px 0;
  }
  .footer-12 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-12 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-12 .social-btns {
    margin-bottom: 35px;
  }
  .footer-12 .footer-menu {
    background: inherit;
    background-color: #fff;
    color: #444444;
  }
  .footer-12 .footer-menu a {
    min-width: auto;
    min-height: 60px;
  }
  .footer-12 .footer-menu a i {
    margin-bottom: 0px;
  }
  .footer-12 .footer-menu a em {
    color: inherit;
    font-size: 12px;
    margin-top: 8px;
  }
  .footer-12 .footer-menu a:hover {
    color: #367e7e;
    border-bottom: 2px solid #367e7e;
  }
  .footer-12 .contact-wrap {
    margin-bottom: 35PX;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ccc;
  }
  .footer-12 .list-group {
    margin-top: 15px;
  }
  .footer-12 .list-group li {
    text-align: center;
  }
  .footer-12 .footer-title {
    text-align: center;
  }
  .footer-12 .footer-logo {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 355px) {
  .footer-12 .contact-wrap.d-flex {
    display: block !important;
    margin-bottom: 5px;
  }
}
.footer-14 {
  background-color: #f4f4f4;
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
}

.footer-14 .top-footer {
  overflow: hidden;
  padding: 41px 0 30px 0;
  border-top: 1px solid #ebebeb;
}

.footer-14 .footer-title {
  font-weight: 600;
  font-family: "KalamehWeb";
  color: #111;
  direction: rtl;
}

.footer-14 .footer-contact {
  text-align: left;
  direction: ltr;
  color: #444;
  transition: color 0.3s ease-out;
}

.footer-14 .footer-contact:hover {
  color: #e4405f;
  transition: color 0.3s ease-out;
}

.footer-14 .footer-contact span {
  font-size: 14px;
  display: inline-block;
  font-weight: 700;
}

.footer-14 .footer-contact i {
  font-size: 16px;
  position: relative;
  top: 3px;
  right: 0;
  margin-right: 5px;
  display: inline-block;
  font-weight: 700;
}

.footer-14 > .nav {
  background: #222;
}

.footer-14 > .nav li {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.footer-14 > .nav .nav-link {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.9rem;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  min-width: 90px;
  padding: 15px 0px 10px 0;
  transition: border-bottom 0.5s ease-out;
}

.footer-14 > .nav .nav-link:hover {
  border-bottom: 2px solid #0d6efd;
}

.footer-14 .bottom-footer {
  height: 79px;
  padding: 32px 90px 50px 50px;
  position: relative;
  background-color: #ebebeb;
  color: #222;
}

.footer-14 .bottom-footer a {
  font-weight: 500;
}

.footer-14 .web-developer {
  float: right;
}

.footer-14 .web-developer a {
  display: inline-block;
  color: #222;
  font-size: 14px;
}

.footer-14 .web-developer a:hover {
  color: #222;
  transition: color 0.3s ease-out;
}

.footer-14 .web-developer a:hover span {
  color: #ea3a3f;
  transition: color 0.3s ease-out;
}

.footer-14 .copy-right {
  direction: ltr;
  margin-left: 35px;
  text-transform: capitalize;
}

.footer-14 .copy-right span.text {
  display: inline-block;
  position: relative;
  top: 2px;
}

.footer-14 .copy-right span.spacer {
  color: #525252;
  padding: 0 10px 0 10px;
  position: relative;
  top: 1px;
}

.footer-14 .copy-right a {
  color: #222;
  font-size: 13px;
  transition: color 0.3s ease-out;
}

.footer-14 .copy-right a:hover {
  color: #ea3a3f;
  transition: color 0.3s ease-out;
}

.footer-14 .social-btns {
  text-align: center;
  position: relative;
  width: 100%;
  bottom: 0px;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
  margin-top: 80px;
}

.footer-14 .social-btns ul {
  margin: 0;
  padding: 0;
}

.footer-14 .social-btns ul li {
  list-style: none;
  margin: 0;
}

.footer-14 .social-btns ul li a {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  margin: 0 5px;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s;
  text-decoration: none;
  background: #493058;
  border: 1px solid #442b52;
}

.footer-14 .social-btns ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: #f5f5f5;
}

.footer-14 .social-btns ul li a .iconix {
  left: -1px;
  height: 100%;
  display: block;
  font-size: 19px;
  color: #c0a3d3;
  transition: 0.5s;
  position: relative;
  top: 5px;
}

.footer-14 .social-btns ul li:nth-child(1) a:hover .iconix {
  color: #3b5998;
}

.footer-14 .social-btns ul li:nth-child(2) a:hover .iconix {
  color: #00aced;
}

.footer-14 .social-btns ul li:nth-child(3) a:hover .iconix {
  color: #dd4b39;
}

.footer-14 .social-btns ul li:nth-child(4) a:hover .iconix {
  color: #007bb6;
}

.footer-14 .social-btns ul li:nth-child(5) a:hover .iconix {
  color: #e4405f;
}

.footer-14 .footer-menu {
  background: #ebebeb;
}

.footer-14 .footer-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #2c2c2c;
  position: relative;
  border-bottom: 2px solid rgba(204, 204, 204, 0);
  transition: all 0.5s ease-out;
  min-width: 100px;
  font-weight: 500;
}

.footer-14 .footer-menu a:hover {
  color: #2c2c2c;
  border-bottom: 2px solid #3c3c3c;
  transition: all 0.5s ease-out;
}

.footer-14 .footer-menu a em {
  color: #222;
  font-weight: 500;
  font-size: 14px;
  margin-top: 3px;
  font-family: "KalamehWeb";
}

.footer-14 .list-group {
  direction: rtl;
  text-align: right;
  margin-top: 15px;
}

.footer-14 .list-group li {
  margin: 0;
  line-height: 35px;
}

.footer-14 .list-group li a {
  font-weight: 500;
  font-size: 0.8rem;
  color: #222;
  transition: color 150ms ease;
}

.footer-14 .list-group li a i {
  position: relative;
  margin: 0;
  padding: 0 0 0 7px;
  top: 3px;
  font-size: 16px;
  transition: margin 150ms linear;
}

.footer-14 .list-group li a:hover {
  color: #ea3a3f;
  transition: color 150ms ease;
}

.footer-14 .footer-logo {
  display: block;
  margin-top: -15px;
  font-family: "KalamehWeb";
  font-weight: 600;
  text-align: center;
}

.footer-14 .footer-logo img {
  max-width: 230px;
  width: 100%;
}

.footer-14 .footer-logo strong {
  color: #222;
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

.footer-14 .footer-logo span {
  color: #222;
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

@media (max-width: 991.98px) {
  .footer-14 {
    border-top: none;
  }
  .footer-14 .bottom-footer {
    margin-bottom: 60px;
    padding: 20px 10px 0;
  }
  .footer-14 .web-developer {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-14 .copy-right {
    font-size: 11px;
    text-align: center;
  }
  .footer-14 .social-btns {
    margin-bottom: 35px;
  }
  .footer-14 .footer-menu {
    background: inherit;
    background-color: #fff;
    color: #444444;
  }
  .footer-14 .footer-menu a {
    min-width: auto;
    min-height: 60px;
  }
  .footer-14 .footer-menu a i {
    margin-bottom: 0px;
  }
  .footer-14 .footer-menu a em {
    color: inherit;
    font-size: 12px;
    margin-top: 8px;
  }
  .footer-14 .footer-menu a:hover {
    color: #367e7e;
    border-bottom: 2px solid #367e7e;
  }
  .footer-14 .contact-wrap {
    margin-bottom: 35PX;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ccc;
  }
  .footer-14 .list-group {
    margin-top: 15px;
  }
  .footer-14 .list-group li {
    text-align: center;
  }
  .footer-14 .footer-title {
    text-align: center;
  }
  .footer-14 .footer-logo {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 355px) {
  .footer-14 .contact-wrap.d-flex {
    display: block !important;
    margin-bottom: 5px;
  }
}
.fixed-order {
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  z-index: 10;
}

.fixed-order .accordion-item {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(221, 221, 221, 0.96);
}

.fixed-order .seperator {
  height: 10px;
  background: #2f2f2f;
  border-top: 1px solid #2f2f2f;
}

.fixed-order .accordion-body {
  padding: 0;
  box-shadow: -2px 17px 18px -17px rgba(0, 0, 0, 0.75) inset;
}

.fixed-order .accordion-body .container {
  min-height: 100px;
}

.fixed-order .accordion-item:first-of-type .accordion-button {
  position: absolute;
  left: 79px;
  top: -29px;
  width: auto;
  color: #fff;
  height: 30px;
  padding: 6px 10px 3px 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: #2f2f2f;
  font-size: 14px;
  box-shadow: none;
  border: 1px solid #2f2f2f;
  border-bottom: none;
}

.fixed-order .accordion-button:focus {
  box-shadow: none;
}

.fixed-order .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
  position: relative;
  margin: 0 0px 0 0px;
  top: -2;
}

.fixed-order .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

.fixed-order i.circle-icon {
  position: absolute;
  right: 80px;
  top: 32px;
  font-size: 24px;
  border: 2px solid #2f2f2f;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  padding: 15px 3px 1px 1px;
}

.fixed-order h6, .fixed-order .h6 {
  font-family: "KalamehWeb";
  display: inline-block;
  text-align: right;
  font-weight: 700;
  font-size: 24px;
  padding: 0;
  margin: 0 70px 0 0;
}

.fixed-order h6 div, .fixed-order .h6 div {
  display: inline-block;
  font-size: 15px;
  position: relative;
  top: -1px;
  right: 5px;
}

.fixed-order h6 div span, .fixed-order .h6 div span {
  color: #f44336;
  font-weight: 400;
  font-family: "iransansNum";
}

.fixed-order .btns {
  direction: rtl;
  text-align: left;
}

.fixed-order .btn {
  background: #2f2f2f;
  border: 3px solid transparent;
  font-size: 15px;
  height: 48px;
  line-height: 44px;
  margin: 0;
  min-width: 135px;
  padding: 0;
  position: relative;
  transition: all 0.5s linear;
  border-radius: 5px;
  margin-left: 5px;
}

.fixed-order .btn.btn-icon {
  min-width: 45px;
}

.fixed-order .btn.back-icon {
  text-align: right;
  padding-right: 35px;
}

.fixed-order .btn.forward-icon {
  text-align: left;
  padding-left: 35px;
}

.fixed-order .btn:hover {
  border: 3px solid #000;
}

.fixed-order .btn.back-icon:hover {
  background: #e45452;
}

.fixed-order .btn.forward-icon:hover {
  background: #338b7a;
}

.fixed-order .btn.back-icon i {
  position: absolute;
  top: 12px;
  right: 10px;
  left: auto;
  font-size: 20px;
}

.fixed-order .btn.btn-icon i {
  right: 10px;
}

.fixed-order .btn.forward-icon i {
  position: absolute;
  top: 12px;
  right: auto;
  left: 10px;
  font-size: 20px;
}

.fixed-order2 .btn {
  margin: 8px 10px 0 10px;
  background: #2f2f2f;
  border: 3px solid rgba(0, 0, 0, 0);
  transition: all 500ms linear;
}

.fixed-order2:hover .btn {
  background: #e45452;
  border: 3px solid #cb5865;
}

.fixed-order2 .btn:hover {
  border: 3px solid #000;
}

@media (max-width: 991.98px) {
  .fixed-order {
    bottom: 61px;
    z-index: 1000;
  }
  .fixed-order .accordion-item {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(221, 221, 221, 0.96);
  }
  .fixed-order i.circle-icon {
    right: 8px;
    top: 39px;
    font-size: 20px;
    height: 45px;
    width: 45px;
    padding: 12px 3px 1px 1px;
  }
  .fixed-order h6, .fixed-order .h6 {
    font-size: 17px;
    margin: 0 50px 0 0;
  }
  .fixed-order h6 div, .fixed-order .h6 div {
    display: block;
    font-size: 12px;
    top: 7px;
    right: 0px;
  }
  .fixed-order .btn {
    min-width: 105px;
    height: 45px;
    line-height: 40px;
  }
  .fixed-order .btn.forward-icon {
    padding-left: 30px;
  }
  .fixed-order .btn.forward-icon i {
    top: 10px;
    left: 6px;
  }
  .fixed-order .accordion-item:first-of-type .accordion-button {
    left: 28px;
    top: -25px;
  }
  .fixed-order .btn.btn-icon {
    position: absolute;
    right: 8px;
    top: 39px;
  }
  .fixed-order .btn.back-icon i {
    top: 10px;
  }
}
.booking {
  padding: 100px 0 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background: #fff;
  /* background-image: url(/img/demo/patterns/15.png); */
}

.booking .schedule {
  direction: rtl;
  max-width: 950px;
  margin: 0 auto;
}

.booking .schedule-calendar {
  background: #249a9e;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  box-shadow: -1px -1px 1px 0px rgba(70, 70, 70, 0.27) inset;
}

.booking .schedule-header {
  text-align: center;
  /* border-bottom: 1px solid #f0f0f0; */
  padding-bottom: 18px;
  /* margin-bottom: 10px; */
}

.booking .schedule-body {
  padding: 0 5px 5px 5px;
}

.booking .schedule-time-header {
  text-align: center;
  min-width: 52px;
  font-size: 13px;
  color: #444;
  padding-bottom: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.booking .schedule-header span {
  display: inline-block;
  text-align: center;
  min-width: 48px;
  color: #444;
  transform: rotate(300deg);
  font-size: 13px;
}

.booking .schedule-day {
  text-align: center;
}

.booking .schedule-day a {
  display: inline-block;
  text-align: center;
  width: 35px;
  height: 35px;
  margin: 7px;
  border-radius: 4px;
  transition: background 300ms ease;
  background: #ddf1f1;
  color: #288f91;
}

.booking .schedule-day a.active:hover,
.booking .schedule-time a.active:hover,
.booking .schedule-time button.active:hover {
  background: #f7e3a6;
  color: #217576;
}

.booking .schedule-day a.current {
  background: #f7e3a6;
  cursor: not-allowed;
  color: #217576;
}

.booking .schedule-header .active {
  color: #fff;
}

.booking .schedule-day a.today {
  background: #9eeaf9;
}

.booking .schedule-day a span {
  display: inline-block;
  padding-top: 9px;
  font-family: "iransansNum";
}

.booking .schedule-day a.deactive,
.booking .schedule-time a.deactive,
.booking .schedule-time button.deactive {
  background: transparent;
  color: #444;
  cursor: not-allowed;
}

.booking .schedule-day a.deactive.current {
  background: #ffc3b5;
}

.booking .schedule-day a.deactive.current {
  background: rgba(221, 241, 241, 0.2509803922);
}

.booking .schedule-day a.deactive span,
.booking .schedule-time a.deactive span,
.booking .schedule-time button.deactive span {
  opacity: 0.45;
}

.booking .schedule-time > a,
.booking .schedule-time > button {
  display: block;
  text-align: center;
  width: 100%;
  height: 38px;
  margin: 7px;
  border-radius: 4px;
  transition: background 300ms ease;
  background: #ddf1f1;
  color: #288f91;
}

.booking .schedule-time > a > span,
.booking .schedule-time > button > span {
  display: inline-block;
  font-family: "iransansNum";
  position: relative;
  top: 3px;
}

.schedule-pagination {
  margin-bottom: 25px;
  background: #288f91;
  color: #fff;
  padding: 13px 15px 8px 15px;
}

.schedule-times .schedule-pagination {
  padding: 20px 20px 13px 20px;
}

.schedule-times {
  position: relative;
  background: #249a9e;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 26px 58px 0 rgba(0, 0, 0, 0.22), 0 5px 14px 0 rgba(0, 0, 0, 0.18);
  min-height: 435px;
  z-index: 0;
}

.booking .schedule-times .schedule-body {
  min-height: 380px;
  padding: 0 50px 40px 50px;
}

.schedule-times-title {
  text-align: center;
  display: block;
  font-weight: 500;
  font-size: 13px;
}

.schedule-pagination a {
  display: block;
  color: #444;
  position: relative;
  top: -4px;
}

.schedule-pagination a span {
  color: #fff;
  opacity: 0;
  font-size: 11px;
  font-weight: 500;
  transition: opacity 400ms ease;
}

.schedule-pagination a:hover span {
  opacity: 1;
}

.schedule-pagination a i {
  position: relative;
  font-size: 18px;
  top: 5px;
}

.schedule-pagination a i.iconix-left {
  color: #fff;
  right: 0;
  transition: right 300ms ease-in-out;
}

.schedule-pagination a:hover i.iconix-left {
  right: 5px;
}

.schedule-pagination a i.iconix-right {
  color: #fff;
  left: 0;
  transition: left 300ms ease-in-out;
}

.schedule-pagination a:hover i.iconix-right {
  left: 5px;
}

@media (max-width: 991.98px) {
  .booking .schedule-day a {
    width: 33px;
    height: 33px;
    margin: 5px;
  }
  .booking .schedule-day a span {
    padding-top: 9px;
    font-size: 13px;
  }
  .booking .schedule-header span {
    min-width: 35px;
    font-size: 12px;
  }
  .schedule-times {
    margin-top: -3px;
    border-top: 1px solid #338283;
  }
  .booking .schedule-times .schedule-body {
    padding: 0 10px 40px 10px;
  }
  .booking .schedule-time > a, .booking .schedule-time > button {
    font-size: 13px;
  }
  .schedule-pagination a span {
    display: none;
  }
}
.category-1-1 {
  position: relative;
  background: #fff;
  text-align: center;
  direction: rtl;
  /* border-bottom: 1px solid #e5e5e5; */
  padding: 45px 0 10px 0;
  /* margin-bottom: 45px; */
}

.category-1-1 .btn-category {
  display: inline-block;
  margin: 0px 8px 20px 8px;
  border-radius: 20px;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
  box-shadow: none;
  border: none;
}

.category-1-1 .btn-category div {
  background-color: #eee;
  border-radius: 13px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-color: #eee;
  transition: background-color 200ms ease;
}

.category-1-1 .btn-category:hover div {
  background-color: #e5e5e5;
}

.category-1-1 .btn-category i {
  display: block;
  font-size: 40px;
  text-align: center;
  left: 0;
  right: 0;
  color: #ab2024;
  top: 0;
}

.category-1-1 .btn-category h6, .category-1-1 .btn-category .h6 {
  display: inline-block;
  color: #333;
  font-weight: 600;
  font-size: 13px;
  margin-top: 10px;
  max-width: 94px;
  overflow: hidden;
}

.category-1-1 .filter-list {
  direction: rtl;
  margin: 0px 0px 5px 10px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.category-1-1 .filter-list::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.category-1-1 .filter-list::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 5px;
}

.category-1-1 .filter-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #999;
}

@media (max-width: 991.98px) {
  .category-1-1 {
    padding: 25px 0 10px 0;
  }
  .category-1-1 .btn-category {
    margin: 0px 5px 5px 5px;
  }
  .category-1-1 .btn-category div {
    border-radius: 10px;
    width: 75px;
    height: 75px;
  }
  .category-1-1 .btn-category h6, .category-1-1 .btn-category .h6 {
    font-size: 0.7rem;
  }
}
