.main-heading {
    margin-bottom: 0;
}
.main-heading .block-content {
    align-self: flex-end;
}

.animated-partners {
    overflow: hidden;
    position: relative;
}
.animated-partners:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    box-shadow: 0 6px 6px rgb(58 59 61 / 5%);
    height: 10px;
    z-index: 99;
}
.animated-partners:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    box-shadow: 0 -6px 6px rgb(58 59 61 / 5%);
    height: 10px;
    z-index: 99;
}
.animated-partners__container {
    display: flex;
    align-items: stretch;
}
.animated-partners__info {
    width: 50%;
    align-self: center;
    padding: 72px 0;
}
.animated-partners__title {
    margin: 0;
    font-weight: 600;
    font-size: 52px;
    line-height: 60px;
    letter-spacing: -0.01em;
    color: #474766;
}
.animated-partners__content {
    width: 50%;
    padding-left: 30px;
    height: 100%;
    position: relative;
}
.animated-partners__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
    position: absolute;
    top: 0;
    animation: auto-scroll 10s linear infinite;
}
.animated-partners__list-item {
    border-radius: 11px;
    box-shadow: 2px 2px 24px -5px rgba(0, 0, 0, 0.25);
    line-height: 0;
    overflow: hidden;
    margin-bottom: 24px;
}
.animated-partners__list-item img {
    width: 100%;
}

@keyframes auto-scroll {
    0% {
        transform: translate(0,0);
    }
    100% {
        transform: translate(0, -50%);
    }
}
@keyframes auto-tablet-scroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-756px, 0);
    }
}
@keyframes auto-mobile-scroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-492px, 0);
    }
}


