button.prev.slick-arrow {
    height: 70px;
    width: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    background: url(/images/pagination-prev.svg) center center / 70px 70px no-repeat;
}

.services--dark button.prev.slick-arrow {
    background: url(/images/pagination-prev--the-darkest.svg) center center / 70px 70px no-repeat;
}
/* 
.licenses__arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    margin-top: 40px;
} */

button.next.slick-arrow {
    height: 70px;
    width: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    background: url(/images/pagination-prev.svg) center center / 70px 70px no-repeat;
    transform: rotate(180deg);
}

.services--dark button.next.slick-arrow {
    background: url(/images/pagination-prev--the-darkest.svg) center center / 70px 70px no-repeat;
}

button.next.slick-arrow:hover {
    background: url(/images/pagination-next--hover.svg) center center / 70px 70px no-repeat;
    transform: none;
    cursor: pointer;
}

section.services {
    padding-top: 50px;
}

section.services .container {
    position: relative;
}

section.services .container:after {
    content: '';
    position: absolute;
    bottom: calc(-1*var(--section-padding));
    left: 10px;
    right: 10px;
    height: 1px;
    background: var(--color-line-whitebackground);
}

section.services .row {
    row-gap: 20px;
}

a.services__inner {
    background: var(--color-gray-background);
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    /* aspect-ratio: 690/410; */
    padding: 40px;
    height: 100%;
    text-decoration: none;
}

.services__image {
    position: absolute;
    bottom: -178px;
    right: -194px;
    width: 548px;
    height: 548px;
    border: 1px solid var(--color-line-graybackground);
    border-radius: 10000px;
    padding: 67px;
    z-index: 0;
}

.services__image img {
    border-radius: 10000px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services__name {
    max-width: 315px;
    font-weight: 600;
    font-size: 27px;
    line-height: 31px;
    letter-spacing: -0.01em;
    color: var(--color-black);
    margin-bottom: auto;
    position: relative;
    z-index: 1;
}

a.services__inner:hover .services__name {
    color: var(--color-white);
    transition-delay: .4s;
    transition-delay: 0s;
}

a.services__inner:hover .services__icon circle {
    stroke: var(--color-yellow);
    fill: var(--color-yellow);
}

a.services__inner:hover .services__icon path {
    stroke: var(--color-white);
}

a.services__inner:hover .services__image {
    transition: all .5s linear;
    transition: all 0s linear;
    border-width: 0;
    padding: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.services__icon {
    position: relative;
    z-index: 1;
}

a.services__inner:hover .services__image img {
    border-radius: 0;
    transition: all .5s linear;
    transition: all 0s linear;
}

.services--dark {
    border-radius: 60px;
    background: var(--color-gray-background);
}

section.services--dark a.services__inner {
    background: var(--color-white);
}

.services__arrows {
    margin-top: 30px;
    display: flex;
    column-gap: 20px;
    justify-content: center;
}

a.services__inner.slick-slide {
    margin: 0 10px;
    display: flex;
    height: auto;
}

.services__list.slick-initialized {
    margin: 0 -10px;
}

section.services--dark a.services__inner circle {
    fill: var(--color-gray-background);
    stroke: var(--color-gray-background);
}

@media (max-width: 1429px) and (min-width: 1200px) {
    .services__image {
        width: 430px;
        height: 430px;
        padding: 40px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .services__image {
        width: 350px;
        height: 350px;
        padding: 30px;
        bottom: -160px;
        right: -150px;
    }

    .services__name {
        font-size: 21px;
        line-height: 26px;
        max-width: 320px;
    }

    a.services__inner {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .services--dark {
        border-radius: 30px;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    a.services__inner {
        padding: 30px;
    }
    
    .services__name {
        font-size: 24px;
        line-height: 26px;
    }
    
    .services__image {
        width: 400px;
        height: 400px;
        padding: 40px;
        right: -150px;
        bottom: -150px;
    }
}

@media (max-width: 575px){
    .services__image img {
        border-radius: 0;
    }
    
    .services__image {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
    }
    
    a.services__inner {
        padding: 30px;
    }
    
    .services__name {
        font-size: 18px;
        line-height: 22px;
        color: var(--color-white);
    }
    
    a.services__inner .services__icon circle {
        stroke: var(--color-yellow);
        fill: var(--color-yellow);
    }
    
    a.services__inner .services__icon path {
        stroke: var(--color-white);
    }
    
    
    section.services h1 br {
        display: none;
    }

    section.services--dark a.services__inner circle {
        fill: var(--color-yellow);
        stroke: var(--color-yellow);
    }
}