.partnershipBlock{
    width: 100%;
    border-radius: 24px;
    margin: 30px 0;
    padding: 60px 40px;

    position: relative;
}

.partnership-block__bg{
    background: url('../../media/partnership-block/bg.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 250px;
    z-index: -100;

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.partnershipBlock__container{
    background: var(--c3);
    border-radius: 65px;
    padding: 40px 90px;
    box-shadow: var(--c2) 0 0 40px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.partnershipBlock__wrapper{
    width: 100%;

    display: flex;
    align-items: flex-end;
    gap: 60px;
}

.points__wrapper{
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.pointItem{
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
}
.pointItem::before{
    content: '';
    
    background: url('../../media/partnership-block/arrow.png') no-repeat;
    background-position: center;
    background-size: contain;

    width: 18px;
    aspect-ratio: 1;

    position: absolute;
    top: 0;
    left: -20px;
}

.partnershipBlock__btns-wrapper{
    width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.socialBtn{
    font-size: 0.875rem;
    color: var(--text);
    font-weight: 600;
    background: var(--c2);
    border-radius: 90px;
    padding: 10px;
    width: 100%;
    max-width: 193px;

    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

@media (max-width: 992px) {
    .partnershipBlock{
        padding: 60px 0;
    }

    .partnershipBlock__container{
        padding: 40px 20px;
    }
    .partnershipBlock__wrapper{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .points__wrapper{
        width: auto;
        margin: 0 10px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .partnershipBlock__btns-wrapper{
        flex-direction: column;
    }
}