.h1,.h1>h1 {
    font: 700 50px "Roboto", sans-serif;
    line-height: 59px;
    text-transform: uppercase;
    color: #000;
    margin: 35px 0 25px;
}
p.description {
    font: 400 30px "Roboto", sans-serif;
    line-height: 35px;
    color: #000;
    margin: 0 0 30px;
}
.btn_green.button_get_test {
    font: 700 20px "Roboto", sans-serif;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
    cursor:pointer;
}
img {
    max-width: 100%;
    width: 100%;
    height: auto;
}
.btn_green.button_get_test:hover, .btn_green.button_get_test:focus {
    background: #159a3c;
}
.welcome {
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    margin: -50px 0 0;
    min-height: 500px;
}
.welcome .row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    height: 100vh;
    min-height: 500px;
}
.solo_logo img {
    width: initial;
}
.welcome_image_block {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.animation_items {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: calc(100% - 10px);
    top: 3px;
    left: 0;
    z-index: -1;
}
.welcome_image_block .item {
    position: absolute;
    width: 105px;
}
.welcome_image_block .item:nth-of-type(1) {
    top: 40px;
    left: 67px;
    animation: 8s move 1 forwards linear, 15s move2 12s infinite linear;
    -webkit-animation: 8s move 1 forwards linear, 15s move2 12s infinite linear;
    -moz-animation: 8s move 1 forwards linear, 15s move2 12s infinite linear;
}
.welcome_image_block .item:nth-of-type(2) {
    top: 120px;
    left: 190px;
    animation: 10s move 1 forwards linear, 15s move2 10s infinite linear;
    -webkit-animation: 10s move 1 forwards linear, 15s move2 10s infinite linear;
    -moz-animation: 10s move 1 forwards linear, 15s move2 10s infinite linear;
}
.welcome_image_block .item:nth-of-type(3) {
    top: -20px;
    right: 67px;
    animation: 5s move 1 forwards linear, 15s move2 14s infinite linear;
    -webkit-animation: 5s move 1 forwards linear, 15s move2 14s infinite linear;
    -moz-animation: 5s move 1 forwards linear, 15s move2 14s infinite linear;
}
.welcome_image_block .item:nth-of-type(4) {
    top: calc(100% + 22px);
    right: 67px;
    animation: 18s move 1 forwards linear, 15s move2 22s infinite linear;
    -webkit-animation: 18s move 1 forwards linear, 15s move2 22s infinite linear;
    -moz-animation: 18s move 1 forwards linear, 15s move2 22s infinite linear;
}
.welcome_image_block .item:nth-of-type(5) {
    top: 250px;
    left: 67px;
    animation: 18s move 1 forwards linear, 15s move2 20s infinite linear;
    -webkit-animation: 18s move 1 forwards linear, 15s move2 20s infinite linear;
    -moz-animation: 18s move 1 forwards linear, 15s move2 20s infinite linear;
}
@keyframes move {
    to {
        top: -133px;
    }
}
@-webkit-keyframes move {
    to {
        top: -133px;
    }
}
@-moz-keyframes move {
    to {
        top: -133px;
    }
}
@-webkit-keyframes move2 {
    0% {
        top: 100%;
    }
    100% {
        top: -133px;
    }
}
@keyframes move2 {
    0% {
        top: 100%;
    }
   100% {
        top: -133px;
    }
}
@-moz-keyframes move2 {
    0% {
        top: 100%;
    }
    100% {
        top: -133px;
    }
}
.welcome_image_block .item .img_wrapper {
    height: 105px;
    width: 100%;
    background: #F8E342;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.welcome_image_block .item .img_wrapper img {
    max-width: 55px;
}
.welcome_image_block .item:nth-of-type(3) .img_wrapper img {
    max-width: 65px;
}
.welcome_image_block .item span {
    width: 100%;
    background: #F5F4F4;
    border-radius: 4px;
    font: 500 10px "Roboto", sans-serif;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #929292;
    margin: 10px 0 0;
}
.welcome_image_block .item span.plus {
    position: absolute;
    width: 15px;
    height: 15px;
    top: -5px;
    right: -5px;
    border-radius: 50%;
    background: #18BF49;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.welcome_image_block .item span.plus img {
    width: 9px;
}
.welcome .arrow_down {
    appearance: none;
    -moz-appearance: unset;
    -webkit-appearance: unset;
    -ms-progress-appearance: unset;
    display: block;
    width: 75px;
    border: none;
    background-color: transparent;
    flex-basis: 100%;
    position: absolute;
    bottom: 15vh;
    left: calc(50% - 45px);
    height: 41px;
    background-position: center;
    background-repeat: round;
    /*background-repeat-y: repeat;*/
    /*background-repeat-x: no-repeat;*/
    background-size: 80%;
    /*transform: translateX(-50%);*/
    transform-origin: 50% 50%;
    animation: jump 1s linear alternate infinite;
    z-index: 10;
}
body.modal-open.add_scroll .welcome .arrow_down {
    left: calc(50% - 53px);
}
@keyframes jump {
    0%   {transform: translate3d(0,0,0)}
    40%  {transform: translate3d(0,30%,0)}
    100% {transform: translate3d(0,100%,0)}
}
.advantages_info {
    background-color: #F8E342;
    padding: 150px 0 0;
    background-repeat: no-repeat;
    background-position: right top;
    margin: 0;
}
.advantages_info .row {
    display: flex;
}
.advantages_info .left_block {
    margin-right: 100px;
    width: calc(58.33333333% - 100px);
}
.advantages_info .row:nth-of-type(2) .left_block,
.advantages_info .row:nth-of-type(3) .left_block {
    margin-right: 0;
    margin-left: 100px;
}
.advantages_info .right_block {
    display: flex;
}
.advantages_info .row:nth-of-type(2) .right_block {
    text-align: right;
}
.advantages_info .text_arrow {
    font: 400 20px "Roboto", sans-serif;
    line-height: 29px;
    text-align: right;
    padding-right: 60px;
    display: block;
    margin: 0 0 7px;
    position: relative;
    color: rgba(0,0,0,0.8);
}
.advantages_info .text_arrow.second {
    padding-right: 0;
    padding-left: 60px;
    text-align: left;
}
.advantages_info .text_arrow img {
    position: absolute;
    max-width: 52px;
    right: -4px;
    top: 12px;
    opacity: .8;
}
.advantages_info .text_arrow.second img {
    left: -4px;
    transform: scale(-1, 1);
}
.viewing_wrapper {
    z-index: 1;
    border: 27px solid #000;
    border-radius: 27px;
    background: #000;
    height: 766px;
}
.viewing_wrapper > img {
    z-index: 1;
    pointer-events: auto;
}
.viewing_inner {
    max-height: 712px;
    border-radius: 8px;
    cursor: crosshair;
}
.viewing_inner img {
    border-radius: 8px;
    max-width: calc(100% - 13px);
}
.viewing_wrapper .os-host-overflow {
    overflow:visible!important;
}

.viewing_wrapper .os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle {
    background: rgba(0,0,0,0.8)!important;
    right: -46px!important;
    cursor: pointer;
}
.viewing_wrapper .viewing_inner.second.os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle {
    right: calc(100% + 36px)!important;
}
.viewing_wrapper .os-theme-dark>.os-scrollbar-vertical {
    padding: 0!important;
}
.viewing_wrapper .viewing_inner.second.os-theme-dark>.os-scrollbar-vertical {
    left: 0!important;
}
.viewing_wrapper .os-theme-dark>.os-scrollbar-horizontal {
    display: none;
}
.viewing_wrapper .os-content {
    border: none!important;
    margin-bottom: 0!important;
}
.viewing_wrapper .os-host-overflow>.os-padding {
    border-radius: 8px;
}
.viewing_wrapper .os-content-arrange {
    display: none;
}

.advantages_info ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    max-width: 100%;
}
.advantages_info .row:nth-of-type(3) ul {
    padding: 50px 0 0;
}
.advantages_info ul:before {
    content: '';
    width: 3px;
    height: 100%;
    background: #322d0d;
    position: absolute;
    top: 11px;
    left: -1px;
}
.advantages_info .row:nth-of-type(2) ul:before {
    left: unset;
    right: -1px;
    top: -1px;
}
.advantages_info .row:nth-of-type(3) ul:before {
    height: 117px;
    left: -102px;
    top: -1px;
}
.advantages_info ul li {
    padding-left: 70px;
    margin: 0 0 70px;
    position: relative;
}
.advantages_info .row:nth-of-type(2) ul li,
.advantages_info .right_last_block {
    padding-left: 0;
    padding-right: 70px;
}
.advantages_info .row:nth-of-type(3) ul li {
    padding: 0;
    margin: 0;
}
.advantages_info ul li:before {
    content: '';
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #322d0d;
    position: absolute;
    left: -5px;
    top: 11px;
}
.advantages_info .row:nth-of-type(2) ul li:before {
    left: unset;
    right: -5px;
}
.advantages_info .row:nth-of-type(3) ul li:before {
    right: unset;
    left: -106px;
    top: 65px;
}
.advantages_info ul li .title {
    display: block;
    color: #000;
    text-transform: uppercase;
    font: 700 36px "Roboto", sans-serif;
    line-height: 49px;
    margin: 0 0 10px;
}
.advantages_info ul li .title > span {
    color: #fff;
}
.advantages_info ul li p {
    font: 400 20px "Roboto", sans-serif;
    line-height: 23px;
    color: rgba(0,0,0,0.8);
}
.advantages_info .row:nth-of-type(3) .btn_green {
    margin: 30px 0;
}
.advantages_info .transition_line {
    width: 203px;
    display: block;
    margin: 0 auto;
    opacity: 0.8;
}
/*.advantages_info .right_last_block img {*/
/*    margin: 0 0 -68px;*/
/*}*/
.advantages_info .right_last_block .page_speed,
.advantages_info .right_last_block .gt_matrix {
    margin: 60px 0 25px;
    border: 3px solid #F8E342;
    border-radius: 20px;
    padding: 50px 40px 50px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}
