.service-style-six {
    padding: 50px 0;
    max-width: 1680px;
    overflow: hidden;
    border-radius: 20px;
    margin: auto;
    position: relative;
    z-index: 2;
}
@media only screen and (min-width: 768px) {
    .service-style-six {
        padding: 60px 0;
    }
}
@media only screen and (min-width: 992px) {
    .service-style-six {
        padding: 80px 0;
        border-radius: 60px;
    }
}
@media only screen and (min-width: 1200px) {
    .service-style-six {
        padding: 80px 0 160px 0;
    }
}
.service-style-six::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.7;
    top: 0;
    z-index: 1;
    left: 0;
}
.service-style-six .text-slide .text {
    text-shadow: inherit;
    color: #b8b8b8;
}
.service-style-six .text-slide .text::before {
    color: #fff;
}
.service-style-six .text-slide:hover svg {
    fill: #fff;
}
.service-style-six .services-bg-img-1 {
    background: center/cover no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: scale(1.08);
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
}
.service-style-six .services-bg-img-1::before {
    position: absolute;
    content: "";
    background-color: #121212;
    opacity: 0.3;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.service-style-six .services-bg-img-1.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.text-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.text-slider-wrapper .text-item {
    display: flex;
    gap: 35px;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    animation: marquee_text 15s linear infinite;
    padding-right: 35px;
}
@media only screen and (min-width: 992px) {
    .text-slider-wrapper .text-item {
        gap: 80px;
        padding-right: 80px;
    }
}
@media only screen and (min-width: 1200px) {
    .text-slider-wrapper .text-item {
        gap: 100px;
        padding-right: 100px;
    }
}
@media only screen and (min-width: 1400px) {
    .text-slider-wrapper .text-item {
        gap: 180px;
        padding-right: 180px;
    }
}
@keyframes marquee_text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.text-slide svg {
    width: 30px;
    height: 100%;
    margin-left: -10px;
}
@media only screen and (min-width: 992px) {
    .text-slide svg {
        width: 40px;
    }
}
@media only screen and (min-width: 1200px) {
    .text-slide svg {
        width: 50px;
        margin-left: 0;
    }
}
@media only screen and (min-width: 1400px) {
    .text-slide svg {
        width: 60px;
    }
}
@media only screen and (min-width: 1600px) {
    .text-slide svg {
        width: 70px;
    }
}
.services-category-list {
    text-align: center;
    position: relative;
    z-index: 4;
    padding: 30px 30px 0;
}
@media only screen and (min-width: 576px) {
    .services-category-list {
        padding: 40px 40px 0;
    }
}
@media only screen and (min-width: 768px) {
    .services-category-list {
        padding: 40px 50px 0;
    }
}
@media only screen and (min-width: 992px) {
    .services-category-list {
        padding: 60px 70px 0;
    }
}
@media only screen and (min-width: 1400px) {
    .services-category-list {
        padding: 60px 120px 0;
    }
}
.services-category-list li {
    padding-bottom: 10px;
    border-bottom: 1px solid #919191;
    cursor: pointer;
}
@media only screen and (min-width: 576px) {
    .services-category-list li {
        padding-bottom: 20px;
    }
}
@media only screen and (min-width: 768px) {
    .services-category-list li {
        padding-bottom: 15px;
    }
}
@media only screen and (min-width: 992px) {
    .services-category-list li {
        padding-bottom: 20px;
    }
}
@media only screen and (min-width: 1400px) {
    .services-category-list li {
        padding-bottom: 30px;
    }
}
.services-category-list li:hover .list-inner {
    -webkit-text-stroke: 2px #FFFFFF;
}
.services-category-list li:hover .list-inner::before {
    width: 100%;
}
.services-category-list li .list-inner {
    font: 400 32px "Poppins", serif;
    color: transparent;
    -webkit-text-stroke: 1px #DDDDDD;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-style: italic;
    display: inline-block;
}
@media only screen and (min-width: 576px) {
    .services-category-list li .list-inner {
        font-size: 40px;
    }
}
@media only screen and (min-width: 768px) {
    .services-category-list li .list-inner {
        font-size: 65px;
    }
}
@media only screen and (min-width: 992px) {
    .services-category-list li .list-inner {
        font-size: 100px;
        font-weight: 500;
        -webkit-text-stroke: 2px #DDDDDD;
    }
}
@media only screen and (min-width: 1400px) {
    .services-category-list li .list-inner {
        font-size: 120px;
    }
}
.services-category-list li .list-inner::before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
    width: 0;
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}
.services-category-list li img {
    opacity: 0;
    visibility: hidden;
    width: 25px;
}
@media only screen and (min-width: 576px) {
    .services-category-list li img {
        width: 40px;
    }
}
@media only screen and (min-width: 992px) {
    .services-category-list li img {
        width: 70px;
    }
}
.services-category-list li.active .list-inner {
    -webkit-text-stroke: 2px #FFFFFF;
}
.services-category-list li.active .list-inner::before {
    width: 100%;
}
.services-category-list li.active img {
    transform: translate(8px);
    opacity: 1;
    visibility: visible;
    margin-top: -5px;
}
@media only screen and (min-width: 576px) {
    .services-category-list li.active img {
        margin-top: -10px;
        transform: translate(20px);
    }
}
@media only screen and (min-width: 992px) {
    .services-category-list li.active img {
        margin-top: -30px;
        transform: translate(30px);
    }
}

.text-slide {
    display: flex;
    gap: 20px;
}
.text-slide:hover .text:before {
    width: 100%;
}
.text-slide:hover svg {
    fill: #121212;
}
@media only screen and (min-width: 768px) {
    .text-slide span {
        margin-top: 10px;
    }
}
.text-slide .text {
    font: 400 35px "Epilogue", sans-serif;
    text-shadow: 1px 0 0 black, 0 1px 0 black, -1px 0 0 black, 0 -1px 0 black;
    color: #7FE85A;
    font-style: italic;
    position: relative;
    cursor: pointer;
}
@media only screen and (min-width: 576px) {
    .text-slide .text {
        font-size: 40px;
    }
}
@media only screen and (min-width: 768px) {
    .text-slide .text {
        font-size: 45px;
    }
}
@media only screen and (min-width: 992px) {
    .text-slide .text {
        font-size: 70px;
    }
}
@media only screen and (min-width: 1200px) {
    .text-slide .text {
        font-size: 80px;
    }
}
@media only screen and (min-width: 1400px) {
    .text-slide .text {
        font-size: 100px;
    }
}
.text-slide .text:before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    font-style: italic;
    width: 0;
    color: #121212;
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}
