/*--------------------------------------------------------------
# Section What We Offer 
--------------------------------------------------------------*/

 
html[dir="rtl"] #what-we-offer-section .title-card-service,
html[dir="rtl"] #what-we-offer-section .description-card-service {
  text-align: right;
}

html[dir="rtl"] #what-we-offer-section .bottom-card-service {
  padding: 25px 40px 40px 25px;
 
}

 
html[dir="rtl"] #what-we-offer-section .type-card-service {
  right: auto;
  left: 20px;
}

 
html[dir="rtl"] #what-we-offer-section .place-text-animation .text-animation {
  animation: marquee-rtl 20s linear infinite;
}

 
@keyframes marquee-rtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

#what-we-offer-section {
  position: relative;
}

#what-we-offer-section .wrapper-cards-services {
  margin-top: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 55px;
}

#what-we-offer-section .top-card-service {
  position: relative;
  background: var(--bg-card-services);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

#what-we-offer-section .blur-shape-3 {
     position: absolute;
    left: 0;
    top: -120px;
    width: 100%;
    height: auto;
    z-index: -1;
}


#what-we-offer-section .card-service {
  border-radius: 12px;
  border: 1px solid var(--color-gray-dark);
  background: var(--bg-card-services);
}

#what-we-offer-section .card-service:hover {
  transform: translate(0, -10px);
  transition: transform 0.3s ease;
}

#what-we-offer-section .card-image-service {
  width: 100%;
  max-width: 100%;
  height: 256px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

#what-we-offer-section .bottom-card-service {
  padding: 25px 25px 40px 40px;
  background: var(--bg-card-services);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

#what-we-offer-section .title-card-service {
  font-family: Gabarito;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white);
  text-align: left;
}

#what-we-offer-section .description-card-service {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--color-gray-light);
  text-align: left;
  margin-top: 14px;
}

#what-we-offer-section .type-card-service {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  border-radius: 18px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(90deg,
      rgba(237, 109, 95, 1),
      rgba(235, 94, 113, 1),
      rgba(231, 80, 138, 1));


}

#what-we-offer-section .place-text-animation {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
 position: relative;
  padding: 30px 0;
  background: var(--bg-text-animation);
  margin-top: 112px;
}

#what-we-offer-section .place-text-animation .text-animation {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

#what-we-offer-section .text-animation span {
  display: inline-block;
  padding-right: 50px;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 120%;
  color: var(--white);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

#what-we-offer-section .place-text-animation::before,
#what-we-offer-section .place-text-animation::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;  
  height: 100%;
  pointer-events: none;  
  z-index: 2;
}

#what-we-offer-section .place-text-animation::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-text-animation), rgba(255,255,255,0));
}

#what-we-offer-section .place-text-animation::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-text-animation), rgba(255,255,255,0));
}
@media(max-width : 1100px) {
  #what-we-offer-section .wrapper-cards-services {
    grid-template-columns: repeat(2, 1fr);

  }
}

@media(max-width : 576px) {
  #what-we-offer-section .wrapper-cards-services {
    grid-template-columns: repeat(1, 1fr);

  }
}