/*Normalize*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    font-family: 'Suisse Intl', sans-serif;
    font-style: normal;
    text-decoration: none;
}

body,
html {
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

img {
    /*max-width: 100%;*/
}

a {
    display: flex;
}

.link {
    position: relative;
    display: inline-block;
    color: #2589FF;
    text-decoration: underline;
    line-height: 1;
}

.link:hover {
    text-decoration: none;
}

.link.no-border {
    border-bottom: none;
}

.link.arrow-right {
    padding-right: 10px;
}

.link.arrow-right::before {
    position: absolute;
    right: -10px;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
}


/*Colors*/

:root {
    --main: #2589FF;
    --hover: #64abff;
    --buttonHover: #489CFF;
    --buttonActive: #0879FE;
    --header: #474766;
    --regular: #808899;
    --white: #FFFFFF;
    --grey: #F2F2F2;
    --light-blue: #F5F9FF;
    --placeholder: rgba(51, 51, 51, 0.4);
    --gradient: linear-gradient(179.89deg, #F8FAFF 0.08%, #E3ECFA 99.02%);
    --red: #f35050;
    --orange: #FF7425;
    --dark-2: #0052B2;
    --dark-1: #0052B2;
    --dark-3: #0069E5;
    --light-2: #D6E8FF;
    --light-1: #EFF6FF;
}

.title-h1,
.title-h2,
.title-h3,
.title-h4,
.title-h4 a {
    color: var(--header);
}

.text,
.text-small {
    color: var(--regular);
}

.regular {
    color: var(--regular);
}

.header-color {
    color: var(--header);
}

.main {
    background: var(--main);
    position: relative;
    z-index: 4;
}

.main .title-h1,
.main .title-h2,
.main .title-h3,
.main .title-h4,
.main .text,
.main .text-small {
    color: var(--white);
}

.light-blue {
    background: var(--light-blue);
}

.white {
    background: var(--white);
}

.inline-form-input.text {
    color: var(--header);
}

.register-button.main {
    background: var(--main);
    color: var(--white);
    transition: 0.1s;
}

.register-button.main .icon-img {
    position: relative;
    transition: 0.15s;
    right: 0;
}

.register-button.main .icon-img_mobile {
    display: none;
}

.register-button.main:hover {
    background: var(--buttonHover);
}

.register-button.main:active {
    background: var(--buttonActive);
}

.register-button.main:hover .icon-img {
    right: -6px;
}

.link-new {
    color: var(--main);
    text-decoration: underline;
    display: inline;
    cursor: pointer;
}

.link-new:hover {
    text-decoration: none;
}

.link-new.link-new_icon_true {
    text-decoration: none;
    color: var(--main);
}

.link-new img {
    width: 14px;
}

.link-new .icon-img {
    position: relative;
    right: 0;
    transition: .15s;
}

.link-new:hover .icon-img {
    right: -6px;
}

.pill {
    background-color: var(--white);
    box-shadow: 0px 0px 8px rgba(209, 209, 209, 0.5), inset 0px 0px 12px rgba(0, 160, 227, 0.15);
}

.pill .title-h3 {
    color: var(--main);
}

.error-message {
    color: var(--red);
}

/*Text*/

.title-h1 {
    font-weight: 600;
    font-size: 62px;
    line-height: 68px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.title-h2 {
    font-weight: 600;
    font-size: 52px;
    line-height: 60px;
    letter-spacing: -0.01em;
}

.title-h3 {
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.01em;
}

.title-h3>img {
    width: 35px;
}

.title-h4 {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
}

.text {
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
}

.text-small {
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
}

a.text-small .link-arrow {
    position: relative;
    right: 0;
    transition: .15s;
}

a.text-small:hover .link-arrow {
    right: -6px;
}

/*Content*/

.content-block-container {
    max-width: 1280px;
    margin: 0 auto;
}

.full-width {
    width: 100%;
}

.round {
    border-radius: 50%;
}

.rounded {
    border-radius: 12px;
}

.shadow {
    box-shadow: 0px 0px 15.6px rgba(0, 0, 0, 0.12);
}

.box-shadow {
    box-shadow: 0px 2px 8px #D9E0EA;
}

/*Components*/

.register-button {
    display: inline-block;
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    border-radius: 6px;
    padding: 16px 24px;
    cursor: pointer;
    border: 0;
    white-space: nowrap;
}

.register-button.white {
    background: var(--white);
    color: var(--main);
}

.register-button.white:hover {
    background: var(--white);
    box-shadow: 4px 4px 22px rgba(0, 0, 0, 0.15);
}

.register-button:disabled {
    opacity: 50%;
    cursor: not-allowed;
}

.inline-form {
    width: 502px;
    /*padding: 4px;*/
    /*display: flex;*/
    /*flex-direction: row;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
    /*transition: .3s linear all;*/
    position: relative;
}

.inline-form-input {
    width: 100%;
    height: 62px;
    line-height: 62px;
    border: none;
    padding: 0 180px 0 20px;
    border: 1px solid var(--main);
    background: var(--white);
    border-radius: 8px;
}

.inline-form-input:focus {
    border: 1px solid var(--buttonHover);
}

.inline-form .register-button {
    position: absolute;
    top: 5px;
    right: 5px;
}

.inline-form-input::placeholder {
    color: var(--placeholder);
}

.inline-form.validation-failed,
.complex-form-input.validation-failed {
    transition: .3s linear all;
}

.complex-form-checkbox-checkmark.validation-failed {
    background: var(--red);
    opacity: 0.7;
    transition: .3s linear all;
}

.error-message {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: .3s linear all;
    color: var(--red) !important;
}

.error-message.error-message-up-field {
    bottom: 100px;
}

.validation-failed .inline-form-input.text {
    color: var(--red)
}

.main .validation-failed.complex-form-input-email {
    color: var(--red);
}

@media screen and (max-width: 581px) {
    .error-message.error-message-up-field {
        left: 0;
        bottom: 81px;
    }

    .page2021__button-block .validation-failed .register-button {
        top: 8px;
    }

    .validation-failed .inline-form-input.text {
        color: var(--red)
    }

}

.complex-form-input {
    box-sizing: border-box;
    border-radius: 8px;
    width: 465px;
    padding: 16px 18px;
    border: 1px solid var(--white);
}

.complex-form .register-button {
    padding: 20px 24px;
    font-size: 18px;
    line-height: 20px;
}

.main .complex-form-input {
    color: var(--header);
}

.complex-form .inputs-wrapper {
    position: relative;
}

.complex-form-checkbox-wrapper {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
}

.complex-form-checkbox-wrapper .complex-form-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.complex-form .error-message {
    top: -36px;
    color: var(--red);
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    margin-top: 8px;
}

@media screen and (max-width: 980px) {
    .complex-form .error-message {
        top: 58px;
    }
}

@media screen and (max-width: 750px) {
    .complex-form .error-message {
        top: 53px;
    }
}

.complex-form-checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    border-radius: 4px;
    background-color: white;
    transition: .3s linear all;
}

.complex-form-checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.complex-form-checkbox-wrapper .complex-form-checkbox:checked~.complex-form-checkbox-checkmark:after {
    display: block;
}

.complex-form-checkbox-wrapper .complex-form-checkbox-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--main);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.complex-form-checkbox-label-link {
    display: inline;
    text-decoration: underline;
}

.complex-form-modal {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 8001;
    display: none;
}

.complex-form-modal-background {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.complex-form-modal-window {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 395px;
    max-width: calc(100% - 30px);
    padding: 35px;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
}

.complex-form-modal-close {
    position: absolute;
    width: 20px !important;
    height: 20px;
    right: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    border: none;
    background-color: transparent;
}

.complex-form-modal-close::before,
.complex-form-modal-close::after {
    content: "";
    width: 16px;
    height: 2px;
    background-color: var(--header);
    display: block;
    cursor: pointer;
}

.complex-form-modal-close::before {
    transform: translateY(1px) rotate(-45deg);
}

.complex-form-modal-close::after {
    transform: translateY(-1px) rotate(45deg);
}

.complex-form-modal-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #474766;
}

