/*==============================================
    Help Sec
===============================================*/
.feature-one {
  position: relative;
  display: block;
  padding: 120px 0 150px;
  background-color: #0c0d0f;
  counter-reset: count;
  z-index: 1;
}

.feature-one__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center top; /* 👈 aligns more to the top */
  background-size: cover;
  opacity: 0.3;
  /* mix-blend-mode: luminosity; */
  z-index: -1;
}

.feature-one .section-title__title {
  color: var(--tedlife-white);
}

.feature-one__single {
  position: relative;
  display: block;
  background-color: var(--tedlife-white);
  border-radius: var(--tedlife-bdr-radius);
  padding: 50px 70px 50px;
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.feature-one__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--tedlife-bdr-radius);
  background-color: var(--tedlife-black);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.feature-one__single:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.feature-one__icon {
  position: relative;
  display: inline-block;
}

.feature-one__icon img {
  padding: 30px 15px;
  max-width: 200px;
  height: auto;
  background-color: var(--tedlife-white);
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--tedlife-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__icon span {
  transform: scale(0.9);
}

.feature-one__title {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 30px;
  margin-bottom: 13px;
  margin-top: 21px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__title a {
  color: var(--tedlife-black);
}

.feature-one__single:hover .feature-one__title {
  color: var(--tedlife-base);
}

.feature-one__text {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__text {
  color: var(--tedlife-white);
}

.feature-one__single-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  border-top: 100px solid rgba(var(--tedlife-black-rgb), 0.03);
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__single-shape-1 {
  border-top: 100px solid rgba(var(--tedlife-white-rgb), 0.03);
}

.feature-one__single-shape-2 {
  position: absolute;
  bottom: 0;
  left: -24px;
  border-top: 100px solid rgba(var(--tedlife-black-rgb), 0.05);
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  transform: rotate(180deg);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__single-shape-2 {
  border-top: 100px solid rgba(var(--tedlife-white-rgb), 0.03);
}

.feature-one__read-more {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  color: var(--tedlife-black);
  margin-top: 11px;
}

.feature-one__single:hover .feature-one__read-more {
  color: var(--tedlife-base);
}

.feature-one__read-more span {
  font-size: 14px;
  color: var(--tedlife-base);
}

.feature-one__count {
  position: absolute;
  top: 21px;
  right: 55px;
  z-index: 2;
}

.feature-one__count:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: rgba(var(--tedlife-black-rgb), 0.3);
  font-family: var(--tedlife-font-two);
  counter-increment: count;
  content: "0" counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__count:before {
  color: var(--tedlife-white);
}

@media (min-width: 1200px) {
  .feature-one__bg {
    background-position: center 10%; /* 👈 shift image downwards on desktop */
  }
}
/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
