.services {

}
.services {
    text-decoration: none;
    color: #fff;
}
.services .container {
    width: 90%;
    max-width: 1664px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-wrap: wrap;
}
.services .container a {
    width: 300px;
    height: 350px;
}
.services .services-item {
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius:  20px;
    position: relative;
    margin: 0 auto;
    transition: 0.3s;
}
.services .services-item p {
    z-index: 1;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 33px;
    font-weight: 600;
    font-size: 24px;
    width: 100%;
    text-align: center;
    color: #fff;
    letter-spacing: 0.01em;
}
.services .icon {
    z-index: 1;
    position: absolute;
    width: 156px;
    height: 156px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 40%;
    transition: 0.3s;
}
.services .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: 0.3s;
    border-radius:  100%;
}
.services .services-item:hover {
    transform: scale(1.1);
}
.services .services-item:hover .icon {
    transform: translate(-50%, -50%) scale(0.5);
    top: 10%;
    width: 100px;
}
.services .services-item:hover .bg {
    transform: scale(1);
    border-radius:  20px;
}
.services .blur {
    display: none;
}
@media (max-width: 1440px) {
    .services .container {
        width: 95%;
        justify-content: center;
        gap: 48px;
        top: calc(50% + 48px); /* header height */
        max-width: 771px;
    }
    .services .container a {
        width: 225px;
        height: 265px;
    }
    .services .icon {
        width: 135px;
        height: 135px;
        top: 40%;
    }
    .services .services-item:hover .icon {
        top: 15%;
    }
    .services .services-item p {
        font-size: 20px;
        line-height: 27px;
    }

}

@media (max-width: 1280px) {
    .services .container {
        top: calc(50% + 32px); /* header height */
    }

}
@media (max-width: 815px) { /* mob */
    .services {
        width: 100%;
        height: 620px;
        padding: 48px 0 24px;
    }
    .services .container {
        position: static;
        transform: none;
        width: 90%;
        flex-direction: column;
        gap: 24px;
        margin: 0 auto;
    }
    .services .container a{
        width: 100%;
        height: 96px;
        border-radius: 20px;
        overflow: hidden;
    }
    .services .container .services-item {
        border: none;
        background-color: #fff;
        pointer-events: none;
        border-radius: 24px;
    }
    .services .icon {
        mix-blend-mode: difference;
        width: 44px;
        height: 44px;
        top: 50%;
        left: 48px;
    }
    .services .services-item p {
        transform: translate(0, -50%);
        left: 96px;
        top: 50%;
        bottom: unset;
        font-size: 20px;
        line-height: 27px;
        color: #1A191D;
        width: unset;
        text-align: left;
    }
    .services .bg {
        transform: none;
        width: 96px;
        height: 96px;
        top: 0;
        right: 0;
        border-radius: 0;
    }
    .services .blur {
        display: block;
        position: absolute;
        top: 0;
        width: 96px;
        height: 96px;
        right: 48px;
        background: linear-gradient(90deg, #FFFFFF 59.21%, rgba(255, 255, 255, 0) 100%);
    }

}
@media (max-width: 480px) {
    .services {
        padding: 36px 0 24px;
    }
    .services .container {
        max-width: 311px;
    }
    .services .services-item p {
        max-width: 150px;
    }
}
