 
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap');
/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: var(--roundness);
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--color-light);
  border-radius: var(--roundness);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-brand);
  border-radius: var(--roundness);

}


:root {

  --global-width: 80%;
  --global-width-blog: 55%;
  --global-width-console: 92%;
  --global-max-width: 2000px;
  --global-pop-up-width: 450px;
  --scale-down-effect: 0.96;

  --dim-separator-gap: 92px;
 

  --color-bg: #F4F4F4;
  --color-black: #1B1B1B;

  --color-white: #ffffff;

  --color-brand: #242257;
  --color-second: #109d58;
  --color-brand-dark: #13122B;

  --color-yellow: #FFC300;
  --color-yellow-light: rgb(241, 155, 34, 0.1);
  --color-yellow-dark: #e49424;

  --color-gray: #6b6b6b;
  --color-gray-light: #fafafa;

  --color-green: #109d58;
  --color-green-light: rgba(141, 255, 165, 0.4);

  --color-link: #1d96ff;
  --color-link-dark: #0059a7;

  --color-red: #f73344;
  --color-red-light: rgb(247, 51, 68, 0.1);
  --color-red-dark: #85000b;

  --color-stroke: #e5e7eb;
  --color-hover: #e0e0e099;

  --color-whatsapp-green: #14b850;
  --color-whatsapp-green-stroke: #0c7e36;

  --color-sale: #fdf6f0;

   /* --- new palette --- */
  --color-emerald: #0F3D2E;
  --color-emerald-dark: #0A2A20;
  --color-gold: #B8863B;
  --color-gold-light: #D9B876;
  --color-brick: #8C4632;
  --color-linen: #F6F1E7;
  --color-sand: #E7DEC8;
  --color-stroke-warm: #DDD3BC; 

  --font-display: "Fraunces", serif;
  --font-display-ar: "Amiri", serif;
  --font-body-ar: "IBM Plex Sans Arabic", sans-serif; 

  
 
 
 
 
  --color-shadow-emerald: 0 20px 50px rgba(15, 61, 46, 0.12);



  --color-shadow-soft: 0 6px 18px rgba(0, 0, 0, .06);
  --letter-spacing: 1px;
  --line-height: 1.60;

  --font-large-extra: 42px;
  --font-large: 20px;
  --font-medium: 16px;
  --font-small: 13px;

  --dim-2px: 2px;
  --dim-4px: 4px;
  --dim-6px: 6px;
  --dim-8px: 8px;
  --dim-10px: 10px;
  --dim-12px: 12px;
  --dim-16px: 16px;
  --dim-20px: 20px;
  --dim-24px: 24px;
  --dim-32px: 32px;
  --dim-40px: 40px;
  --dim-48px: 48px;
  --dim-64px: 64px; 
  --dim-92px: 92px; 
  --dim-112px: 112px;


  --dim-nav-size: 60px;
   
  --roundness-28px: 28px; 
  --roundness: 16px;
  --roundness-8px: 8px;
  --roundness-full: 200px;

  --button-height: 40px;


}



html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;

}

* {
  margin: 0;
  padding: 0;
 
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0.1px;
  scroll-behavior: smooth;
  color: var(--color-black);
  font-size: var(--font-medium);

  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "GRAD" 0;


}

.no-copy {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}



del {
  color: var(--color-red);
}

.no-select {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

.no-drag {
  -webkit-user-drag: none !important;
}

.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background-color: rgba(29, 29, 29, 0.2);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}


.btn-press {
  position: relative;
  overflow: hidden;
}

.btn-press:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background-color: rgba(29, 29, 29, 0.2);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}



@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }

  20% {
    transform: scale(25, 25);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

.btn-ripple:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

.btn-ripple:active {
  transform: scale(0.9) translate(0px, 5px);
  box-shadow: none;
}

.btn-ripple:after {
  visibility: hidden;
}

.btn-ripple:focus:after {
  visibility: visible;
}


.btn-press:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

.btn-press:active {
  transform: scale(0.9) translate(0px, 5px);
  box-shadow: none;
}

.btn-press:after {
  visibility: hidden;
}

.btn-press:focus:after {
  visibility: visible;
}

@keyframes diagonalFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.ds-tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.ds-tooltip-wrapper .tooltip-text {
  visibility: hidden;
  width: max-content;
  max-width: 220px;
  background-color: var(--color-black);
  color: #fff;
  text-align: left;
  padding: var(--dim-8px);
  border-radius: var(--roundness);
  font-size: var(--font-small);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: normal;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  margin-bottom: var(--dim-8px);
}

.ds-tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.ds-tooltip-wrapper .tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: var(--color-brand) transparent transparent transparent;
}

.cfa-white {
  color: var(--color-white) !important;
}

.cfa-blue {
  color: var(--color-blue) !important;
}

.cfa-brand {
  color: var(--color-brand) !important;
}

.cfa-black-light {
  color: var(--color-black-light) !important;
}

.cfa-black {
  color: var(--color-black) !important;
}

.cfa-red {
  color: var(--color-red) !important;
}

.cfa-yellow {
  color: var(--color-yellow) !important;

}

.cfa-size-small {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

.cfa-size {
  font-size: 24px;
  width: 24px;
  height: 24px;
}

.cfa-size-big {
  font-size: 48px;
  width: 48px;
  height: 48px;
}

.cfa-4-right {
  margin-inline-end: 4px;
}

.cfa-4-left {
  margin-inline-start: 4px;
}

.cfa-8-right {
  margin-inline-end: 8px;
}

.cfa-8-left {
  margin-inline-start: 8px;

}

.animate__delay-0_1s {
  animation-delay: 0.1s;
}

.animate__delay-0_2s {
  animation-delay: 0.2s;
}

.animate__delay-0_3s {
  animation-delay: 0.3s;
}

.animate__delay-0_4s {
  animation-delay: 0.4s;
}

.animate__delay-0_5s {
  animation-delay: 0.5s;
}


.animate__delay-0_6s {
  animation-delay: 0.6s;
}

.animate__delay-0_7s {
  animation-delay: 0.7s;
}

.animate__delay-0_8s {
  animation-delay: 0.8s;
}

.animate__delay-0_9s {
  animation-delay: 0.9s;
}


.animate__delay-1_0s {
  animation-delay: 1.0s;
}

.animate__delay-1_1s {
  animation-delay: 1.1s;
}

.animate__delay-1_2s {
  animation-delay: 1.2s;
}

.animate__delay-1_3s {
  animation-delay: 1.3s;
}


@media only screen and (max-width: 700px) {

  :root {


    --global-width: 90%;
    --dim-separator-gap: 32px;
  }
}

 