.complex-form-modal-description {
    margin: 15px 0 0 0;
    color: #808899;
    text-align: center;
    font-size: 16px;
}

.complex-form-modal-description a {
    color: #2589FF;
}

.underline {
    border-bottom: 2px solid var(--main);
}

.underline:hover {
    border-bottom: 0;
}

.link-new.underline {
    border-bottom: 0;
}

.pill {
    border-radius: 45.5px;
}

.progress-line {
    content: "";
    width: 95%;
    height: 2px;
    background: linear-gradient(90deg, #2589FF 0.96%, #30D672 100.27%);
    position: relative;
    top: 20px;

}

.progress-line-stage-count {
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2589FF;
    position: relative;
    z-index: 1;
}

.block-input {
    position: relative;
}

/*Grid System*/

.block-component {
    width: 100%;
}

.flex {
    display: flex;
    align-items: center;
}

.flex.center {
    justify-content: center;
}

.flex.start {
    justify-content: flex-start;
}

.flex.between {
    justify-content: space-between;
}

.flex.column {
    height: 100%;
    flex-direction: column;
}

.flex.column.between {
    justify-content: space-between;
}

.flex.column.start {
    align-items: flex-start;
}

.flex.column.end {
    align-items: flex-end;
}

.flex.reverse {
    flex-flow: row-reverse;
}

.column.reverse {
    flex-flow: column-reverse;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.block-component.centered {
    flex-direction: row;
    justify-content: center;
}

.block-component.centered title-h1,
.block-component.centered title-h2,
.block-component.centered title-h3 {
    text-align: center;
}

.block-component.centered {
    flex-direction: column;
    justify-content: center;
}

.block-component.centered .block-info {
    text-align: center;
}

.features-with-icons-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 40px 60px;
}

.feature-with-icon-wrapper {
    width: 610px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    grid-gap: 0px 20px;
}

.feature-icon {
    width: 52px;
    height: 52px;
}

.feature-icon.small {
    width: 38px;
    height: 38px;
}

.arrow.link {
    display: inline;
}

.feature-with-icon-title,
.feature-icon,
.arrow.link {
    align-self: center;
}

.feature-with-icon-text {
    grid-area: 2 / 2 / 3 / 3;
}

.list-wrapper {
    width: 100%;
}

.list-item-with-icon {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 0 8px;
}

.list-item-icon-wrapper {
    grid-area: 1 / 1 / 2 / 2;
    /*align-self: center;*/
}

.list-item-with-icon-title {
    align-self: center;
}

.list-item-with-icon-text,
.list-item-with-icon-other-text {
    grid-area: 2 / 2 / 3 / 3;
}

.list-item-icon-wrapper+.list-item-with-icon-text {
    grid-area: 1 / 2 / 3 / 3;
}

.list-item-with-icon.without-title {
    grid-template-rows: auto auto;
}

.list-one-column {
    display: grid;
    grid-template-columns: 1fr;
}

.list-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.list-three-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.list-three-columns.start {
    justify-items: start;
}

.list-three-columns.center {
    align-items: center;
}

.features-integrations-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.features-integrations-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 40px;
}

.feature-integration {
    padding: 24px;
}

.three-features-wrapper {
    width: 100%;
    display: grid;
    grid-template: "block block block"1fr;
    grid-column-gap: 48px;
}

.card-features-wrapper {
    width: 100%;
    display: grid;
    grid-template:
        "card card card card"1fr "card card card card"1fr;
    grid-gap: 40px;
}

.card-features-wrapper {}

.card-feature-icon {
    width: 64px;
    height: 64px;
}

.card-feature-icon img {
    width: 48px;
    height: 48px;
}

.price-text {
    display: flex;
    align-items: flex-end;
}

/*Default settings*/

.page-template {
    margin-top: 60px
}

/* Heading */

.heading {
    margin: 130px 0 120px;
}

.heading .block-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.heading .block-info {
    max-width: 578px;
}

.heading .title-h2 {
    margin-bottom: 32px;
}

.heading .text {
    margin-bottom: 40px;
}

.heading .text-small {
    margin-top: 16px;
}

.heading .block-input .text {
    margin-bottom: 0;
}

/* List four item */

.list-four-item {
    margin: 120px 0;
}

.list-four-item .title-h2 {
    margin-bottom: 40px;
}

.list-four-item .list-two-columns {
    grid-gap: 40px 60px;
}

.list-four-item .list-item-with-icon {
    grid-gap: 0 20px;
}

.list-four-item .title-h4 {
    font-size: 24px;
    line-height: 28px;
}

.list-four-item .list-item-icon-wrapper {
    width: 52px;
    height: 52px;
    box-shadow: 0px 0px 15.6px rgba(0, 0, 0, 0.12);
}

/* Two columns features*/

.two-columns-features {
    margin: 120px 0;
}

.two-columns-features .title-h2 {
    margin-bottom: 40px;
}

.two-columns-features .list-two-columns {
    grid-gap: 32px 60px;
}

.two-columns-features .list-item-with-icon {
    grid-gap: 10px 16px;
}

.two-columns-features .list-item-icon-wrapper {
    height: 38px;
    width: 38px;
    background: var(--light-blue);
}

.two-columns-features .list-item-icon-wrapper img {
    width: 24px;
}

.two-columns-features .link-icon-wrapper img {
    width: 16px;
    height: 20px;
}

.two-columns-features .list-wrapper {
    margin-bottom: 48px;
}

.two-columns-features .register-button {
    padding: 16px 32px;
    font-size: 18px;
    line-height: 28px;
}

.two-columns-features span {
    margin: 0 5px 0 0;
}

.two-columns-features .title-h4 a {
    transition: 0.3s;
}


.two-columns-features .title-h4 a .icon-img {
    position: relative;
    right: 0;
    transition: 0.15s;
}

.two-columns-features .title-h4 a:hover .icon-img {
    right: -6px;
}


.features-light-blue {
    background-color: #F5F9FF;
    margin: 0;
    padding: 120px 0;
}

@media screen and (max-width: 980px) {
    .features-light-blue {
        padding: 80px 0;
    }
}

/* Integrations cards */

.integration-cards {
    margin: 160px 0 56px;
}

.integration-cards .title-h2 {
    margin-bottom: 40px;
}

.integration-cards .integration-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 40px;
    margin-bottom: 40px;
}

.integration-cards .integration-card {
    box-shadow: 0px 2px 8px #D9E0EA;
    border-radius: 12px;
    padding: 24px;
}

/* Deal */

.deal {
    margin: 56px 0 160px;
}

.deal .block-wrapper {
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 2px 8px #D9E0EA;
    border-radius: 16px;
    padding: 36px 54px;
}

.deal .block-content {
    display: flex;
    align-items: flex-end;
}

/* Cases */

.cases {
    margin: 160px 0;
}

.cases .title-h2 {
    margin-bottom: 40px;
}

.cases .block-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cases .list-with-three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 48px;
    margin-bottom: 36px;
}

.cases .case-card {
    display: grid;
    justify-items: center;
    grid-template-rows: minmax(20px, 1fr) repeat(4, auto);
    padding: 56px 44px;
    background: #F5F9FF;
    border-radius: 12px;
}

.cases .case-card-img-wrapper {
    margin-bottom: 12px;
}

.cases .case-card-img-wrapper img {
    width: 100%;
    height: auto;
}

.cases .case-card-text-small {
    color: var(--header);
    margin-bottom: 40px;
    text-align: center;
}

.cases .case-card-pill {
    padding: 20px 32px;
    color: var(--dark-3);
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 24px;
}

.cases .case-card-accent-text {
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 44px;
}

/* Feature cards */

.roistat-features-cards {
    margin: 160px 0;
}

.roistat-features-cards .title-h2 {
    margin-bottom: 40px;
}

