.cpt-list-block {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 38px 0 36px;
    position: relative;
    min-height: 660px;
}
.cpt-list-block__title,
.cpt-list-block__text {
    margin: 0 var(--global-sides-margin);
}
.cpt-list-block__title {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
}
.cpt-list-block__text {
    margin: 0 var(--global-sides-margin); /* auto */
    /*width: 80%;*/
    font-size: 15px;
    line-height: 22px;
    margin-top: 15px;
    max-width: 115ch;
    text-align: center;
}
.sticky-content {
    position: sticky;
    width: 100%;
    top: -80px;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 38px 0 36px;
}
.cpt-list-block .swiper {
    width: 100%;
    margin-top: 38px;
    padding-bottom: 40px;
}

.cpt-list-block .swiper-slide {
    color: var(--color);
    --svg-color: var(--color);
    border: 2px solid transparent;
    transform: scale(1);
    transition: 400ms ease-in-out;
    transition-property: transform, border, color;
}    
.cpt-list-block .swiper-slide:hover {
    transform: scale(0.95);
}    
.cpt-list-block .swiper-slide:nth-child(4n + 1) { 
    background-color: var(--purple-20percent); 
    --color: #53267C;
}
.cpt-list-block .swiper-slide:nth-child(4n + 2) { 
    background-color: var(--pink-20percent); 
    --color: var(--pink);
}
.cpt-list-block .swiper-slide:nth-child(4n + 3) { 
    background-color: var(--orange-20percent); 
    --color: var(--orange);
}
.cpt-list-block .swiper-slide:nth-child(4n + 4) { 
    background-color: var(--yellow-20percent); 
    --color: var(--yellow);
}

/**/
.cpt-list-block .swiper-slide:nth-child(4n + 1):hover { 
    border: 2px solid #53267C;
}
.cpt-list-block .swiper-slide:nth-child(4n + 2):hover { 
    border: 2px solid var(--pink);
}
.cpt-list-block .swiper-slide:nth-child(4n + 3):hover { 
    border: 2px solid var(--orange);
}
.cpt-list-block .swiper-slide:nth-child(4n + 4):hover { 
    border: 2px solid var(--yellow);
}

.cpt-list-block__card {
    width: 207px;
    /*height: 280px;*/
    aspect-ratio: 0.74 / 1;
    border-radius: 30px;
    
    padding: 17px 27px;
    
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.cpt-list-block__card__img {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: contain;
    max-width: 277px;
    
    order: 2;
    margin-top: auto;
}
.cpt-list-block__card__label {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
}
.cpt-list-block .arrow-right-svg {
    transition: transform 0.15s ease 0s;
    margin-top: 7px;
}
.cpt-list-block__card:hover .arrow-right-svg {
    transform: translateX(25%);
}
.cpt-list-block__cta {
    margin-top: 25px;
}
.list-block-pagination{
    position: absolute;
    bottom: -5px !important;
    z-index: 3;
}
.list-block-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    transition: all 400ms ease-in-out;
    opacity: 0.2;
    margin: 0 7px!important;
    background-color: black;
    vertical-align: middle;
}

.list-block-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    opacity: 1;
}


@media screen and (max-width: 767px) {
    .cpt-list-block__title {
    align-self: flex-start;
    }
}

@media screen and (min-width: 576px) {
    .cpt-list-block {
        padding-top: 80px;
        padding-bottom: 78px;
    }
    .cpt-list-block__title {
        font-size: 48px;
        line-height: 54px;
    }
    .cpt-list-block__card {
        width: 277px;
    }
    .cpt-list-block__card__label {
        font-size: 22px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1200px) {
     .sticky-content {
        position: sticky;
        width: 100%;
        top: 90px;
        display: flex;
        flex-flow: column;
        align-items: center;
        padding: 38px 0 36px;
    }
}