.services-title {
    display: flex;
    width: 100%;
}

.services-route {
    margin: 15px 0 13px 0;
    display: flex;
    align-items: center;
    gap: 11px;
}

.services-route a {
    text-decoration: none;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-route img {
    width: 6px;
    height: auto;
    vertical-align: middle;
}

.services-heading span {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #555555;
    text-transform: uppercase;
}

.services-list {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}

.services-list ul {
    margin-right: 0;
    width: 100%;
}


.services-list ul li:first-child {
    margin-top: 15px;
}

.services-list ul li {
    list-style: none;
    margin-top: 10px;
}

.services-list span a {
    text-decoration: none;
    color: #222222;
    font-weight: 500;
}

.services-list span a:hover {
    transition: 0.25s all ease;
    text-decoration: underline;
    /* font-size: 17px; */
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 30px 22px;
    margin-bottom: 50px;
}

.service-card {
    border: 1px solid #A8A8A8;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.service-image img {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-title {
    display: block;
    color: #111111;
    font-family: Montserrat, sans-serif;
    margin: 16px 14px 0 14px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 44px;
    font-size: 15px;
}

.service--button {
    width: 140px;
    height: 44px;
    display: flex;
    background: #fff;
    color: #222222;
    border: 1px solid #00DBFF;
    cursor: pointer;
    text-transform: uppercase;
    margin: 18px 16px 20px 16px;
    margin-top: auto;
    position: relative;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.5s ease, opacity 1s ease, transform 1s ease;
    opacity: 0;
    transform: translateY(40px);
}

.service--button.show {
    opacity: 1;
    transform: translateY(0);
}

.service--button-span {
    display: inline-block;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    position: relative;
    text-align: center;
}

.btn--inside-uslugi {
    position: absolute;
    background: #00DBFF;
    width: 22px;
    height: 22px;
    right: auto;
    top: 50%;
    left: 22%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.4s ease;
}

.service--button:hover .btn--inside-uslugi {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: none;
}


.service--button:hover {
    color: #fff;
}

@media (max-width: 1200px) {
    .services-list {
        grid-template-columns: 230px 1fr;
        gap: 24px;
    }

    .service-cards {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
        gap: 36px 28px;
    }
}

@media (max-width: 992px) {
    .services-list {
        grid-template-columns: 1fr;
    }

    .services-list ul {
        display: none;
    }

    .service-cards {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 28px 20px;
        margin-bottom: 40px;
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .services-list ul {
        grid-template-columns: 1fr;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service--button {
        width: 136px;
        height: 42px;
        margin: 16px;
    }
}

@media (max-width: 480px) {
    .services-heading span {
        font-size: 26px;
    }

    .services-route a {
        font-size: 11px;
    }

    .service-title {
        margin: 16px 12px 0 12px;
        font-size: 15px;
    }

    .service--button {
        width: 130px;
        height: 40px;
        margin: 14px 12px 16px 12px;
    }
}