@media screen and (max-width: 1350px) {
    .animated-partners__title {
        font-size: 48px;
        line-height: 56px;
    }
    .animated-partners__list {
        gap: 0 18px;
    }
    .animated-partners__list-item {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 980px) {
    .animated-partners__info {
        padding: 64px 0;
    }
    .animated-partners__title {
        left: 32px;
        top: 40px;
        font-size: 38px;
        line-height: 44px;
    }
    .animated-partners__list {
        gap: 0 14px;
    }
    .animated-partners__list-item {
        margin-bottom: 14px;
    }
}

@media screen and (max-width: 750px) {
    .animated-partners__container {
        flex-direction: column;
        padding: 0;
    }
    .animated-partners__info {
        width: 100%;
        padding: 40px 20px;
    }
    .animated-partners__content {
        width: 100%;
        height: 200px;
        padding: 0;
    }
    .animated-partners__title {
        font-size: 28px;
        line-height: 32px;
    }
    .animated-partners__list {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        /*width: 900px;*/
        animation: auto-tablet-scroll 20s linear infinite;
        height: 220px;
        gap: 0;
    }
    .animated-partners__list-item {
        width: 175px;
        margin-bottom: 14px;
        margin-right: 14px;
    }
}
@media screen and (max-width: 414px) {
    .animated-partners__list {
        animation: auto-mobile-scroll 20s linear infinite;
    }
    .animated-partners__list-item {
        width: 150px;
    }
}

.audience__grey-text{
    font-size: 18px;
    line-height: 28px;
    color: #808899;
    text-align: center;
    max-width: 550px;
    margin: 32px auto 0 auto;
}
.audience__content {
    margin: 40px 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.audience__icon-wrap {
    width: 90px;
    height: 90px;
}
.audience__icon-wrap img{
    width: 100%;
}
.audience__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.01em;
    color: #474766;
    margin: 24px 0 0 0;
}
.audience__p {
    font-size: 18px;
    line-height: 28px;
    color: #808899;
    margin: 20px 0 0 0;
}

.audience__p a{
    display: inline;
    text-decoration: underline;
    color: #2589FF;
}

.audience__p a:hover{
    text-decoration: none;
}


@media screen and (max-width: 1350px){
    .audience__grey-text{
        font-size: 16px;
        line-height: 24px;
        max-width: 500px;
        margin: 24px auto 0 auto;
    }
    .audience__content {
        grid-template-columns: repeat(3, 1fr);
        margin: 36px 0 0 0;
    }
    .audience__title {
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
    }
    .audience__p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 980px) {

    .audience__content {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 32px;
        gap: 32px;
        margin: 36px 0 0 0;
    }

    .audience__p {
        margin: 12px 0 0 0;
        color: #5E6677;
    }
}

@media screen and (max-width: 581px) {
    .audience__grey-text{
        text-align: left;
        margin: 16px 0 0 0;
    }
    .audience__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .audience__icon-wrap {
        width: 70px;
        height: 70px;
    }

    .audience__title {
        margin: 16px 0 0 0;
    }
    .audience__p {
        margin: 8px 0 0 0;
    }
}

.simple-register {
    margin-bottom: 100px;
    overflow: hidden;
    position: relative;

}

.simple-register .block-info {
    width: 60%;
    margin-bottom: 35px;
}

.simple-register_with-bg1 {
    background-image: url(../../img/ru/solutions/businessman/graph-blue.png);
    background-repeat: no-repeat;
    background-position: 80% 50%;
    background-size: 35%;
}

.simple-register .register-button {
    background: #fff;
    color: var(--main);
}
.simple-register .register-button:hover {
    background: #fff;
    box-shadow: 4px 4px 22px rgba(0, 0, 0, 0.15);
}

.simple-register .title-h3 {
    font-size: 52px;
    line-height: 60px;
}

.simple-register_with-bg2:after {
    background: url(../../../img/partners_agency/simple-register-hends.png) center center no-repeat;
    background-size: 100%;
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translate(0, -50%);
    width: 430px;
    height: 559px;
    content: '';
}


@media screen and (max-width: 1350px) {
    .simple-register_with-bg1 .title-h3 {
        font-size: 38px;
        line-height: 44px;
    }
}

@media screen and (max-width: 980px) {
    .simple-register_with-bg1 {
        background-position: 90% 110%;
        background-size: 35%;
    }
}
@media screen and (max-width: 750px) {
    .simple-register .block-content {
        justify-content: initial;
    }
    .simple-register_with-bg1 .block-info {
        width: 100%;
    }
}

@media screen and (max-width: 581px) {
    .simple-register .block-info {
        width: 100%;
    }
    .simple-register .title-h3 {
        font-size: 28px;
        line-height: 32px;
        text-align: left;
    }
    .simple-register_with-bg1 {
        background-size: 70%;
        background: right bottom;
    }
    .simple-register_with-bg2 {
        padding: 40px 0 250px;
    }
    .simple-register_with-bg2:after {
        left: 50%;
        top: initial;
        bottom: -240px;
        width: 110%;
        height: 160%;
        transform: translate(-50%, 0) rotate(70deg);
    }
    .simple-register .text {
        text-align: left;
    }

    .simple-register .inline-form button, .simple-register .inline-form .register-button.main {
        width: 100%;
        background: var(--white);
        color: var(--main);
        box-shadow: 0px 2px 6px rgb(55 56 60 / 25%);
    }

    .simple-register .register-button {
        width: 100%;
    }
}

.two-cols-blue-cards {
    margin: 120px 0;
}
.two-cols-blue-cards__head {
    margin: 0 auto 40px;
    max-width: 900px;
}
.two-cols-blue-cards__head .title-h2 {
    margin-bottom: 32px;
}
.two-cols-blue-cards__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 60px;
}
.two-cols-blue-cards__item {
    padding: 24px 40px 24px 60px;
    font-size: 18px;
    line-height: 28px;
    color: #474766;
    background: #F5F9FF url(https://roistat.com/img/partners_agency/two-cols-blue-cards__item.svg) 40px 30px no-repeat;
    background-size: 14px;
    border-radius: 20px;
}

@media screen and (max-width: 1350px) {
    .two-cols-blue-cards {
        margin: 100px 0;
    }
    .two-cols-blue-cards__list {
        gap: 24px 32px;
    }
    .two-cols-blue-cards__item {
        padding: 24px 16px 24px 38px;
        font-size: 16px;
        line-height: 24px;
        background: #F5F9FF url(https://roistat.com/img/partners_agency/two-cols-blue-cards__item.svg) 16px 30px no-repeat;
    }
}

@media screen and (max-width: 980px) {
    .two-cols-blue-cards__head .title-h2 {
        margin-bottom: 24px;
    }
    .two-cols-blue-cards__head .text {
        text-align: center;
    }
    .two-cols-blue-cards__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media screen and (max-width: 750px) {
    .two-cols-blue-cards__head .text {
        text-align: left;
    }
}