.axtra-service__list {
    position: relative;
    overflow: hidden;
}

.axtra-service__list svg {
    width: 1em;
    height: 1em;
}

.axtra-service__item {
    max-width: calc(100% - 440px);
    margin-left: auto;
}

.axtra-service__item a {
    gap: 20px;
    display: grid;
    grid-template-columns: 0.7fr 2fr 2.5fr 1fr;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.axtra-service__item:first-child a {
    border-top: 1px solid #ddd;
}

.axtra-service__item .thumb {
    pointer-events: none;
    width: 440px;
    height: 520px;
    position: absolute;
    top: 0;
    left: 0;
}

.axtra-service__item .thumb img {
    object-fit: cover;
    transition-delay: 0.2s;
    transition: all 0.5s;
    opacity: 0;
    transform: rotate(0deg) translateX(-100px);
}

.axtra-service__item.active .thumb img {
    opacity: 1;
    transform: rotate(15deg) translateX(60px) translateY(30px);
}

.axtra-service__item .icon-wrap {
    text-align: right;
}

.axtra-service__item .icon {
    font-size: 48px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    line-height: 1;
    color: #999;
    transition: all 0.3s;
}

.axtra-service__item .title {
    color: #999;
    transition: all 0.3s;
}

.axtra-service__item .icon-1 {
    display: inline-block;
    transform: translate(0, 0) rotate(-45deg);
    transition: all 0.3s;
}

.axtra-service__item .icon-2 {
    display: inline-block;
    transform: translate(0, 0) rotate(-45deg);
    transition: all 0.3s;
    position: absolute;
    font-weight: 900;
    left: -20px;
    bottom: -20px;
    opacity: 0;
    visibility: hidden;
}

.axtra-service__item:hover .icon-1 {
    transform: translate(50px, -50px) rotate(-45deg);
}

.axtra-service__item:hover .icon-2 {
    opacity: 1;
    visibility: visible;
    transform: translate(20px, -20px) rotate(-45deg);
}

.axtra-service__item .shape {
    position: absolute;
    width: 175px;
    height: 70px;
    background-color: #c9f31d;
    bottom: 0;
    left: 0;
    transform: rotate(-26deg) translate(-100%, -100%);
    transition: all 0.5s;
    transition-delay: 0.2s;
    opacity: 0;
    z-index: 1;
}

.axtra-service__item.active .shape {
    opacity: 1;
    transform: rotate(-26deg) translate(120px, -100%);
}

.axtra-service__item .desc {
    padding: 0;
    margin: 0;
}

.axtra-service__item .number {
    color: #999;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    transition: all 0.3s;
}

.axtra-service__item.active .number {
    color: #121212;
}

.axtra-service__item.active .title {
    color: #121212;
}

.axtra-service__item.active .icon {
    color: #121212;
}

@media (max-width: 1365px) {
    .axtra-service__item {
        max-width: 100%;
    }

    .axtra-service__item .thumb {
        display: none;
    }
}

@media (max-width: 767px) {
    .axtra-service__item a {
        grid-template-columns: 1fr;
    }

    .axtra-service__item .icon-wrap {
        text-align: left;
    }
}