.advantages_info .right_last_block .page_speed > div,
.advantages_info .right_last_block .gt_matrix > div {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.advantages_info .right_last_block .page_speed > img {
    width: 130px;
    margin-right: 40px;
}
.advantages_info .right_last_block .page_speed > div > img {
    width: inherit;
    margin: 20px 0 0;
}
.advantages_info .right_last_block .page_speed > div > span {
    border: 5px solid #18BF49;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    color: #000;
    font: 500 30px "Roboto", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.advantages_info .right_last_block .page_speed:hover,
.advantages_info .right_last_block .gt_matrix:hover {
    text-decoration: none;
}
.advantages_info .right_last_block .page_speed > div > span:before {
    content: '';
    position: absolute;
    /*width: 15px;*/
    /*height: 24px;*/
    /*left: 17%;*/
    /*top: -16px;*/
    background: #fff;
    /*transform: rotate(-32deg) skew(-32deg, 70deg);*/

    width: 10px;
    height: 30px;
    left: 38%;
    top: -24px;
    transform: skew(0, 45deg);
}
.advantages_info .right_last_block .page_speed > div:nth-of-type(2) > span:before {
    content: none;
    /*width: 10px;*/
    /*height: 30px;*/
    /*left: 38%;*/
    /*top: -24px;*/
    /*transform: skew(0, 45deg);*/
}
.advantages_info .right_last_block .gt_matrix {
    margin: 0 0 -68px;
    padding: 55px 5px 50px 25px;
}
.advantages_info .right_last_block .gt_matrix > img {
    width: initial;
    margin-right: 45px;
}
.advantages_info .right_last_block .gt_matrix > div {
    font: 400 10px "Roboto", sans-serif;
    color: #000;
    line-height: 12px;
    padding: 0 20px;
    position: relative;
    border-left: 1px solid #E0E0E0;
}
.advantages_info .right_last_block .gt_matrix > div:before {

}
.advantages_info .right_last_block .gt_matrix > div > span {
    font: 500 20px "Roboto", sans-serif;
    color: #18BF49;
    line-height: 23px;
}
.advantages_info .right_last_block .gt_matrix > div:nth-of-type(2) > span {
    color: #18BF49;
}

.capabilities {
    padding: 125px 15px 0;
}
.advantages_page .capabilities:nth-child(5) {
    padding: 0 15px;
}
.capabilities .row {
    margin-top: 180px;
}
.advantages_page .capabilities:nth-child(5) .row:nth-child(1) {
    margin-top: 80px;
}
.capabilities .row .h2 {
    font: 700 50px "Roboto", sans-serif;
    line-height: 50px;
    color: #000;
    text-align: right;
    margin: 0 0 20px;
    text-transform: uppercase;
}
.capabilities .row:nth-of-type(even) .h2 {
    text-align: left;
}
.capabilities .row p {
    font: 400 20px "Roboto", sans-serif;
    line-height: 23px;
    color: #000;
    text-align: right;
    margin: 0 0 10px;
}
.capabilities .row:nth-of-type(even) p {
    text-align: left;
}
.capabilities p.description {
    font: 700 30px "Roboto", sans-serif;
    line-height: 28px;
    color: #18BF49;
    margin: 0 0 20px;
}
.capabilities p.bold {
    font: 700 20px "Roboto", sans-serif;
    line-height: 23px;
    margin: 20px 0 0;
}
.capabilities .row > div:first-of-type {
    padding: 0 70px 0 0;
}
.capabilities .row > div:last-of-type {
    padding: 0 0 0 70px;
}
.advantages_info + .capabilities .row > div:last-of-type {
    padding: 50px 0 0 70px;
}

.transition_block {
    width: 100%;
    height: 1200px;
    overflow: visible;
    padding: 200px 0 300px;
}
.transition_block .transition_row {
    margin: 0 -10px;
    /*width: 1920px;*/
    width: 3285px;
    padding: 0 0 30px;
    /*transform: rotate(-17.3deg) translateX(-135px);*/
    transform: rotate(-17.3deg) translateX(-850px);
    float: left;
    animation: shake1 31s linear alternate infinite;
    top: -200px;
    position: relative;
}

.transition_block .transition_row:nth-of-type(2) {
    width: 2740px;
    transform: rotate(-17.3deg) translateX(-150px);
    animation: shake2 12s linear alternate infinite;
    top: -113px;
}

.transition_block .transition_row:nth-of-type(3) {
    width: 2740px;
    transform: rotate(-17.3deg) translateX(-450px);
    animation: shake3 12s linear alternate infinite;
    top: -111px;
}
.transition_block .item {
    width: 527px;
    height: 256px;
    background: rgba(248, 227, 66, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    float: left;
    margin: 0 10px;
    display: flex;
    flex-direction: column;

}
.transition_block .item.dim {
    align-items: flex-start;
    justify-content: flex-end;
}
.transition_block .item.saturated {
    background: #F8E342;
    justify-content: space-between;
}
.transition_block .item.border {
    justify-content: space-between;
    background: #fff;
    border: 7px solid #18BF49;
    position: relative;
}
.transition_block .item.dim span {
    font: 400 25px "Roboto", sans-serif;
    line-height: 29px;
    letter-spacing: 0.045em;
    color: #000;
}
.transition_block .item img {
    max-width: 90px;
    margin: 0 0 10px;
}
.transition_block .item.saturated .h4,
.transition_block .item.border .h4 {
    font: 700 40px "Roboto", sans-serif;
    letter-spacing: 0.045em;
    color: #000;
    line-height: 106.5%;
    text-transform: uppercase;
    margin: 0;
}
.transition_block  .item.saturated span {
    align-self: flex-end;
    color: #000;
    font: 700 50px "Roboto", sans-serif;
    line-height: 29px;
}
.transition_block .transition_row:nth-of-type(2) .item.saturated span {
    background: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: block;
    text-align: center;
    line-height: 80px;
}
.transition_block  .item.saturated span > span {
    background: #fff;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
}
.transition_block .item.border span {
    background: #fff;
    padding: 5px;
    position: absolute;
    right: 60px;
    bottom: -40px;
}
.transition_block .item.border img {
    max-width: 50px;
}
@-webkit-keyframes shake1 {
    100% {
        -webkit-transform: rotate(-17.3deg) translateX(-150px);
    }
}
@keyframes shake1 {
    100% {
        transform: rotate(-17.3deg) translateX(-150px);
    }
}
@-webkit-keyframes shake2 {
    100% {
        -webkit-transform: rotate(-17.3deg) translateX(-450px);
    }
}
@keyframes shake2 {
    100% {
        transform: rotate(-17.3deg) translateX(-450px);
    }
}
@-webkit-keyframes shake3 {
    100% {
        -webkit-transform: rotate(-17.3deg) translateX(-150px);
    }
}
@keyframes shake3 {
    100% {
        transform: rotate(-17.3deg) translateX(-150px);
    }
}

.just_try {
    padding: 55px 0;
    background: #F8E342;
    margin: 150px 0 0;
    border: none;
    border-radius: 0;
}
.just_try.bottom {
    padding: 80px 0 115px;
    margin: 0;
}
.just_try > .container {
    text-align: center;
}
.just_try .h3 {
    font: 500 32px "Roboto", sans-serif;
    line-height: 99.69%;
    text-align: center;
    color: #000;
    margin: 0 0 25px;
}
.just_try .h2 {
    font: 700 48px "Roboto", sans-serif;
    line-height: 56px;
    margin: 0 auto 50px;
    color: #000;
    max-width: 80%;
}
.just_try .btn_green {
    margin: 0;
}
.just_try p {
    font: 400 32px "Roboto", sans-serif;
    line-height: 37px;
    margin: 50px auto 0;
    color: #000;
    max-width: 80%;
}
.advantages_page {
    overflow: hidden;
}
.advantages_page .comparison_chart {
    padding: 150px 0 0;
}
.advantages_page .comparison_chart .h2,
.advantages_page .benefits_templates .h2 {
    font: 700 70px "Roboto", sans-serif;
    line-height: 82px;
    color: #000;
    display: inline-block;
    position: relative;
    text-align: left;
}
.advantages_page .comparison_chart .h2 img {
    display: inline-block;
    max-width: 120px;
    position: absolute;
    right: -90px;
    top: -30px;
}
.advantages_page .comparison_chart p.description {
    margin: 0 0 110px;
}
.advantages_page .comparison_chart .flex_block {
    padding: 155px 0 20px 42px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-align: left;
}

.benefits_templates {
    /*padding: 195px 15px 120px;*/
    padding: 50px 15px 120px;
}
.benefits_templates .row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}
.benefits_templates .row > div {
    padding: 0 50px;
    margin: 0 0 80px;
}
.benefits_templates img {
    max-height: 123px;
    width: auto;
    display: block;
    text-align: left;
    margin: 0 0 30px;
}
.benefits_templates .title {
    display: block;
    text-align: left;
    font: 700 30px "Roboto", sans-serif;
    line-height: 35px;
    color: #000;
    height: 70px;
    margin: 0 0 10px;
}
.benefits_templates p {
    font: 400 15px "Roboto", sans-serif;
    line-height: 18px;
    color: #000;
}
.benefits_templates p.description {
    font: 400 30px "Roboto", sans-serif;
    line-height: 35px;
    margin: 0 0 80px;
}

.advantages_article {
    padding: 50px 0;
    font: 400 15px 'Roboto', sans-serif;
}
.advantages_article ul {
    padding-left: 20px;
}
.advantages_article li {
    list-style: disc;
}
.advantages_article_container {
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0;
}
.advantages_article_container:before{
    content: "";
    position: absolute;
    top: 0;
    box-shadow: inset white 0 15px 15px;
    width: 100%;
    height: 25px;
}
.advantages_article_container:after{
    content: "";
    position: absolute;
    bottom: 0;
    box-shadow: inset white 0 -15px 15px;
    width: 100%;
    height: 25px;
}
.scroll-seo-text {
    margin-top: 0;
    margin-bottom: 0;
    height: 250px;
    overflow-y: scroll;
    color: #777;
}
.scroll-seo-text *:last-of-type {
    margin-bottom: 20px;
}
.scroll-seo-text::-webkit-scrollbar { width: 5px; height: 15px;}
.scroll-seo-text::-webkit-scrollbar-button {  height: 0px;}
.scroll-seo-text::-webkit-scrollbar-track {  background-color: #b2b2b2;}
.scroll-seo-text::-webkit-scrollbar-track-piece { background-color: #ffffff;}
.scroll-seo-text::-webkit-scrollbar-thumb { height: 50px; background-color: #b2b2b2; border-radius: 3px;}
.scroll-seo-text::-webkit-scrollbar-corner { background-color: #b2b2b2;}
.scroll-seo-text::-webkit-resizer { background-color: #b2b2b2;}


.advantages_image_container {
    position: relative;
    height: 766px;
}
.advantages_image_container > div {
    position: relative;
    padding: 0 27px;
    margin: 34px 0 27px;
    height: 712px;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 10;
}
.advantages_image_container img {
    position: relative;
    max-width: calc(100% - 17px);
}
.advantages_image_container:before {
    content: '';
    position: absolute;
    width: calc(100% - 27px);
    top: -27px;
    left: 0;
    height: 100%;
    border: 27px solid #000;
    border-radius: 27px;
    background: #000;
}
.advantages_image_container > div::-webkit-scrollbar { width: 10px; height: 50%;}
.advantages_image_container > div::-webkit-scrollbar-button {  height: 0px;}
.advantages_image_container > div::-webkit-scrollbar-track {  background-color: transparent;}
.advantages_image_container > div::-webkit-scrollbar-track-piece { background-color: transparent;}
.advantages_image_container > div::-webkit-scrollbar-thumb { height: 55%; background-color: rgba(0,0,0,0.8); border-radius: 5px;}
.advantages_image_container > div::-webkit-scrollbar-corner { background-color: transparent;}
.advantages_image_container > div::-webkit-resizer { background-color: transparent;}
.advantages_image_container.second > div {
    direction: rtl;
}
.advantages_image_container.second img {
    direction:ltr;
    position: relative;
    max-width: calc(100% - 17px);
}
.advantages_image_container.second:before {
    left: auto;
    right: 0;
}

@media (max-width: 1199px) {
    .h1 {
        font: 700 42px "Roboto", sans-serif;
        line-height: 50px;
        margin: 25px 0 15px;
    }
    p.description {
        font: 400 28px "Roboto", sans-serif;
        line-height: 30px;
    }
    .btn_green.button_get_test {
        padding: 10px 20px;
    }
    .welcome .container {
        padding: 0 15px;
    }
    .advantages_info .left_block {
        padding-left: 15px;
    }
    .advantages_info .right_block {
        padding-right: 15px;
    }
    .advantages_info .row:nth-of-type(2) .left_block,
    .advantages_info .row:nth-of-type(3) .left_block {
        padding: 0 15px 0 0;
    }
    .advantages_info .row:nth-of-type(2) .right_block {
        padding: 0 0 0 15px;
    }
    .advantages_info .right_last_block {
        padding: 0 50px 0 15px;
    }

    .advantages_info .right_last_block .page_speed {
        margin: 60px 0 20px;
        padding: 50px 20px 50px 10px;
    }
    .advantages_info .right_last_block .page_speed > img,
    .advantages_info .right_last_block .gt_matrix > img {
        margin-right: 15px;
    }
    .advantages_info .right_last_block .page_speed > div > span {
        width: 60px;
        height: 60px;
        font: 500 24px "Roboto", sans-serif;
    }
    .advantages_info .right_last_block .page_speed > div > span:before {
        width: 7px;
        height: 19px;
        left: 28%;
        top: -14px;
        transform: rotate(-28deg) skew(-32deg, 70deg);
    }
    .advantages_info .right_last_block .page_speed > div:nth-of-type(2) > span:before {
        left: 39%;
        top: -21px;
        width: 6px;
    }
    .advantages_info .right_last_block .gt_matrix {
        margin: 0 0 -55px;
        padding: 45px 5px 40px 15px;
    }
    .advantages_info .right_last_block .gt_matrix > div {
        padding: 0 10px;
    }

    .advantages_info ul li {
        padding-left: 50px;
        margin: 0 0 50px;
    }
    .advantages_info .row:nth-of-type(2) ul li {
        padding-right: 50px;
    }
    .advantages_info ul li .title {
        font: 700 30px "Roboto", sans-serif;
        line-height: 38px;
    }
    .advantages_info ul li p {
        font: 400 18px "Roboto", sans-serif;
        line-height: 23px;
    }
    .advantages_info .transition_line {
        width: 169px;
    }
    .advantages_info .text_arrow {
        font: 400 16px "Roboto", sans-serif;
        margin: 0 0 44px;
    }
    .viewing_wrapper {
        height: 650px;
    }
    .viewing_inner {
        max-height: 596px;
    }
    .capabilities {
        padding: 0 15px;
    }
    .capabilities .row {
        display: flex;
        align-items: center;
    }
    .capabilities .row > div:first-of-type {
        padding: 0 50px 0 0;
    }
    .capabilities .row > div:last-of-type {
        padding: 0 0 0 50px;
    }
    .capabilities .row .h2 {
        font: 700 32px "Roboto", sans-serif;
        line-height: 32px;
        margin: 0 0 10px;
    }
    .capabilities .row p.description {
        font: 700 22px "Roboto", sans-serif;
        line-height: 28px;
        margin: 0 0 10px;
    }
    .capabilities .row p {
        font: 400 16px "Roboto", sans-serif;
        line-height: 23px;
        margin: 0 0 10px;
    }
    .capabilities .row p.bold {
        font: 700 16px "Roboto", sans-serif;
        line-height: 23px;
    }
    .transition_block {
        height: 800px;
        padding: 0 0 300px;
    }
    .transition_block .item {
        width: 400px;
        height: 183px;
    }
    .transition_block .item.saturated .h4, .transition_block .item.border .h4 {
        font: 700 28px "Roboto", sans-serif;
    }
    .transition_block .item.dim span {
        font: 400 20px "Roboto", sans-serif;
    }
    .transition_block .item img {
        max-width: 60px;
    }
    .transition_block .item.saturated span {
        font: 700 30px "Roboto", sans-serif;
    }
    .transition_block .item.saturated span > span {
        width: 20px;
        height: 20px;
    }
    .transition_block .transition_row:nth-of-type(2) .item.saturated span {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    .advantages_page .comparison_chart .h2, .advantages_page .benefits_templates .h2 {
        font: 700 50px "Roboto", sans-serif;
        margin: 0;
    }
    .advantages_page .comparison_chart p.description,
    .advantages_page .benefits_templates p.description,
    .just_try p {
        font: 400 22px "Roboto", sans-serif;
        line-height: 30px;
        margin: 0 0 70px;
    }
    .just_try p {
        margin: 50px auto 0;
    }
    .comparison_chart > .container {
        padding: 0 15px;
    }
    .benefits_templates .title {
        font: 700 24px "Roboto", sans-serif;
        line-height: 28px;
        height: 60px;
    }
    .benefits_templates .row {
        margin: 0 -15px;
    }
    .benefits_templates .row > div {
        padding: 0 15px;
        margin: 0 0 60px;
    }
    .benefits_templates img {
        max-height: 90px;
    }
    .advantages_image_container {
        height: 650px;
    }
    .advantages_image_container > div {
        height: 596px;
    }
}
@media (max-width: 991px) {
    .welcome {
        padding: 0;
        align-items: center;
        height: 900px;
        position: relative;
        margin: 0 0 0 0;
    }
    .welcome .row {
        flex-direction: column;
        justify-content: flex-start;
        height: 900px;
    }
    .welcome .row div {
        text-align: center;
    }
    .welcome .arrow_down {
        bottom: 110px;
    }
    .solo_logo img {
        display: block;
        margin: 0 auto;
    }
    .h1 {
        font: 700 36px "Roboto", sans-serif;
        line-height: 50px;
        text-align: center;
    }
    p.description {
        font: 400 24px "Roboto", sans-serif;
        text-align: center;
    }
    .welcome_image_block {
        max-width: 600px;
        margin: 5% auto 0;
    }
    .welcome_image_block .item {
        width: 125px;
    }
    .welcome_image_block .item:nth-of-type(1),
    .welcome_image_block .item:nth-of-type(5) {
        left: 85px;
    }
    .welcome_image_block .item:nth-of-type(2) {
        top: 70px;
        left: 237px;
    }
    .welcome_image_block .item:nth-of-type(3) {
        right: 85px;
    }
    .welcome_image_block .item:nth-of-type(4) {
        bottom: 38px;
        right: 85px;
    }
    .welcome_image_block .item .img_wrapper {
        height: 125px;
    }
    .advantages_info .row {
        margin: 0 -15px;
    }
    .advantages_info .left_block {
        margin-right: 50px;
        width: calc(58.33333333% - 50px);
    }
    .viewing_wrapper {
        height: 500px;
    }
    .viewing_inner {
        max-height: 446px;
    }
    .advantages_info .text_arrow {
        font: 500 13px "Roboto", sans-serif;
        margin: 0 0 54px;
        padding-right: 50px;
        top: 8px;
    }
    .advantages_info .text_arrow img {
        max-width: 46px;
        top: 8px;
    }
    .advantages_info .row:nth-of-type(2) .left_block,
    .advantages_info .row:nth-of-type(3) .left_block {
        margin-left: 50px;
    }
    .advantages_info .text_arrow.second {
        padding-left: 50px;
    }
    .advantages_info ul li {
        padding-left: 30px;
        margin: 0 0 30px;
    }
    .advantages_info ul li .title {
        font: 700 24px "Roboto", sans-serif;
        line-height: 26px;
    }
    .advantages_info ul li p {
        font: 400 16px "Roboto", sans-serif;
        line-height: 20px;
    }
    .advantages_info ul:before,
    .advantages_info ul li:before {
        top: 4px;
    }
    .advantages_info ul li:before {
        left: -6px;
    }
    .advantages_info .transition_line {
        width: 18%;
    }
    .advantages_info .row:nth-of-type(3) ul {
        padding: 30px 0 0;
    }
    .advantages_info .row:nth-of-type(3) ul:before {
        left: -52px;
    }
    .advantages_info .row:nth-of-type(3) ul li {
        margin: 0;
    }
    .advantages_info .row:nth-of-type(3) ul li:before {
        left: -56px;
    }
    .advantages_info .right_last_block .page_speed {
        margin: 30px 0;
        padding: 40px 20px 40px 5px;
    }
    .advantages_info .right_last_block .page_speed > img, .advantages_info .right_last_block .gt_matrix > img {
        margin-right: 5px;
        width: 40%;
    }
    .advantages_info .right_last_block .page_speed > div > span {
        width: 55px;
        height: 55px;
        font: 500 20px "Roboto", sans-serif;
    }
    .advantages_info .right_last_block .gt_matrix {
        padding: 40px 5px 35px 5px;
    }
    .advantages_info .right_last_block .gt_matrix > div > span {
        font: 500 16px "Roboto", sans-serif;
        line-height: 23px;
    }

    .capabilities .row {
        margin-top: 100px;
    }
    .capabilities .row:first-of-type {
        flex-direction: column-reverse;
    }
    .capabilities .row:last-of-type {
        flex-direction: column;
    }
    .capabilities .row > div:first-of-type,
    .capabilities .row > div:last-of-type,
    .advantages_info + .capabilities .row > div:last-of-type {
        padding: 0;
        text-align: center;
    }
    .capabilities img {
        max-width: 522px;
    }
    .capabilities .row .h2 {
        font: 700 24px "Roboto", sans-serif;
        line-height: 24px;
        margin: 40px 0 10px;
        text-align: left;
    }
    .capabilities .row p.description {
        font: 700 18px "Roboto", sans-serif;
        line-height: 18px;
        text-align: left;
    }
    .capabilities .row p,
    .capabilities .row p.bold {
        text-align: left;
    }
    .capabilities .row p {
        font: 400 14px "Roboto", sans-serif;
        line-height: 18px;
    }
    .capabilities .row p.bold {
        font: 700 14px "Roboto", sans-serif;
        line-height: 18px;
    }
    .transition_block .item {
        width: 300px;
        height: 150px;
    }
    .transition_block .item.dim span {
        font: 400 16px "Roboto", sans-serif;
    }
    .transition_block .item.saturated .h4, .transition_block .item.border .h4 {
        font: 700 22px "Roboto", sans-serif;
    }
    .advantages_page .comparison_chart .h2,
    .advantages_page .benefits_templates .h2,
    .advantages_page .just_try .h2 {
        font: 700 36px "Roboto", sans-serif;
        margin: 0 auto 15px;
        text-align: center;
    }
    .just_try.bottom {
        padding: 80px 0 100px;
    }
    .just_try p {
        font: 400 22px "Roboto", sans-serif;
        line-height: 28px;
        margin: 20px auto 0;
        max-width: 100%;
    }
    .advantages_page .comparison_chart {
        padding: 150px 0 0;
        text-align: center;
    }
    .advantages_page .comparison_chart .h2 img {
        max-width: 85px;
        right: -70px;
    }
    .benefits_templates {
        padding: 150px 15px 70px;
        text-align: center;
    }
    .benefits_templates .row > div {
        margin: 0 0 40px;
    }
    .benefits_templates img {
        text-align: center;
        margin: 0 auto 20px;
    }
    .benefits_templates .title {
        font: 700 18px "Roboto", sans-serif;
        line-height: 20px;
        height: 20px;
        text-align: center;
    }
    .benefits_templates .title {
        font: 700 18px "Roboto", sans-serif;
        line-height: 20px;
        height: 20px;
        text-align: center;
    }
    .benefits_templates p {
        font: 400 14px "Roboto", sans-serif;
        line-height: 18px;
    }
    .advantages_page .advantages_article {
        padding: 0 15px 0 15px;
    }
    .advantages_image_container {
        height: 500px;
    }
    .advantages_image_container > div {
        height: 446px;
    }
    .transition_block {
         height: 530px;
         padding: 20px 0 20px;
     }
    .transition_block .transition_row {
        width: max-content;
        padding: 0 0 20px;
        transform: rotate(0) translateX(-850px);
        animation: shake1 24s linear alternate infinite;
        top: 0;
    }
    .transition_block .transition_row:nth-of-type(2) {
        transform: rotate(0) translateX(-150px);
        animation: shake2 12s linear alternate infinite;
        top: 0;
    }
    .transition_block .transition_row:nth-of-type(3) {
        transform: rotate(0) translateX(-450px);
        animation: shake3 12s linear alternate infinite;
        top: 0;
    }
    @-webkit-keyframes shake1 {
        100% {
            -webkit-transform: rotate(0) translateX(-150px);
        }
    }
    @keyframes shake1 {
        100% {
            transform: rotate(0) translateX(-150px);
        }
    }
    @-webkit-keyframes shake2 {
        100% {
            -webkit-transform: rotate(0) translateX(-450px);
        }
    }
    @keyframes shake2 {
        100% {
            transform: rotate(0) translateX(-450px);
        }
    }
    @-webkit-keyframes shake3 {
        100% {
            -webkit-transform: rotate(0) translateX(-150px);
        }
    }
    @keyframes shake3 {
        100% {
            transform: rotate(0) translateX(-150px);
        }
    }
}
@media (max-width: 767px) {
    .h1 {
        font: 700 24px "Roboto", sans-serif;
        line-height: 30px;
    }
    p.description {
        font: 400 16px "Roboto", sans-serif;
        margin: 0 0 15px;
    }
    .btn_green.button_get_test {
        font: 700 14px "Roboto", sans-serif;
    }
    .welcome {
        margin: 0;
    }
    .welcome .row {
        justify-content: flex-start;
    }
    .welcome .solo_logo {
        margin: 5% 0 0;
    }
    .welcome_image_block {
        max-width: 345px;
        margin: 10% auto 0;
    }
    .welcome_image_block .item {
        width: 75px;
    }
    .welcome_image_block .item:nth-of-type(1),
    .welcome_image_block .item:nth-of-type(5) {
        left: 45px;
        top: 20px;
    }
    .welcome_image_block .item:nth-of-type(2) {
        top: 50px;
        left: 135px;
    }
    .welcome_image_block .item:nth-of-type(3) {
        right: 45px;
        top: -10px;
    }
    .welcome_image_block .item:nth-of-type(4) {
        bottom: 22px;
        right: 45px;
    }
    .welcome_image_block .item:nth-of-type(5) {
        top: 200px;
    }
    .welcome_image_block .item .img_wrapper {
        height: 75px;
    }
    .welcome_image_block .item .img_wrapper img {
        max-width: 40px;
    }
    .welcome_image_block .item:nth-of-type(3) .img_wrapper img {
        max-width: 42px;
    }
    .welcome_image_block .item span {
        font: 500 7px "Roboto", sans-serif;
    }
    .welcome .arrow_down {
        bottom: 110px;
    }
    .advantages_info {
        padding: 0;
        margin: 0 0 560px;
    }
    .advantages_info > .container {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 0!important;
        margin-top: 100px;
    }
    .advantages_info .row {
        flex-direction: column;
    }
    .advantages_info .row:nth-of-type(2) {
        flex-direction: column-reverse;
    }
    .advantages_info .left_block,
    .advantages_info .row:nth-of-type(2) .left_block {
        width: 100%;
        margin: 0;
        padding: 0 65px 0 40px;
    }
    .advantages_info .row:nth-of-type(1) .left_block {
        margin: -100px 0 0;
        padding: 0 40px 0 65px;
    }
    .advantages_info .right_block {
        width: 100%;
        margin: 0;
        padding: 0 40px 0 65px;
    }
    .advantages_info .row:nth-of-type(2) .right_block {
        padding: 0 65px 0 40px;
        text-align: right;
    }
    .viewing_wrapper {
        height: 315px;
        width: 240px;
        border: 10px solid #000;
        border-radius: 15px;
        float: right;
    }
    .advantages_info .row:nth-of-type(2) .viewing_wrapper {
        float: left;
    }
    .viewing_inner {
        max-height: 295px;
        overflow: hidden;
    }
    .viewing_inner img {
        max-width: 100%;
    }
    .advantages_info ul {
        margin: 25px 0 0;
    }
    .advantages_info ul:before {
        height: calc(100% + 240px);
        top: -240px;
        right: 0;
        width: 1px;
    }
    .advantages_info .row:nth-of-type(2) ul:before {
        height: calc(100% + 140px);
        top: -140px;
        right: 0;
        width: 1px;
    }
    .advantages_info .row:nth-of-type(2) .radius_line {
        display: block;
        width: calc(100% - 240px);
        height: 40px;
        position: relative;
        background: transparent;
        float: left;
        top: 168px;
        border-top: 1px solid #322d0d;
        border-right: 1px solid #322d0d;
        border-radius: 0 20px 0 0;
    }
    .advantages_info ul li {
        padding-left: 50px;
        margin: 0 0 30px;
    }
    .advantages_info ul li .title {
        font: 700 18px "Roboto", sans-serif;
        line-height: 22px;
    }
    .advantages_info ul li p {
        font: 400 14px "Roboto", sans-serif;
        line-height: 16px;
    }
    .advantages_info .row:nth-of-type(3) {
        margin: 0 -15px -560px;
    }
    .advantages_info .right_last_block {
        padding: 0 15px;
    }
    .advantages_info .right_last_block .page_speed {
        margin: 0 0 15px;
        border-top: none;
    }
    .advantages_info .right_last_block .page_speed > img,
    .advantages_info .right_last_block .gt_matrix > img {
        margin-right: 15px;
        width: 45%;
    }
    .advantages_info .right_last_block .gt_matrix > div {
        padding: 0 15px;
    }
    .advantages_info .right_last_block .gt_matrix > div > span {
        font: 500 20px "Roboto", sans-serif;
        line-height: 23px;
    }
    .advantages_info .row:nth-of-type(3) .left_block {
        padding: 0 15px;
        margin: 70px 0 0;
    }
    .advantages_info .row:nth-of-type(3) .left_block ul {
        background: #f8e342;
        border-radius: 20px;
        padding: 20px 20px 25px;
        margin: 0;
    }
    .advantages_info .row:nth-of-type(3) .left_block ul:before,
    .advantages_info .row:nth-of-type(3) .left_block ul li:before {
        content: unset;
    }
    .advantages_info .row:nth-of-type(3) .left_block img {
        max-width: 40px;
        margin: 0 0 15px;
    }
    .advantages_info .row:nth-of-type(3) ul li {
        margin: 0;
    }
    .advantages_info .row:nth-of-type(3) .btn_green {
        margin: 20px 0 0;
    }
    .capabilities .row {
        margin-top: 70px;
    }
    .just_try {
        margin: 100px 0 0;
    }
    .just_try .container {
        padding-top: 0!important;
    }
    .just_try .h3 {
        font: 500 22px "Roboto", sans-serif;
        line-height: 24px;
        margin: 0 0 15px;
    }
    .transition_block {
        height: 430px;
    }
    .transition_block .item {
        width: 250px;
        height: 115px;
    }
    .transition_block .item.dim span {
        font: 400 14px "Roboto", sans-serif;
    }
    .transition_block .item.saturated .h4, .transition_block .item.border .h4 {
        font: 700 16px "Roboto", sans-serif;
    }
    .transition_block .transition_row:nth-of-type(2) .item.saturated span {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
    .transition_block .item img {
        max-width: 55px;
    }
    .advantages_page .comparison_chart .h2,
    .advantages_page .benefits_templates .h2,
    .advantages_page .just_try .h2 {
        font: 700 24px "Roboto", sans-serif;
        margin: 0 auto 10px;
        max-width: 100%;
    }
    .advantages_page .just_try .h2 {
        margin: 0 auto 20px;
    }
    .just_try.bottom {
        padding: 50px 0 60px;
    }
    .advantages_page .comparison_chart {
        padding: 100px 0 0;
    }
    .advantages_page .comparison_chart .h2 img {
        max-width: 67px;
        right: -55px;
    }
    .advantages_page .comparison_chart p.description,
    .advantages_page .benefits_templates p.description,
    .just_try p {
        font: 400 16px "Roboto", sans-serif;
        line-height: 18px;
        margin: 0 0 30px;
        text-align: center;
    }
    .just_try p {
        margin: 20px auto 0;
    }
    .advantages_page .comparison_chart .flex_block {
        padding: 210px 0 20px 42px;
    }
    .advantages_page .cms_list {
        top: 0;
        left: 0;
    }
    .benefits_templates .title,
    .benefits_templates p {
        text-align: left;
    }
    .advantages_image_container {
        height: 315px;
        width: 240px;
        float: right;
    }
    .advantages_image_container > div {
        position: relative;
        padding: 0 10px;
        margin: 0 0 10px;
        height: 295px;
        overflow-y: scroll;
        overflow-x: hidden;
        z-index: 10;
    }
    .advantages_image_container img {
        position: relative;
        max-width: calc(100% - 5px);
    }
    .advantages_image_container:before {
        content: '';        position: absolute;
        width: calc(100% - 10px);
        top: -10px;
        left: 0;
        height: 100%;
        border: 10px solid #000;
        border-radius: 10px;
    }
    .advantages_image_container.second {
        float: left;
    }
    .advantages_image_container > div::-webkit-scrollbar { width: 5px; height: 50%;}
}
@media (max-width: 650px) {
    .advantages_page .comparison_chart .flex_block {
        padding: 210px 0 20px 0;
    }
    .cms_list li .time {
        color: #fff;
        padding: 4px 7px;
        font-size: 13px;
        border-radius: 3px;
        width: 38px;
        text-align: center;
    }
}
@media (max-width: 575px) {
    .transition_block .transition_row {
        padding: 0 0 10px;
    }
    .transition_block .item {
        margin: 0 5px;
        width: 186px;
        height: 92px;
        padding: 8px 10px;
    }
    .transition_block .item.border {
        border: 3px solid #18BF49;
    }
    .transition_block .item img {
        max-width: 40px;
        margin: 0 0 5px;
    }
    .transition_block .item.border img {
        max-width: 25px;
    }
    .transition_block .item.saturated span {
        font: 700 20px "Roboto", sans-serif;
    }
    .transition_block .item.saturated span > span {
        width: 10px;
        height: 10px;
    }
    .transition_block .transition_row:nth-of-type(2) .item.saturated span {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font: 700 25px "Roboto", sans-serif;
    }
    .transition_block .item.border span {
        right: 25px;
        bottom: -25px;
    }
    .transition_block {
         height: 350px;
     }
    .transition_block .transition_row {
        width: max-content;
        padding: 0 0 20px;
        transform: rotate(0) translateX(-550px);
        animation: shake1 24s linear alternate infinite;
        top: 0;
    }
    .transition_block .transition_row:nth-of-type(2) {
        transform: rotate(0) translateX(-150px);
        animation: shake2 12s linear alternate infinite;
        top: 0;
    }
    .transition_block .transition_row:nth-of-type(3) {
        transform: rotate(0) translateX(-350px);
        animation: shake3 12s linear alternate infinite;
        top: 0;
    }
    @-webkit-keyframes shake1 {
        100% {
            -webkit-transform: rotate(0) translateX(-150px);
        }
    }
    @keyframes shake1 {
        100% {
            transform: rotate(0) translateX(-150px);
        }
    }
    @-webkit-keyframes shake2 {
        100% {
            -webkit-transform: rotate(0) translateX(-350px);
        }
    }
    @keyframes shake2 {
        100% {
            transform: rotate(0) translateX(-350px);
        }
    }
    @-webkit-keyframes shake3 {
        100% {
            -webkit-transform: rotate(0) translateX(-100px);
        }
    }
    @keyframes shake3 {
        100% {
            transform: rotate(0) translateX(-100px);
        }
    }
}