.roistat-features-cards .feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 48px;
}

.roistat-features-cards .feature-card {
    padding: 28px;
    box-shadow: 0px 0px 3px rgba(160, 160, 160, 0.25), 0px 12px 24px rgba(136, 134, 154, 0.15);
    border-radius: 16px;
    display: grid;
    grid-template-rows: repeat(3, auto) minmax(20px, 1fr);
}

.roistat-features-cards .list-item-icon-wrapper {
    background: #F5F9FF;
    border-radius: 6px;
    height: 64px;
    width: 64px;
    margin-bottom: 20px;
}

.roistat-features-cards .list-item-icon-wrapper img {
    width: 42px;
    height: 42px;
}

.roistat-features-cards .feature-card-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
}

.roistat-features-cards .feature-card-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 34px;
}

.roistat-features-cards .feature-card .link-wrapper {
    display: flex;
    align-items: flex-end;
}

/* List four light blue item */

.list-four-light-blue-item {
    margin: 160px 0;
}

.list-four-light-blue-item .title-h2 {
    margin-bottom: 32px;
}

.list-four-light-blue-item .subtitle-text {
    margin-bottom: 40px;
    color: var(--header);
}

.list-four-light-blue-item .list-two-columns {
    grid-gap: 40px;
}

.list-four-light-blue-item .list-item-with-icon {
    grid-gap: 0 24px;
}

.list-four-light-blue-item .list-item-with-icon {
    background: #F5F9FF;
    border-radius: 12px;
    padding: 24px 32px;
}

.list-four-light-blue-item .list-item-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #2589FF;
    box-shadow: 0px 0px 8px rgba(37, 137, 255, 0.5);
    border-radius: 20px;
    transform: matrix(1, 0, 0, -1, 0, 0);
}

.list-four-light-blue-item .list-item-with-icon-title {
    font-size: 24px;
    line-height: 28px;
}

/* Image with list block */

.img-with-list {
    margin: 120px 0;
}

.img-with-list .block-info .text {
    margin-top: 20px;
}

.img-with-list .block-info *:last-child {
    margin-bottom: 38px;
}

.img-with-list .list-one-column {
    /*max-width: 50%;*/
    align-items: stretch;
    grid-gap: 30px 0;
}

.img-with-list .content-wrapper {
    max-width: 52%;
    padding-left: 8px;
    padding-top: 10px;
}

.img-with-list .list-item-with-icon {
    grid-gap: 16px 4px;
}

.img-with-list .list-item-with-icon-title.title-h4 {
    letter-spacing: -0.01em;
}

.img-with-list .list-item-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-right: 3px;
}

.img-with-list .colored-circle {
    width: 18px;
    height: 18px;
    margin-right: 20px;
    align-self: center;
}

.img-with-list .bg-blue1 {
    background: #D6E8FF;
}

.img-with-list .bg-blue2 {
    background: #9ECAFF;
}

.img-with-list .bg-blue3 {
    background: #77B6FF;
}

.img-with-list .discount {
    background: #EFF6FF;
    color: #474766;
    max-width: 422px;
    border-radius: 11px;
    font-size: 18px;
    line-height: 28px;
    margin-top: 24px;
    padding: 18px 15px;
    margin-left: 48px;
}

.discount>.ios-icon {
    width: 17px;
}

.img-with-list .list-item-with-icon-text {
    grid-area: 2 / 1 / 2 / 2;
}

.other-icon-img {
    position: relative;
    right: 0;
    transition: 0.15s;
}

.list-item-with-icon-title a:hover .other-icon-img {
    right: -6px;
}

/* Feature block */

/*.feature {*/
/*margin: 40px 0;*/
/*}*/

/*.feature .block-wrapper {*/
/*display: grid;*/
/*grid-template-columns: auto minmax(354px, 610px);*/
/*align-items: center;*/
/*grid-gap: 0 60px;*/
/*padding: 80px 0 80px 52px;*/
/*background: #F5F9FF;*/
/*border-radius: 20px;*/
/*}*/

/*.feature .block-info {*/
/*position: relative;*/
/*z-index: 1;*/
/*}*/

/*.feature .block-wrapper.inverse {*/
/*grid-template-columns: minmax(354px, 610px) auto;*/
/*padding: 80px 52px 80px 0;*/
/*}*/

/*.feature .inverse .block-info {*/
/*grid-column: 2;*/
/*}*/

/*.feature .inverse .block-content {*/
/*grid-column: 1;*/
/*grid-row: 1;*/
/*}*/

/*.feature .pre-title {*/
/*color: var(--regular);*/
/*margin-bottom: 24px;*/
/*font-size: 18px;*/
/*line-height: 20px;*/
/*}*/

/*.feature .title {*/
/*margin-bottom: 32px;*/
/*}*/

/*.feature .text {*/
/*margin-bottom: 40px;*/
/*}*/

/*.feature.with-list .title {*/
/*margin-bottom: 32px;*/
/*}*/

/*.feature.with-list .title-mobile {*/
/*display: none;*/
/*}*/

/*.feature.with-list .text {*/
/*margin-bottom: 0px;*/
/*}*/

/*.feature.with-list .list-one-column {*/
/*grid-gap: 32px 0;*/
/*margin-bottom: 32px;*/
/*}*/

/*.feature.with-list .list-item-icon-wrapper {*/
/*width: 28px;*/
/*height: 28px;*/
/*}*/

/*.feature.with-list .list-item-icon-wrapper img {*/
/*width: 21px;*/
/*height: 17px;*/
/*}*/

/*.feature.with-list .price-text {*/
/*margin-bottom: 42px;*/
/*}*/

/*.feature.with-list .price-text .text {*/
/*margin-left: 24px;*/
/*}*/

/* List four problems */

.list-four-problem {
    margin: 160px 0 120px;
}

.list-four-problem .title-h2 {
    margin-bottom: 40px;
}

.list-four-problem .list-two-columns {
    grid-gap: 40px;
}

.list-four-problem .list-item-with-icon {
    background: #F5F9FF;
    border-radius: 20px;
    padding: 24px 24px 32px 24px;
    grid-gap: 6px 20px;
}

.list-four-problem .list-item-icon-wrapper {
    width: 52px;
    height: 52px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15.6px rgba(0, 0, 0, 0.25);
}

.list-four-problem_numbering {
    counter-reset: i;
}

.list-four-problem_numbering .list-item-with-icon::before {
    content: counter(i);
    counter-increment: i;
    background: #268FF0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
}

.list-four-problem_numbering .list-item-with-icon {
    background: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(37, 137, 255, 0.1);
    border-radius: 20px;
}

.list-four-problem_numbering .list-item-with-icon-title {
    font-size: 24px;
    line-height: 28px;
}

/* Slogan with stat */

.slogan-with-stat {
    margin: 120px 0 80px;
    padding: 64px 0;
}

.slogan-with-stat .title-h2 {
    margin-bottom: 40px;
}

.slogan-with-stat .stat-title {
    font-size: 36px;
    line-height: 40px;
    color: var(--main);
    margin-bottom: 20px;
}

/* Consulatation */

.consultation {
    margin: 117px 0 124px;
}

.consultation .block-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 52px 80px;
    background: #F5F9FF;
    border-radius: 12px;
    position: relative;
    z-index: 3;
}

.consultation .block-info .title-h3 {
    margin-bottom: 16px;
}

.consultation .block-info .text {
    margin-bottom: 24px;
}

.consultation .block-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consultation .block-content .img-wrapper {
    margin-bottom: 20px;
}

.consultation .block-content .title-h4 {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 28px;
    white-space: nowrap;
}

/* Stages */

.stages {
    margin: 163px 0 124px;
}

.stages .block-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.stages .side-block {
    display: flex;
    padding: 22px 24px;
    background: #F5F9FF;
    border-radius: 12px;
    align-items: baseline;
}

