/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
/* 
Animate the .il-marquee container, adjust the speed by changing the timing. Also, setting 'min-width' on .item is important.
*/
:root {
  --timing: 40000ms;
  --width: 18rem;
  --height: 5rem;
}

.il-marquee {
  display: flex;
  animation: var(--timing) linear 0s infinite normal both running marquee-il;
}

.il-marquee:hover {
  animation-play-state: paused;
}

.il-item {
  display: flex;
  min-width: calc(var(--width) / 1.2);
  width: calc(var(--width) / 1.2);
  height: calc(var(--height) / 1.2);
  padding: 0;
  box-sizing: content-box;
  transform: translate3d(0, 0, 0);


  @media screen and (min-width: 36rem) {
    min-width: var(--width);
    width: var(--width);
    height: var(--height);
  }
}

.il-item::after {
  content: "";
  width: 2px;
  height: 100%;
  background: url("https://devlivetrades.devrst.co.il/wp-content/uploads/2021/02/Line-43.png");
  position: absolute;
  right: 40px;
	background-repeat: no-repeat;
	background-size: contain;
}

.il-card {
  display: block;
  padding-top: 10px;
  padding-left: 10px;
  justify-content: center;
  align-items: center;
  color: #dbdbdb;
  width: 100%;

  > * {
    margin: auto;
    height: 100%;
  }
}

@font-face {
  font-family: "ITC Avant Garde Gothic Medium";
  src: url(https://devlivetrades.devrst.co.il/wp-content/uploads/2021/01/ITCAvantGardeStd-Md.woff2);
}

.il-card p {
  position: absolute;
  top: 15px;
  left: 50px;
  font-weight: 300;
  font-size: 12px;
  font-family: "ITC Avant Garde Gothic Medium";
}

.il-card h1 {
  position: absolute;
  top: 35px;
  font-size: 20px;
  font-family: "ITC Avant Garde Gothic Medium";
  font-weight: 700;
}

.il-card-green-text img,
.il-card-red-text img {
  position: absolute;
  top: 25px;
  right: 88px;
}

.il-card-green-text h2{
  position: absolute;
  top: 30px;
  right: 80px;
  font-size: 10px;
  font-weight: 300;
  font-family: "ITC Avant Garde Gothic Medium";
	color: #06AB37;
}

.il-card-red-text h2 {
  position: absolute;
  top: 30px;
  right: 80px;
  font-size: 10px;
  font-weight: 300;
  font-family: "ITC Avant Garde Gothic Medium";
	color: #EB5757;
}

.il-marquee-container {
  display: flex;
  width: 100%;
  font-size: 18px;
  padding-top: 0;
}

@keyframes marquee-il {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}


.il-roi {
	text-shadow:2px 0px 10px green ;
	font-weight:bold;
}

