.pushs-finders {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    --FONT-SIZE: 14px;
    --FONT-CLARINS: "ClarinsRegular", "Clarins";
    --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", Helvetica, Arial,
        sans-serif;
    --FONT-GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", Helvetica,
        Arial, sans-serif;
    --HOVER: 0 0 7px 0 rgba(0, 0, 0, 0.15);
    --FOCUS-VISIBLE: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893d2;
    overflow: hidden;
    color: #333;
    padding: 64px 32px;
    background-color: #fff;
}

.pushs-finders * {
    box-sizing: border-box;
}

.pushs-finders__title {
    font-size: 42px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 16px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    line-height: 1.2;
    color: #333;
    text-align: center;
}

.pushs-finders__intro {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 16px;
    font-family: var(--FONT-GOTHAM-BOOK);
    line-height: 1.2;
    color: #333;
    text-align: center;
}

.pushs-finders .swiper-wrapper {
    display: flex;
}

.pushs-finders .swiper-slide {
    height: auto;
}

.pushs-finders .swiper-button-next,
.pushs-finders .swiper-button-prev {
    width: 24px;
    height: calc(100% - 88px);
    margin: 0 !important;
    background-color: #fff;
    top: 44px;
}

.pushs-finders .swiper-button-next:after,
.pushs-finders .swiper-button-prev:after {
    content: " ";
    display: block;
    font-family: swiper-icons;
    font-size: 0;
    width: 9px;
    height: 16px;
    background-image: url(../img/arrow.svg);
    background-size: cover;
}

.pushs-finders .swiper-button-next:after {
    transform: scaleX(-1);
}

.pushs-finders__list {
    --swiper-navigation-sides-offset: 0px;
    --swiper-pagination-color: #333;
    width: 100%;
    padding: 40px 24px;
    max-width: 1272px;
    display: block;
    overflow: hidden;
    position: relative;

}

.pushs-finders__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #CFCAC9;
    outline: 0;
    margin: 4px;
    height: calc(100% - 8px);
}

.pushs-finders__item:hover {
    box-shadow: var(--HOVER);
}

.pushs-finders__item:focus-visible {
    box-shadow: var(--FOCUS-VISIBLE);
}

.pushs-finders__picture {
    display: block;
}

.pushs-finders__picture img {
    display: block;
    width: 100%;
    height: auto;
}

.pushs-finders__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px;
}

.pushs-finders__name {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 8px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    line-height: 1.2em;
    color: #333;

}

.pushs-finders__text {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    font-family: var(--FONT-GOTHAM-BOOK);
    line-height: 1.2em;
    color: #333;
    margin-bottom: 16px;
}

.pushs-finders__link {
    font-size: 11px;
    font-weight: 400;
    margin: 0;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    line-height: 1;
    color: #333;
    text-transform: uppercase;
    text-decoration: underline;

}

@media (max-width: 761px) {
    .pushs-finders {
        padding: 40px 16px;
    }

    .pushs-finders__title {
        font-size: 29px;
    }

    .pushs-finders__intro {
        font-size: 17px;
    }

    .pushs-finders .swiper-button-next,
    .pushs-finders .swiper-button-prev {
        display: none;
    }

    .pushs-finders__item {
        margin: 0;
        border-left: 0px solid;
        height: 100%;
    }

    .swiper-slide:nth-child(1) .pushs-finders__item {
        border-left: 1px solid #CFCAC9;
    }

    .pushs-finders__list {
        padding: 0;
        padding-bottom: 32px;
        margin: 0 -16px;
        width: calc(100% + 32px);
    }

    .pushs-finders__content {
        padding: 16px;
    }

    .pushs-finders__name {
        font-size: 14px;

    }

    .pushs-finders__text {
        font-size: 14px;
    }
}