.stages .side-block-text {
    margin-left: 4px;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.stages .progress-line-stage-count {
    margin-bottom: 32px;
}

.stages .stage-item:nth-last-child(1) .progress-line-stage-count {
    background: #49DEA8;
}

.stages .list-three-columns {
    grid-gap: 48px;
}

.stages .stage-item {
    display: grid;
    grid-template-rows: auto auto minmax(20px, 1fr);
    position: relative;
}

.stages .stage-item-title {
    margin-bottom: 24px;
}

/* Profit */

.profit {
    margin: 160px 0 80px;
}

.profit .title-h2 {
    margin-bottom: 40px;
}

.profit .list-three-columns {
    grid-gap: 48px;
}

.profit .profit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: #F5F9FF;
    border-radius: 12px;
    padding: 48px 32px 32px;
}

.profit .list-item-icon-wrapper {
    border-radius: 27.5px;
    padding: 30px;
    background: black;
    margin-bottom: 32px;
}

.profit .profit-item:nth-child(1) .list-item-icon-wrapper {
    background: #2589FF;
    box-shadow: 0px 0px 11px rgba(37, 137, 255, 0.5);
}

.profit .profit-item:nth-child(2) .list-item-icon-wrapper {
    background: #49DEA8;
    box-shadow: 0px 0px 11px rgba(73, 222, 168, 0.5);
}

.profit .profit-item:nth-child(3) .list-item-icon-wrapper {
    background: #FF7425;
    box-shadow: 0px 0px 11px rgba(255, 116, 37, 0.5);
}

/* advantages */
.advantages {
    background: #F5F9FF;
    padding: 48px 80px;
}

.advantages__item {
    flex: 1;
    padding-right: 18px;
}

.advantages__item:nth-child(odd) {
    margin-right: 60px;
}

.advantages__image {
    margin-right: 32px;
    min-width: fit-content;
}

.advantages__title {
    margin-bottom: 40px;
}

.advantages__content .title-h4 {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 28px;
}

/* payback-period */
.payback-period {
    background: #2589FF;
    position: relative;
    z-index: 3;
}

.payback-period .block-wrapper {
    background: url('../../img/ru/features/audit-seo/payback-bg.png') no-repeat calc(100% + 47px) 0;
    background-size: contain;
    padding: 42px 0;
}

.payback-period__item:not(:last-child) {
    margin-right: 100px;
}

.payback-period__title {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 62px;
    font-weight: 600;
    line-height: 68px;
    letter-spacing: -0.01em;
}

.payback-period__text {
    color: var(--white);
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
}


/* audit */
.audit {
    background: #EFF6FF;
    padding: 64px 32px;
}

.audit__title {
    margin-bottom: 40px;
}

.audit__items {
    display: flex;
}

.audit__item {
    background: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(134, 134, 134, 0.05);
    border-radius: 12px;
    padding: 40px 16px 0;
    flex-direction: column;
    flex: 1;
}

.audit__item:not(:nth-child(3n)) {
    margin-right: 47.5px;
}

.audit__item .title-h4 {
    color: #0069E5;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.audit__item .text {
    margin-bottom: 25px;
}

.audit__item img {
    margin-top: auto;
}

.audit__item:last-child img {
    margin-bottom: 22px;
}

.other-services {
    margin-bottom: 0;
}

