.elementor-6356 .elementor-element.elementor-element-68d7a2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-58f8640 *//* RTL Marquee container styling */
.elementor-6356 .elementor-element.elementor-element-58f8640 .marquee-rtl {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  direction: rtl; /* Set direction to right-to-left */
  font-family: "FF Shamel Sans One", Sans-serif;
  font-size: var(--e-global-typography-e5fd467-font-size);
  font-weight: var(--e-global-typography-e5fd467-font-weight);
  padding: 4px;
  background-color: pink;
}

/* RTL Marquee content styling */
.elementor-6356 .elementor-element.elementor-element-58f8640 .marquee-content-rtl {
  display: inline-flex;
  gap: 12px; /* Space between text and icons */
  animation: marquee-scroll-rtl 24s linear infinite;
}

.marquee-icon-rtl {
  width: 18px;
  height: auto;
}

@keyframes marquee-scroll-rtl {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(50%);
  }
}/* End custom CSS */
/* Start custom CSS *//* Marquee container styling */
.marquee {
   overflow: hidden;
   white-space: nowrap;
   display: flex;
   align-items: center;
   font-size: var( --e-global-typography-e5fd467-font-size );
   font-weight: var( --e-global-typography-e5fd467-font-weight );
   text-transform: var( --e-global-typography-e5fd467-text-transform );
   padding: 1px;
   background-color: pink;
}

/* Marquee content styling */
.marquee-content {
   display: inline-flex;
   gap: 12px; /* Space between text and icons */
   animation: marquee-scroll 28s linear infinite;
}

.marquee-icon {
   width: 18px;
   height: auto;
}

@keyframes marquee-scroll {
   from {
      transform: translateX(0%);
   }
   to {
      transform: translateX(-50%);
   }
}/* End custom CSS */