/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 21 2025 | 09:34:19 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.color-box {
    width: 300px;
    height: 250px;
    background: var( --e-global-color-29c311c );
    border-radius: 15px;
	z-index:-1;
}
/*Marquee Style*/
.sgi-marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

.sgi-marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}
.d-flex {
  display: flex !important;
}
.sgi-marquee-inner ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sgi-marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}
.sgi-text-slider:not(:last-child) {
  margin-right: 30px;
}

.sgi-text-slider {
  font-size: 50px;
  height: 100px;
  line-height: 90px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white);
}
.sgi-marquee-item.style1 .sgi-text-style {
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  color: #bcb8b1;
  font-family: var(--title-font);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.sgi-marquee-item.style1 .sgi-text-style:hover {
  color: var(--theme);
  background-size: 100% 3px;
  opacity: 1;
}

.sgi-marquee-wrapper.style-1.sgi-text-slider {
    height: auto;
}
.sgi-marquee-wrapper.style-1 {
    background-color: transparent;
    line-height: 55px;
    margin-bottom: -50px;
}
.sgi-text-slider {
    font-size: 50px;
    height: 100px;
    line-height: 90px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--white);
}

.sgi-marquee-wrapper {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--theme);
    z-index: 9;
}
.sgi-section-padding {
    padding: 120px 0;
}
.sgi-pt-0 {
    padding-top: 0 !important;
}
@keyframes marqueeLeft {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}