.other-services .content-wrapper {
    padding-top: 23px;
    padding-bottom: 118px;
    padding-left: 14px;
    background: linear-gradient(180deg, #D6E8FF 0%, #2589FF 100%) 21px 35px no-repeat;
    background-size: 4px 100%;
}

.other-services .block-content {
    align-items: flex-start;
}

.other-services .list-one-column {
    grid-gap: 40px 0;
}

.other-services .block-info *:last-child {
    margin-bottom: 20px;
}


/*Media*/

@media screen and (max-width: 1350px) {
    .content-block-container {
        padding: 0 32px;
    }

    .header-navigation {
        padding: 14px 32px;
        left: 0;
        transform: none;
    }

    /* Heading */
    .heading {
        margin: 110px 0 80px;
    }

    .heading .block-info {
        max-width: 464px;
    }

    .heading .title-h2 {
        margin-bottom: 20px;
        font-size: 38px;
        line-height: 44px;
    }

    .heading .text {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 24px;
    }

    .inline-form {
        width: 400px;
    }

    /* List four item */
    .list-four-item .title-h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .list-four-item .list-two-columns {
        grid-gap: 28px 32px;
    }

    .list-four-item .title-h4 {
        font-size: 18px;
        line-height: 20px
    }

    .list-four-item .text {
        font-size: 16px;
        line-height: 24px;
    }

    /* Two columns features*/
    .two-columns-features .title-h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .two-columns-features .list-two-columns {
        grid-gap: 32px;
    }

    .two-columns-features .list-item-with-icon {
        grid-gap: 10px 16px;
    }

    .two-columns-features .title-h4 {
        font-size: 24px;
        line-height: 28px;
    }

    .two-columns-features .link-icon-wrapper img {
        height: 15px;
    }

    .two-columns-features .text {
        font-size: 13px;
        line-height: 16px;
    }

    .two-columns-features .register-button {
        padding: 16px 24px;
        font-size: 16px;
        line-height: 24px;
    }

    /* Integrations cards */
    .integration-cards {
        margin: 116px 0 48px;
    }

    .integration-cards .title-h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .integration-cards .integration-cards-wrapper {
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 16px;
        margin-bottom: 32px;
    }

    .integration-cards .integration-card {
        box-shadow: 0px 0px 8px rgba(209, 209, 209, 0.5);
        border-radius: 16px;
    }

    .integration-cards .integration-card:nth-last-child(-n+3) {
        display: none;
    }

    /* Deal */
    .deal {
        margin: 48px 0 120px;
    }

    .deal .block-wrapper {
        padding: 32px;
    }

    .deal .title-h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .deal .text {
        font-size: 16px;
        line-height: 24px;
    }

    /* Cases */
    .cases {
        margin: 120px 0;
    }

    .cases .list-with-three-column {
        grid-column-gap: 24px;
        margin-bottom: 32px;
    }

    .cases .case-card {
        padding: 48px 44px;
    }

    .cases .case-card-pill {
        font-size: 28px;
        line-height: 36px;
    }

    .cases .case-card-accent-text {
        margin-bottom: 40px;
    }

    /* Feature cards */
    .roistat-features-cards {
        margin: 120px 0;
    }

    .roistat-features-cards .title-h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .roistat-features-cards .feature-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr 1fr;
        grid-gap: 40px 45px;
        margin-bottom: 40px;
    }

    .roistat-features-cards .feature-card {
        padding: 28px;
        box-shadow: 0px 0px 3px rgba(160, 160, 160, 0.25), 0px 12px 24px rgba(136, 134, 154, 0.15);
        border-radius: 16px;
        display: grid;
        grid-template-rows: repeat(3, auto) minmax(20px, 1fr);
    }

    .roistat-features-cards .feature-card:nth-last-child(-n+2) {
        display: none;
    }

    .roistat-features-cards .feature-card-title {
        font-size: 24px;
        line-height: 28px;
    }

    .roistat-features-cards .feature-card-text {
        font-size: 16px;
        line-height: 24px;
    }

    /* List four light blue item */
    .list-four-light-blue-item {
        margin: 120px 0 144px;
    }

    .list-four-light-blue-item .title-h2 {
        margin-bottom: 20px;
        font-size: 38px;
        line-height: 44px;
    }

    .list-four-light-blue-item .list-two-columns {
        grid-gap: 32px;
    }

    .list-four-light-blue-item .list-item-with-icon {
        padding: 24px;
    }

    .list-four-light-blue-item .list-item-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        padding: 12px;
    }

    .list-four-light-blue-item .list-item-with-icon-title {
        font-size: 18px;
        line-height: 20px;
    }

    /* Image with list block */
    .img-with-list {
        margin: 144px 0 120px;
    }

    .img-with-list .block-info *:last-child {
        margin-bottom: 32px;
    }

    .img-with-list .list-one-column {
        grid-gap: 32px 0;
    }

    .img-with-list .discount {
        font-size: 15px;
        line-height: 24px;
    }

    .img-with-list .colored-circle {
        margin-right: 13px;
    }

    .link-new {
        margin-left: 8px;
    }

    /* Feature block */
    /*.feature .block-wrapper {*/
    /*padding: 64px 0 64px 24px;*/
    /*grid-gap: 0 32px;*/
    /*}*/

    /*.feature .block-wrapper.inverse {*/
    /*padding: 64px 24px 64px 0;*/
    /*}*/

    /*.feature .pre-title {*/
    /*margin-bottom: 20px;*/
    /*}*/

    /*.feature .title {*/
    /*margin-bottom: 24px;*/
    /*font-size: 28px;*/
    /*line-height: 36px;*/
    /*}*/

    /*.feature .text {*/
    /*margin-bottom: 32px;*/
    /*font-size: 16px;*/
    /*line-height: 24px;*/
    /*}*/

    /*.feature.with-list .block-wrapper {*/
    /*grid-template-columns: 440px minmax(330px, 580px);*/
    /*}*/

    /*.feature.with-list.inverse .block-wrapper {*/
    /*grid-template-columns: minmax(330px, 580px) 440px;*/
    /*}*/

    /*.feature.with-list .title {*/
    /*font-size: 38px;*/
    /*line-height: 44px;*/
    /*}*/

    /*.feature.with-list .text {*/
    /*font-size: 16px;*/
    /*line-height: 24px;*/
    /*}*/

    /*.feature.with-list .list-one-column {*/
    /*grid-gap: 32px 0;*/
    /*margin-bottom: 32px;*/
    /*}*/

    /*.feature.with-list .list-item-with-icon {*/
    /*grid-gap: 0px 8px;*/
    /*}*/

    /*.feature.with-list .price-text {*/
    /*margin-bottom: 32px;*/
    /*}*/

    /*.feature.with-list .price-text .title-h4 {*/
    /*font-size: 24px;*/
    /*line-height: 28px;*/
    /*}*/

    /*.feature.with-list .price-text .text {*/
    /*margin-left: 24px;*/
    /*}*/

    /* List four problems 1350 */
    .list-four-problem {
        margin: 80px 0 120px;
    }

    .list-four-problem .title-h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .list-four-problem .list-two-columns {
        grid-gap: 32px;
    }

    .list-four-problem .list-item-with-icon {
        padding: 24px 24px 36px 24px;
        grid-gap: 4px 20px;
    }

    .list-four-problem .list-item-with-icon-title {
        font-size: 24px;
        line-height: 28px;
    }

    .list-four-problem .list-item-with-icon-text {
        font-size: 16px;
        line-height: 24px;
    }

    .list-four-problem_numbering .list-item-with-icon::before {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    /* Slogan with stat */
    .slogan-with-stat {
        margin: 120px 0 80px;
        padding: 48px 0;
    }

    .slogan-with-stat .title-h2 {
        margin-bottom: 32px;
        font-size: 38px;
        line-height: 44px;
    }

    .slogan-with-stat .list-three-columns {
        grid-gap: 40px;
    }

    .slogan-with-stat .stat-title {
        font-size: 28px;
        line-height: 36px;
    }

    .slogan-with-stat .stat-text {
        font-size: 16px;
        line-height: 24px;
    }

    /* Consulatation */
    .consultation {
        margin: 64px 0 120px;
    }

    .consultation .block-wrapper {
        padding: 32px;
        background: #F5F9FF;
        border-radius: 12px;
    }

    .consultation .block-info {
        max-width: 576px;
    }

    .consultation .block-info .title-h3 {
        font-size: 38px;
        line-height: 44px;
        letter-spacing: -0.01em;
    }

    .consultation .block-info .text {
        font-size: 16px;
        line-height: 24px;
    }

    .consultation .block-content .img-wrapper {
        margin-bottom: 24px;
    }

    .consultation .block-content .title-h4 {
        margin-bottom: 12px;
        font-size: 24px;
        line-height: 28px;
    }

    /* Stages */
    .stages {
        margin: 120px 0 136px;
    }

    .stages .block-info {
        margin-bottom: 26px;
    }

    .stages .title-h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .stages .side-block {
        padding: 16px 20px;
    }

    .stages .side-block-text {
        font-size: 20px;
        line-height: 24px;
    }

    .stages .list-three-columns {
        grid-gap: 39px;
        grid-template-columns: repeat(3, minmax(0, 294px));
    }

    .stages .stage-item-title {
        letter-spacing: -0.01em;
        margin-bottom: 24px;
        max-width: 250px;
    }

    .stages .stage-item-text {
        font-size: 16px;
        line-height: 24px;
    }

    /* Profit */
    .profit {
        margin: 136px 0 80px;
    }

    .profit .title-h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .profit .list-three-columns {
        grid-gap: 39px;
    }

    .profit .profit-item {
        padding: 48px 16px 32px;
    }

    .profit .list-item-icon-wrapper {
        margin-bottom: 24px;
    }

    .profit .text {
        font-size: 16px;
        line-height: 24px;
    }


    /* advantages 1350 */
    .advantages {
        padding: 48px 0;
    }

    .advantages__title {
        font-size: 38px;
        line-height: 44px;
        margin-bottom: 40px;
    }

    .advantages__item {
        padding-right: 0;
    }

    .advantages__item:nth-child(odd) {
        margin-right: 32px;
    }

    .advantages__image {
        margin-right: 24px;
        min-width: 108px;
    }

    .advantages__content .title-h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .advantages__content .text {
        font-size: 16px;
        line-height: 24px;
    }

    /* payback-period 1350 */
    .payback-period .block-wrapper {
        padding: 32px 59px;
        background-position: 100% 0;
    }

    .payback-period__title {
        font-size: 38px;
        line-height: 44px;

    }

    .payback-period__text {
        font-size: 13px;
        line-height: 16px;
    }

    .payback-period__item:not(:last-child) {
        margin-right: 51px;
    }

    /* audit 1350 */
    .audit {
        padding: 48px 0;
    }

    .audit__item .title-h4 {
        font-size: 24px;
        line-height: 28px;
    }

    .audit__item .text {
        font-size: 13px;
    }

    .audit__item:last-child img {
        width: 201px;
        margin-bottom: 15px;
    }

    /* other-services */
    .other-services {
        margin-bottom: 0;
    }

    .other-services .block-content {
        align-items: inherit;
    }

    .other-services .content-wrapper {
        padding-bottom: 80px;
        background-position: 8px 35px;
    }

    .other-services .title-h4 {
        font-size: 24px;
        line-height: 28px;
    }

    .other-services .text {
        font-size: 16px;
        line-height: 24px;
    }

    /* list-item-with-icon 1350 */
    .list-item-with-icon-text span {
        white-space: inherit;
    }

}

@media screen and (max-width: 1199px) {
    .title-h1 {
        font-size: 52px;
        line-height: 60px;
    }

    .title-h2 {
        font-size: 38px;
        line-height: 44px;
    }
}

