/***
=============================================
Sliding Text One
=============================================
***/
.sliding-text-one {
  position: relative;
  display: block;
  padding: 106px 0 102px;
  z-index: 4;
}

.sliding-text-one__wrap {
  position: relative;
  display: block;
}

.sliding-text-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: fit-content;
}

.sliding-text-one__list li {
  position: relative;
  display: block;
  float: left;
  margin-right: 15px;
}

.sliding-text-one__title {
  position: relative;
  display: flex;
  align-items: center;
  color: transparent;
  -webkit-text-stroke: 2px rgba(var(--aswwf-base-rgb), 1);
  font-size: 84px;
  line-height: 94px;
  font-weight: 800;
  font-family: var(--aswwf-font-two);
  font-style: normal;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sliding-text-one__list li:hover .sliding-text-one__title {
  -webkit-text-stroke: 2px var(--aswwf-base);
}

.sliding-text-one__title:before {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--aswwf-base);
  white-space: nowrap;
  content: attr(data-hover);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text-one__list li:hover .sliding-text-one__title:before {
  width: 100%;
  color: var(--aswwf-base);
}

.sliding-text-one__title.style2 {
  color: var(--aswwf-black);
  -webkit-text-stroke: 2px rgba(var(--aswwf-black-rgb), 1);
}

.sliding-text-one__title.style2:before {
  color: var(--aswwf-black);
}

.sliding-text-one__title img {
  margin-left: 15px;
  position: relative;
  width: auto;
  animation: textRotate 10s linear 0s forwards infinite alternate;
}

@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/***
=============================================
Sliding Text Two
=============================================
***/
.sliding-text-one--two {
  position: relative;
  display: block;
  padding-top: 0px;
}
