.share-block{
    padding: 168px 0;
    background: #F8F8FA;
    position: relative;
    overflow: hidden;
}

.share-block .container{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.share-block .share-image{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 640px;
    width: auto;

}

.share-block .content {
    max-width: 717px;
    padding-right: 147px;
    box-sizing: border-box;


}

.share-block .subtitle{
    color: var(--grey);
    margin-top: 24px;
    margin-bottom: 60px;
}

.share-block .circles {
    position: absolute;
    bottom: -325px;
    width: 692px;
    right: -325px;
}

.share-block .share-buttons{
    display: flex;
    gap: 20px;
    z-index: 100;
    position: relative;
}

.share-block .share-buttons a{
    padding: 11px 16px;
    background: var(--black);
    border-radius: 8px;
    height: fit-content;
}

.share-block .share-buttons a.active{
    background: radial-gradient(58.07% 116.15% at 38.12% -16.15%, #EE6629 0%, #EE5B18 100%);/* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

}

.share-block .share-buttons a img{
    display: block;
}

@media (max-width: 1919px) {
    .share-block{
        padding: 107px 0;
    }
    .share-block .subtitle{
        margin-bottom: 40px;
    }

    .share-block .share-image{
        height: 100%;
    }

    .share-block .share-buttons a img{
        width: 115px;
    }

    .share-block .circles {
        position: absolute;
        bottom: -455px;
        width: 692px;
        right: -383px;
    }

    .share-block .content{
        padding-right: 0;
        max-width: 507px;
    }
}

@media (max-width: 1439px) {
    .share-block {
        padding: 100px 0;
    }

    .share-block .subtitle{
        margin-top: 20px;
    }

    .share-block .share-buttons a img {
        width: 107px;
    }

    .share-block .circles {
        position: absolute;
        bottom: -486px;
        width: 692px;
        right: -411px;
    }
    .share-block .content{
        max-width: 457px;
    }
}

@media (max-width: 1279px) {
    .share-block {
        padding: 60px 0;
    }

    .share-block .subtitle{
        margin-bottom: 32px;
    }

    .share-block .share-buttons a {
        padding: 9px 14px;
    }

    .share-block .share-buttons a img {
        width: 98px;
    }

    .share-block .content{
        max-width: 424px;
    }

    .share-block .share-image{
        height: auto;
        width: 448px;
        left: -161px;
    }

    .share-block .circles {
        position: absolute;
        bottom: -501px;
        width: 692px;
        right: -484px;
    }
}

@media (max-width: 767px) {
    .share-block .share-image{
        position: static;
        width: 100%;
        margin-bottom: 24px;
    }

    .share-block .content{
        max-width: 100%;
    }

    .share-block .content .title-2{
        text-align: center;
    }

    .share-block .subtitle{
        margin-bottom: 40px;
        text-align: center;
    }

    .share-block .share-buttons{
        flex-direction: column;
        gap: 16px;
    }

    .share-block .share-buttons a{
        text-align: center;
    }

    .share-block .share-buttons a img {
        width: 110px;
        margin: 0 auto;
    }

    .share-block .circles{
        display: none;
    }
}