@media screen and (max-width: 980px) {
    .title-h1 {
        font-size: 38px;
        line-height: 44px;
    }

    .title-h3 {
        font-size: 28px;
        line-height: 36px;
    }

    .title-h4 {
        font-size: 24px;
        line-height: 28px;
    }

    .text {
        font-size: 16px;
        line-height: 24px;
        text-align: left;
    }

    .content-block-container {
        padding: 0 20px;
    }

    /*Default settings(tablet)*/

    /* header-navigation */
    .header-navigation {
        padding: 14px 20px;
    }

    /* Heading */
    .heading {
        margin: 80px 0;
    }

    .heading .block-info {
        max-width: 400px;
    }

    /* List four item */
    .list-four-item {
        margin: 80px 0;
    }

    .list-four-item .list-two-columns {
        grid-template:
            'item'
            'item'
            'item'
            'item';
        grid-gap: 28px 0;
    }

    .list-four-item .list-item-with-icon {
        grid-gap: 12px 20px;
    }

    .list-four-item .title-h4 {
        font-size: 24px;
        line-height: 28px;
    }

    .list-four-item .list-item-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    /* Two columns features*/
    .two-columns-features {
        margin: 80px 0;
    }

    .two-columns-features .list-two-columns {
        grid-template-columns: auto;
        grid-gap: 24px 0;
    }

    .two-columns-features .list-item-with-icon {
        grid-gap: 10px 16px;
    }

    .two-columns-features .list-wrapper {
        margin-bottom: 40px;
    }

    .two-columns-features .register-button {
        padding: 14px 24px;
        font-size: 18px;
        line-height: 28px;
    }

    .two-columns-features .text {
        font-size: 16px;
        line-height: 24px;
    }

    /* Integrations cards */
    .integration-cards {
        margin: 80px 0 40px;
    }

    .integration-cards .integration-cards-wrapper {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-gap: 20px;
    }

    .integration-cards .integration-card:nth-last-child(3) {
        display: block;
    }

    /* Deal */
    .deal {
        margin: 40px 0 80px;
    }

    .deal .block-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 32px;
    }

    .deal .title-h3 {
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 28px;
    }

    .deal .text {
        font-size: 16px;
        line-height: 24px;
    }

    /* Cases */
    .cases {
        margin: 80px 0;
    }

    .cases .list-with-three-column {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
    }

    .cases .case-card:nth-last-child(1) {
        display: none;
    }

    .cases .case-card {
        padding: 48px 60px;
    }

    .cases .case-card-pill {
        font-size: 32px;
        line-height: 37px;
    }

    .cases .case-card-accent-text {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 32px;
    }

    /* Feature cards */
    .roistat-features-cards {
        margin: 80px 0;
    }

    .roistat-features-cards .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr 1fr 1fr;
        grid-gap: 20px 22px;
    }

    /* List four light blue item */
    .list-four-light-blue-item {
        margin: 80px 0;
    }

    .list-four-light-blue-item .list-two-columns {
        grid-gap: 32px 20px;
    }

    /* Image with list block 1350*/
    .img-with-list {
        margin: 80px 0;
    }

    .img-with-list .block-info *:last-child {
        margin-bottom: 42px;
    }

    .img-with-list .block-content {
        flex-direction: column;
        justify-content: center;
    }

    .img-with-list .img-wrapper {
        margin-bottom: 40px;
    }

    .img-with-list .content-wrapper {
        max-width: 100%;
    }

    .img-with-list .list-item-with-icon {
        grid-gap: 9px 8px;
    }

    .img-with-list .list-item-icon-wrapper:not(.colored-circle) {
        width: 32px;
        height: 32px;
    }

    .img-with-list .discount {
        font-size: 12px;
        line-height: 19px;
    }

    /* Feature block */
    /*.feature {*/
    /*margin: 32px 0;*/
    /*}*/

    /*.feature .block-wrapper {*/
    /*grid-template-columns: auto 354px;*/
    /*grid-gap: 0 20px;*/
    /*padding: 40px 0 40px 24px;*/
    /*}*/

    /*.feature .block-wrapper.inverse {*/
    /*grid-template-columns: 354px auto;*/
    /*padding: 40px 24px 40px 0;*/
    /*}*/

    /*.feature .title {*/
    /*margin-bottom: 32px;*/
    /*font-size: 24px;*/
    /*line-height: 28px;*/
    /*}*/

    /*.feature .text {*/
    /*margin-bottom: 32px;*/
    /*}*/

    /*.feature.with-list .block-wrapper {*/
    /*grid-template-columns: 335px minmax(330px, 580px);*/
    /*}*/

    /*.feature.with-list.inverse .block-wrapper {*/
    /*grid-template-columns: minmax(330px, 580px) 335px;*/
    /*}*/

    /*.feature.with-list .title {*/
    /*font-size: 28px;*/
    /*line-height: 40px;*/
    /*margin-bottom: 32px;*/
    /*}*/

    /*.feature.with-list .text {*/
    /*line-height: 22px;*/
    /*}*/

    /*.feature.with-list .list-one-column {*/
    /*grid-gap: 24px 0;*/
    /*margin-bottom: 24px;*/
    /*}*/

    /*.feature.with-list .list-item-with-icon {*/
    /*grid-gap: 0px 8px;*/
    /*}*/

    /*.feature.with-list .price-text .title-h4 {*/
    /*font-size: 23px;*/
    /*line-height: 36px;*/
    /*}*/

    /*.feature.with-list .price-text .text {*/
    /*margin-left: 24px;*/
    /*font-size: 16px;*/
    /*line-height: 28px;*/
    /*}*/

    /* List four problems */
    .list-four-problem {
        margin: 80px 0;
    }

    .list-four-problem .list-two-columns {
        grid-template-columns: 1fr;
        grid-gap: 20px 0;
    }

    .list-four-problem .list-item-with-icon {
        grid-gap: 4px 28px;
    }

    /* Slogan with stat */
    .slogan-with-stat {
        margin: 80px 0 60px;
        padding: 64px 0;
    }

    .slogan-with-stat .list-three-columns {
        grid-gap: 20px;
    }

    /* Consulatation */
    .consultation {
        margin: 80px 0 124px;
    }

    .consultation .block-wrapper {
        justify-content: center;
        padding: 40px 32px;
    }

    .consultation .block-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: none;
    }

    .consultation .block-info .title-h3 {
        max-width: 581px;
    }

    .consultation .block-info .register-button {
        width: 100%;
        padding: 14px 0;
    }

    .consultation .block-content {
        display: none;
    }

    /* Stages */
    .stages {
        margin: 80px 0;
    }

    .stages .list-three-columns {
        grid-gap: 16px;
        grid-template-columns: repeat(3, minmax(0, 232px));
    }

    .stages .stage-item-title {
        letter-spacing: 0;
        font-size: 24px;
        line-height: 28px;
        max-width: 200px;
    }

    /* Profit */
    .profit {
        margin: 80px 0;
    }

    .profit .list-three-columns {
        grid-gap: 16px;
    }

    .profit .profit-item {
        padding: 24px 12px 24px;
    }

    .profit .list-item-icon-wrapper {
        height: 94px;
        width: 94px;
        padding: 25px;
        border-radius: 23px;
        margin-bottom: 20px;
    }

    /* advantages 980 */
    .advantages {
        padding: 48px 0;
    }

    .advantages__items {
        display: block;
    }

    .advantages__item:not(:last-child) {
        margin-bottom: 40px;
    }

    .advantages__item:nth-child(odd) {
        margin-right: 0;
    }

    .advantages__image {
        min-width: 124px;
        width: 124px;
        margin-right: 32px;
    }

    .advantages__title {
        margin-bottom: 36px;
    }

    .advantages__content .title-h4 {
        font-size: 24px;
        line-height: 28px;
    }

    /* payback-period 980 */
    .payback-period {
        padding-left: 20px;
    }

    .payback-period .block-wrapper {
        background-position: 115% 0;
        padding: 32px 0;
    }

    .payback-period__title {
        font-size: 28px;
        margin-bottom: 4px;
        line-height: 36px;
    }

    .payback-period__item:not(:last-child) {
        margin-right: 32px;
    }

    /* audit 980 */
    .audit__title {
        margin-bottom: 32px;
    }

    .audit__items {
        display: block;
    }

    .audit__item {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 32px;
    }

    .audit__item:not(:nth-child(3n)) {
        margin-right: 0;
    }

    .audit__item:not(:last-child) {
        margin-bottom: 20px;
    }

    .audit__item .title-h4 {
        text-align: left;
    }

    .audit__item .text {
        text-align: left;
        max-width: 370px;
        margin-bottom: 0;
    }

    .audit__item .text br {
        display: none;
    }

    .audit__item img {
        width: 31.5%;
        margin-left: 10px;
    }

    .audit__item:first-child img {
        margin-top: 23px;
        width: 182px;
    }

    .audit__item:nth-child(2) img {
        margin-top: 35px;
    }

    .audit__item:last-child img {
        margin-bottom: 16px;
        margin-top: 12px;
        width: 184px;
    }

    /* other-services */
    .other-services {
        margin-bottom: 0;
    }

    .other-services .content-wrapper {
        padding-bottom: 56px;
    }

    .other-services .title-h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .other-services .text {
        font-size: 13px;
        line-height: 16px;
    }

}

/*Phone*/
@media screen and (max-width: 750px) {
    .img-with-list .block-info *:last-child {
        text-align: left;
    }

    .title-h1 {
        font-size: 52px;
        line-height: 68px;
    }

    .title-h2 {
        font-size: 28px;
        line-height: 32px;
        text-align: left;
    }

    .title-h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .title-h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .text {
        font-size: 16px;
        line-height: 24px;
    }

    .content-block-container {
        max-width: 100%;
        padding: 0 20px;
    }

    /*Default settings(mobile)*/

    /* Heading */
    .heading {
        margin: 60px 0;
    }

    .heading .block-info {
        max-width: 100%;
    }

    .heading .block-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .heading .block-info {
        margin-bottom: 40px;
    }

    .heading .title-h2 {
        margin-bottom: 28px;
        font-size: 28px;
        line-height: 32px;
    }

    .heading .text {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 24px;
    }

    /* List four item */
    .list-four-item {
        margin: 72px 0 60px;
    }

    .list-four-item .title-h2 {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 32px;
    }

    .list-four-item .list-two-columns {
        width: 100%;
        grid-gap: 32px 0;
    }

    .list-four-item .list-item-with-icon {
        grid-gap: 16px 12px;
    }

    .list-four-item .title-h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .list-four-item .list-item-icon-wrapper img {
        width: 20px;
    }

    /* Two columns features*/
    .two-columns-features {
        margin: 60px 0;
    }

    .two-columns-features .list-two-columns {
        grid-template-rows: auto;
    }

    .two-columns-features .title-h2 {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 32px;
        text-align: left;
    }

    .two-columns-features .list-wrapper {
        margin-bottom: 20px;
    }

    .two-columns-features .title-h4 {
        font-size: 24px;
        line-height: 28px;
    }

    .two-columns-features .text {
        font-size: 16px;
        line-height: 24px;
    }

    .two-columns-features .block-input {
        display: none;
    }

    /* Integrations cards */
    .integration-cards {
        margin: 60px 0 48px;
    }

    .integration-cards .title-h2 {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 32px;
    }

    .integration-cards .integration-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-gap: 16px;
        margin-bottom: 32px;
    }

    .integration-cards .integration-card {
        box-shadow: 0px 0px 8px rgba(209, 209, 209, 0.5);
        border-radius: 16px;
        padding: 7px 0;
    }

    .integration-cards .integration-card:nth-last-child(-n+8) {
        display: none;
    }

    /* Deal */
    .deal {
        margin: 40px 0 80px;
    }

    .deal .block-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 11px;
        text-align: center;
    }

    .deal .title-h3 {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }

    .deal .text {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    /* Cases */
    .cases {
        margin: 60px 0;
    }

    .cases .title-h2 {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 32px;
        text-align: left;
    }

    .cases .list-wrapper {
        width: auto;
    }

    .cases .list-with-three-column {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        grid-gap: 20px 0;
        margin-bottom: 24px;
        justify-items: center;
    }

    .cases .case-card {
        width: 100%;
        padding: 40px 24px;
    }

    .cases .case-card-text-small {
        margin-bottom: 32px;
    }

    .cases .case-card-accent-text {
        margin-bottom: 32px;
    }

    /* Feature cards */
    .roistat-features-cards {
        margin: 160px 0;
    }

    .roistat-features-cards .title-h2 {
        margin-bottom: 20px;
        text-align: center;
        font-size: 28px;
        line-height: 32px;
    }

    .roistat-features-cards .block-content {
        max-width: 280px;
        margin: 0 auto;
    }

    .roistat-features-cards .feature-cards {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        justify-content: center;
        grid-gap: 20px 0;
        margin-bottom: 0;
    }

    .roistat-features-cards .block-content>.link-new {
        display: none;
    }

    /* List four light blue item */
    .list-four-light-blue-item {
        margin: 60px 0;
    }

    .list-four-light-blue-item .title-h2 {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 32px;
    }

    .list-four-light-blue-item .subtitle-text {
        margin-bottom: 24px;
    }

    .list-four-light-blue-item .list-two-columns {
        grid-template-columns: 1fr;
        grid-gap: 16px 0;
    }

    .list-four-light-blue-item .list-item-with-icon {
        grid-gap: 0 20px;
    }

    .list-four-light-blue-item .list-item-with-icon {
        background: #F5F9FF;
        border-radius: 12px;
        padding: 24px;
    }

    .list-four-light-blue-item .list-item-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .list-four-light-blue-item .list-item-with-icon-title {
        font-size: 18px;
        line-height: 20px;
    }

    /* Image with list block */
    .img-with-list .title-h2 {
        margin-bottom: 24px;
    }

    .img-with-list .list-item-with-icon {
        grid-gap: 12px 8px;
    }

    .img-with-list .list-item-icon-wrapper:not(.colored-circle) {
        width: 40px;
        height: 40px;
    }

    .img-with-list .colored-circle {
        margin-right: 14px;
    }

    .link-new {
        margin-left: 4px;
    }

    p .link-new {
        margin-left: 0;
    }

    .link-new img {
        width: 12px;
    }

    /* List four problems */
    .list-four-problem:not(.list-four-problem_numbering) {
        display: none;
    }

    .list-four-problem .list-item-with-icon {
        display: block;
    }

    .list-four-problem .list-item-icon-wrapper {
        margin-bottom: 16px;
    }

    .list-four-problem .list-item-with-icon-title {
        margin-bottom: 12px;
    }

    .list-four-problem .title-h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .list-four-problem_numbering .list-item-with-icon::before {
        margin-bottom: 16px;
    }

    /* Slogan with stat */
    .slogan-with-stat {
        margin: 60px 0;
    }

    .slogan-with-stat .title-h2 {
        margin-bottom: 24px;
        font-size: 28px;
        line-height: 32px;
    }

    .slogan-with-stat .list-three-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slogan-with-stat .stat-title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 12px;
    }

    .slogan-with-stat .stat-text {
        font-size: 16px;
        line-height: 24px;
    }

    /* Consulatation */
    .consultation {
        margin: 60px 0;
    }

    .consultation .block-wrapper {
        justify-content: center;
        padding: 40px 12px;
    }

    .consultation .block-info .title-h3 {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 0;
    }

    .consultation .block-info .text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    /* Stages */
    .stages {
        margin: 60px 0;
    }

    .stages .block-info {
        margin-bottom: 22px;
        flex-direction: column;
        align-items: center;
    }

    .stages .title-h2 {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
        margin-bottom: 20px;
    }

    .stages .side-block {
        padding: 11px 16px;
    }

    .stages .side-block img {
        height: 16px;
        width: 16px;
    }

    .stages .side-block-text {
        font-size: 14px;
        line-height: 130%;
    }

    .stages .progress-line {
        display: none;
    }

    .stage-item-1::after {
        content: "";
        position: absolute;
        background: #2589FF;
        width: 2px;
        height: calc(100% + 5px);
        top: 31px;
        left: 15px;
    }

    .stage-item-2::after {
        content: "";
        position: absolute;
        width: 2px;
        height: calc(100% + 5px);
        top: 31px;
        left: 15px;
        background: linear-gradient(180deg, #2589FF 0%, #49DEA8 100%);
    }

    .stages .progress-line-stage-count {
        margin-bottom: 0;
        width: 32px;
        height: 32px;
    }

    .stages .list-three-columns {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .stages .stage-item {
        grid-template-rows: 1fr auto;
        grid-template-columns: auto 1fr;
        grid-gap: 4px 12px;
    }

    .stages .stage-item-title {
        margin-bottom: 0;
        max-width: none;
        font-size: 18px;
        line-height: 20px;
        align-self: center;
    }

    .stages .stage-item-text {
        grid-area: 2 / 2 / 3 / 3;
        font-size: 16px;
        line-height: 24px;
    }

    /* audit 750*/
    .audit__content {
        padding: 0 15px;
    }

    /* Profit */
    .profit {
        margin: 60px 0;
    }

    .profit .title-h2 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .profit .list-three-columns {
        grid-template-columns: 280px;
        justify-content: center;
        grid-gap: 20px;
    }

    .profit .profit-item {
        padding: 32px 12px 16px;
    }

    .profit .list-item-icon-wrapper {
        height: 72px;
        width: 72px;
        padding: 19px;
        border-radius: 18px;
        margin-bottom: 16px;
    }

    .profit .text {
        font-size: 16px;
        line-height: 24px;
    }

    /* payback-period 750 */
    .payback-period .block-wrapper {
        background: url('../../img/ru/features/audit-seo/payback-bg-mobile.png') no-repeat 100% 100%;
    }

}

@media screen and (max-width: 480px) {

    /* payback-period 480 */
    .payback-period__items {
        display: block;
    }

    .payback-period__item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .payback-period__text {
        max-width: 130px;
    }
}

@media screen and (max-width: 581px) {
    .roistat-lh-pulsator-phone {
        bottom: 100px !important;
        right: 20px !important;
    }

    .heading .inline-form button,
    .heading .inline-form .register-button {
        width: 100%;
    }

    .inline-form .register-button {
        position: relative;
        top: 0;
        right: 0;
    }

    .heading .inline-form.validation-failed .inline-form-input {
        margin-bottom: 20px;
        transition: .3s linear all;
        border-color: var(--red);
    }

    .inline-form-input {
        height: 52px;
        line-height: 52px;
        padding: 0 16px;
    }

    .heading .block-input {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .heading .inline-form {
        width: 280px;
        padding: 0;
        border: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .heading .inline-form-input {
        box-sizing: border-box;
        width: 100%;
        margin: 0 0 12px 0;
        padding: 14px 12px;
        border: 1px solid var(--main);
        border-radius: 6px;
        transition: .3s linear all;
    }

    .heading .block-input .text {
        margin-bottom: 12px;
    }

    /* audit 581 */
    .audit__item {
        flex-direction: column;
        padding: 32px 16px 0;
    }

    .audit__item .title-h4 {
        text-align: left;
    }

    .audit__item .text {
        text-align: left;
        max-width: 100%;
        font-size: 16px;
    }

    .audit__item img {
        margin: auto;
        width: auto;
        max-width: 256px;
    }

    .audit__item:nth-child(2) img {
        margin-top: 24px;
    }

    .audit__item:last-child img {
        margin-top: 24px;
        margin-bottom: 20px;
    }


    .list-four-item .title-h2 {
        text-align: left;
    }

    .deal .block-wrapper {
        align-items: flex-start;
    }
}

@media screen and (max-width: 425px) {
    .register-button {
        padding: 14px 0;
        width: 100%;
    }

    /* Simple register */
    .simple-register .inline-form {
        padding: 0;
        border: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: inherit;
    }

    .simple-register .inline-form-input {
        box-sizing: border-box;
        width: 100%;
        margin: 0 0 12px 0;
        padding: 14px 12px;
        border: 1px solid var(--main);
        border-radius: 6px;
        transition: .3s linear all;
    }

    .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 rgba(55, 56, 60, 0.25);
    }

    .simple-register .arrow-tail {
        fill: var(--main);
    }

    .simple-register .inline-form.validation-failed .inline-form-input {
        margin-bottom: 22px;
        transition: .3s linear all;
    }

    /* img-with-list */
    .img-with-list .discount {
        margin-left: 0;
    }

    /* advantages 425 */
    .advantages {
        padding: 40px 0;
    }

    .advantages__title {
        margin-bottom: 24px;
        text-align: left;
    }

    .advantages__item {
        display: block;
    }

    .advantages__item:not(:last-child) {
        margin-bottom: 28px;
    }

    .advantages__image {
        min-width: 0;
        width: 80px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .advantages__content .title-h4 {
        margin-bottom: 16px;
        font-size: 18px;
    }
}



.button-under-section {
    margin: 64px 0 120px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 980px) {
    .button-under-section {
        margin: 48px 0 80px 0;
    }
}

@media screen and (max-width: 750px) {
    .button-under-section {
        margin: 32px 0 60px 0;
    }
}

@media screen and (max-width: 581px) {
    .button-under-section {
        display: none;
    }
}

.footer {
    position: relative;
    z-index: 3;
    background: #fff;
}

.text-nobr {
    white-space: nowrap;
}

.advantages-cards {
    margin: 100px 0 120px;
}

@media screen and (max-width: 1350px) {
    .advantages-cards {
        margin: 80px 0 100px;
    }

}

@media screen and (max-width: 980px) {
    .advantages-cards {
        margin: 60px 0 80px;
    }
}

@media screen and (max-width: 750px) {
    .advantages-cards {
        margin: 80px 0;
    }
}



.economy .error-message {
    bottom: -24px;
    left: 15px;
}

.economy .validation-failed .inline-form-input.text {
    color: var(--red);
}

.only-title-subtitle {
    margin: 120px 0 40px;
}

.only-title-subtitle .title-h2 {
    margin-bottom: 24px;
}

.only-title-subtitle .text {
    max-width: 755px;
    margin: 0 auto;
}

.only-title-subtitle p {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #808899;
}

.only-title-subtitle_pre-slider p {
    max-width: 980px;
    margin: auto;
}

@media screen and (max-width: 1350px) {
    .only-title-subtitle .title-h2 {
        margin-bottom: 20px;
    }

    .only-title-subtitle {
        margin: 100px 0 40px;
    }
}

@media screen and (max-width: 980px) {
    .only-title-subtitle {
        margin: 80px 0 40px;
    }

    .only-title-subtitle p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 750px) {
    .only-title-subtitle {
        margin: 60px 0 32px;
    }

    .only-title-subtitle .text {
        text-align: left;
    }

    .only-title-subtitle p {
        text-align: left;
    }
}

@media screen and (max-width: 581px) {
    .economy .error-message {
        text-align: unset;
        width: unset;
        top: 60px;
        bottom: unset;
        left: 0;
    }

    .economy .validation-failed .inline-form-input.text {
        color: var(--header);
        border-color: red;
    }

    .economy .validation-failed .register-button {
        top: 8px;
    }
}

/* Video Play Button */
.play-btn {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    display: block;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 2rem;
    height: 2.75rem;
    padding: 1.125rem 1.25rem 1.125rem 1.75rem;
    border-radius: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    display: block;
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 50%;
    background: #ffffff45;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.play-btn:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: block;
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    background: #5097ff7d;
    opacity: 0.9;
    -webkit-transition: all 200ms;
    transition: all 200ms;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.play-btn span {
    position: relative;
    display: block;
    z-index: 3;
    top: 0.375rem;
    left: 0.25rem;
    width: 0;
    height: 0;
    border-left: 1.625rem solid #fff;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* end of video play button */
.video {
    background-image: url(/img/bg/video-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
}

@media (max-width: 575.97px) {
    .video .play-btn {
        left: 75%;
    }
}

/* CSS для попап-контейнера */
.mfp-container {
    max-width: 800px;
    /* Максимальная ширина контейнера */
}

/* CSS для попап-содержимого */
.mfp-content {
    width: 100%;
    max-width: 800px;
    /* Максимальная ширина содержимого */
    margin: 0 auto;
    /* Центрирование содержимого по горизонтали */
}

/* CSS для попап-окна */
.mfp-inline-holder .mfp-content {
    vertical-align: middle;
    /* Выравнивание содержимого по вертикали */
}