@charset "UTF-8";

@font-face {
    font-family: OpenSans;
    src: url("../fonts/Open Sans Extrabold.woff") format("woff"),
        url("../fonts/Open Sans Extrabold.woff2") format("woff2");
    font-weight: 800;
    font-style: extrabold;
}

@font-face {
    font-family: OpenSans;
    src: url("../fonts/Open Sans Bold.woff") format("woff"),
        url("../fonts/Open Sans Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: OpenSans;
    src: url("../fonts/Open Sans SemiBold.woff") format("woff"),
        url("../fonts/Open Sans SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: bolder;
}

@font-face {
    font-family: OpenSans;
    src: url("../fonts/Open Sans Medium.woff") format("woff"),
        url("../fonts/Open Sans Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: medium;
}

@font-face {
    font-family: OpenSans;
    src: url("../fonts/Open Sans Regular.woff") format("woff"),
        url("../fonts/Open Sans Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: OpenSans;
    src: url("../fonts/Open Sans Light.woff") format("woff"),
        url("../fonts/Open Sans Light.woff2") format("woff2");
    font-weight: 300;
    font-style: lighter;
}

@font-face {
    font-family: OpenSans-CondBold;
    src: url("../fonts/OpenSans-CondBold.woff") format("woff"),
        url("../fonts/OpenSans-CondBold.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: OpenSans-CondLight;
    src: url("../fonts/OpenSans-CondLight.woff") format("woff"),
        url("../fonts/OpenSans-CondLight.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: exo2;
    src: url("../fonts/exo2-regular.woff") format("woff"),
        url("../fonts/exo2-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: exo2;
    src: url("../fonts/exo2-bold.woff") format("woff"),
        url("../fonts/exo2-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: bold;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "exo2", "OpenSans", Arial, Helvetica, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 40px;
}
body {
    --blue: #124095;
    --blue-darker: #002a84;
    --gradient-orange-1: #ff835b;
    --gradient-orange-2: #ff4f42;
    color: #333;
    --blue-gradient: linear-gradient(180deg, rgba(24,100,176,1) 0%, rgba(0,42,132,1) 100%);
}

body:not(.home) header {
    position: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    width: auto;
}

ul.not-style {
    list-style: none;
    padding: 0;
}

button {
    background: transparent;
    border: none;
}

.container {
    margin: 0 auto;
    max-width: 1140px;
}

.h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--blue);
}

.h1-desc {
    font-size: 20px;
    color: #fff;
    max-width: 440px;
    width: 100%;
    margin-top: 35px;
    padding-left: 20px;
    border-left: 2px solid var(--gradient-orange-2);
}

.h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--blue);
}

.title-desc {
    margin-bottom: 25px;
    padding-top: 15px;
    padding-bottom: 20px;
    font-size: 20px;
    color: #333;
    position: relative;
}

.title-desc::before {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #acacad;
    position: absolute;
    bottom: 0;
    left: 0;
}

.title-desc._default {
    margin: 0;
    padding: 0;
}

.title-desc._default::before {
    display: none;
}

.title-desc._not-line::before {
    display: none;
}

.btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 13px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-radius: 30px;
    cursor: pointer;
}

.btn.btn-orange {
    background-image: -o-linear-gradient(
        355deg,
        var(--gradient-orange-1) 0%,
        var(--gradient-orange-2) 50%
    );
    background-image: linear-gradient(
        95deg,
        var(--gradient-orange-1) 0%,
        var(--gradient-orange-2) 50%
    );
    background-size: 200%;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0 0 0px 2px transparent inset;
    box-shadow: 0 0 0px 2px transparent inset;
}

.btn.btn-orange:hover {
    background-position: 100% 0;
}

.btn.btn-transparent {
    background-image: -o-linear-gradient(
        355deg,
        var(--gradient-orange-1) 0%,
        var(--gradient-orange-2) 50%
    );
    background-image: linear-gradient(
        95deg,
        var(--gradient-orange-1) 0%,
        var(--gradient-orange-2) 50%
    );
    background-size: 150%;
    background-repeat: no-repeat;
    background-position: 300% 0;
    -webkit-box-shadow: 0 0 0px 2px var(--gradient-orange-2) inset;
    box-shadow: 0 0 0px 2px var(--gradient-orange-2) inset;
}

.btn.btn-transparent:hover {
    color: var(--gradient-orange-1);
}

.description {
    font-family: "OpenSans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
}

.orange-top-block {
    overflow: hidden;
    position: relative;
    background: #fff;
    border-top: 4px solid var(--gradient-orange-2);
    padding: 35px 40px;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    counter-reset: opli;
}

.swiper-btns-small .swiper-button-next:after,
.swiper-btns-small .swiper-button-prev:after {
    font-size: 20px;
}

.__text-center {
    text-align: center;
}

.__color-blue {
    color: var(--blue);
}

.__color-black {
    color: #333;
}

.__color-white {
    color: #fff;
}

.__color-orange {
    color: var(--gradient-orange-2);
}

.__under-line {
    position: relative;
}

.__under-line:before {
    content: "";
    display: block;
    width: 26px;
    height: 1px;
    background: #7F7F7F;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Main */

.home header {
    background: transparent;
}

header {
    padding: 30px 0;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--blue-darker);
}

header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header .logo {
    width: 180px;
}

header .nav-menu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    list-style: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .nav-menu > ul li a {
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

header .nav-menu > ul li a:hover {
    color: #ff7164;
}

header .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

header .btns button {
    color: #fff;
}
body.admin-bar header {
    top: 32px;
}
header .mob-menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* width: 75%; */
    z-index: 20;
}

header .btn-burger-open {
    display: none;
    width: 30px;
    height: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

header .btn-burger-open::before {
    content: "";
    display: block;
    width: 160px;
    height: 50px;
    border: 3px solid var(--gradient-orange-2);
    border-radius: 30px 0 0 30px;
    position: absolute;
    left: -20px;
}

header .btn-burger-open .btn-burger-open__line {
    --distance: 10px;
    --height: 4px;
    width: 100%;
    height: var(--height);
    background: #fff;
    position: relative;
}

header .btn-burger-open .btn-burger-open__line::before,
header .btn-burger-open .btn-burger-open__line::after {
    content: "";
    display: block;
    width: 100%;
    height: var(--height);
    background: #fff;
    position: absolute;
}

header .btn-burger-open .btn-burger-open__line::before {
    top: var(--distance);
}

header .btn-burger-open .btn-burger-open__line::after {
    bottom: var(--distance);
}

.btn-burger-close {
    width: 30px;
    height: 30px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.btn-burger-close::before,
.btn-burger-close::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
}

.btn-burger-close::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-burger-close::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn-burger-close.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

section.hero {
    background: center/cover no-repeat url("../img/hero.png");
    padding-top: 90pt;
    padding-bottom: 90pt;
    min-height: 40vh;
    max-height: 120vh;
    background-position: bottom center;
}
section.hero h1{
    color: #fff;
}
section.hero {
    color: #fff;
}
.hero h1 {
    margin-bottom: 0;
}
section.hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

section.hero .btn {
    margin-top: 40px;
    max-width: 310px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
}

section.what-is {
    position: relative;
    padding: 50px 0 0 0;
    margin-top: -80px;
}

section.what-is::before {
    content: "";
    display: block;
    width: 100%;
    height: 126%;
    background: center/cover no-repeat url("../img/whatis-bg.png");
    position: absolute;
    left: 0;
    top: -26%;
    z-index: -1;
}

section.what-is .what-is__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 30px;
}

section.what-is .what-is__wrapper .what-is__left {
    max-width: 520px;
    width: 100%;
}

section.what-is .what-is__wrapper .what-is__right {
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section.what-is .our-pluses {
    margin-top: 35px;
    padding-top: 60px;
}
.our-pluses .title-desc{
    margin-top: 0;
    padding-top: 0;
}
.our-pluses h2 {
    margin-bottom: 10px;
}
section.what-is .our-pluses__list {
    overflow: hidden;
    position: relative;
    background: #fff;
    border-top: 4px solid var(--gradient-orange-2);
    padding: 5px 40px;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    counter-reset: opli;
    z-index: 1;
}

section.what-is .our-pluses__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    counter-increment: opli;
}

section.what-is .our-pluses__item::before {
    content: counter(opli);
    display: block;
    font-size: 100px;
    font-weight: 700;
    opacity: 0.05;
    position: absolute;
    right: 0;
    top: 30px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.what-is .our-pluses__item:hover::before {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

section.what-is .our-pluses__item-img {
max-width: 60px;
    width: 100%;
    flex-shrink: 0;
    margin-right: 6px;
}

section.what-is .our-pluses__item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

section.what-is .our-pluses__item-desc {
    font-size: 14px;
    font-family: "OpenSans", Arial, Helvetica, sans-serif;
    color: #333;
}

.our-pluses-slider {
    overflow: hidden;
}

.our-pluses-slider .swiper-button-next:after,
.our-pluses-slider .swiper-button-prev:after {
    font-size: 30px;
}

section.results {
    background: center/cover no-repeat url("../img/res-bg.png");
    margin-top: -200px;
    padding-top: 280px;
    padding-bottom: 100px;
}
body.home section.results{
    padding-bottom: 190px;
}
section.results .results-slider {
    position: relative;
    overflow: hidden;
}

section.results .results-slider .swiper-button-next,
section.results .results-slider .swiper-button-prev {
    top: 44%;
    color: rgba(255, 255, 255, 0.7);
}

section.results .results-slider .swiper-button-next:after,
section.results .results-slider .swiper-button-prev:after {
    font-size: 20px;
}

section.results .results__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

section.results .results__left {
    width: 35%;
    padding-left: 70px;
}

section.results .results__left .counts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

section.results .results__left .counts .count {
    font-size: 38px;
    font-weight: 700;
    font-family: "exo2", Arial, Helvetica, sans-serif;
}

section.results .results__left .rises {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

section.results .results__left .rises .rise {
    font-size: 20px;
    font-weight: 700;
    font-family: "exo2", Arial, Helvetica, sans-serif;
}

section.results .results__right {
    width: 65%;
}

section.results .arrow-right {
    margin-right: -60px;
    margin-top: 7px;
    width: 100px;
    height: 6px;
    background: center/contain no-repeat url("../img/arrow-right.png");
}

section.software {
    padding: 80px 0 0;
    background: center/cover no-repeat url("../img/software-bg.png");
}

section.software .container {
    position: relative;
    padding-bottom: 50px;
}

section.software .software-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

section.software .software-left {
    width: 42%;
    padding-left: 70px;
}

section.software .software-right {
    width: 360px;
    height: 1026px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background: var(--blue-darker);
    position: absolute;
    right: 190px;
    bottom: 0;
    padding: 40px 50px;
}

section.software .software-right::before {
    content: "SEOCOMB";
    display: block;
    font-size: 130px;
    font-weight: 700;
    color: #fff;
    opacity: 0.05;
    position: absolute;
    bottom: 220px;
    left: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

section.software .software-right .desc-title {
    /* margin-bottom: 50px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section.software .software-right .desc-title p {
    margin-left: 20px;
    font-size: 20px;
    color: #fff;
}

section.software .software-right ul li span {
    display: inline-block;
    margin-bottom: 5px;
    color: #fff;
    padding-bottom: 5px;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.software .software-right ul li span:hover {
    color: var(--gradient-orange-1);
}

section.software .software-right ul li span::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(var(--gradient-orange-1)),
        to(var(--gradient-orange-2))
    );
    background: -o-linear-gradient(
        left,
        var(--gradient-orange-1),
        var(--gradient-orange-2)
    );
    background: linear-gradient(
        90deg,
        var(--gradient-orange-1),
        var(--gradient-orange-2)
    );
    position: absolute;
    bottom: 0;
    left: 0;
}

section.software .software-steps {
    z-index: 1;
    position: relative;
}

section.software .software-steps .container {
    padding-bottom: 0;
}

section.software .software-steps__item {
    position: relative;
    min-height: 212px;
}

section.software .software-steps__item::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    position: absolute;
    right: 20px;
    top: calc(50% - 25px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

section.software .software-steps__item:hover .software-steps__item-img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

section.software .software-steps__item-img {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.software .software-steps__item-desc {
    margin-top: 35px;
    padding-left: 20px;
    border-left: 2px solid var(--gradient-orange-2);
}

section.software .software-steps-slider {
    overflow: hidden;
}

section.software
    .software-steps-slider
    .swiper-slide:last-child
    .software-steps__item::before {
    display: none;
}

section.software .software-steps-slider .swiper-button-next:after,
section.software .software-steps-slider .swiper-button-prev:after {
    font-size: 30px;
}

section.ceo {
    margin-top: -140px;
    padding-top: 200px;
    padding-bottom: 180px;
    background: center bottom/cover no-repeat url("../img/ceo-bg.png");
}

section.ceo .ceo-polygon {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: none;
    background: #fff;
}

section.ceo .ceo-polygon img {
    -webkit-transform: scaleX(10);
    -ms-transform: scaleX(10);
    transform: scaleX(10);
    margin-top: -2px;
}

section.ceo h2{
    color: #fff;
}
.ceo-shortcode.ceo #kviz-form{
    padding: 200px 0 180px;
}
.ceo-shortcode.ceo{
    padding: 0;
}

.svg-figure{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
}
section.ceo .ceo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
    position: relative;
    z-index: 1;
}

section.ceo .ceo-wrapper .ceo-left {
    width: 40%;
}

section.ceo .ceo-wrapper .ceo-left .ceo-questions {
    width: 100%;
    min-height: 350px;
    border-radius: 10px;
    border: 15px solid black;
    -o-border-image: url("../img/ceo-border1.png") 4% stretch;
    border-image: url("../img/ceo-border1.png") 4% stretch;
    background: center/cover no-repeat url("../img/ceo-border-bg.png");
    color: #fff;
    padding: 20px 40px;
    overflow: hidden;
}

section.ceo .ceo-wrapper .ceo-left .ceo-questions__title {
    font-size: 20px;
    margin-bottom: 25px;
}

section.ceo .ceo-wrapper .ceo-left .ceo-questions__qtns-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 25px;
}

section.ceo .ceo-wrapper .ceo-left .ceo-questions__qtns-item label {
    padding-left: 35px;
    position: relative;
    cursor: pointer;
}

section.ceo .ceo-wrapper .ceo-left .ceo-questions__qtns-item label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
}

section.ceo .ceo-wrapper .ceo-left .ceo-questions__qtns-item label::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: var(--gradient-orange-2);
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 5px;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.ceo .ceo-wrapper .ceo-left .ceo-questions__qtns-item input {
    opacity: 0;
    position: absolute;
}

section.ceo
    .ceo-wrapper
    .ceo-left
    .ceo-questions__qtns-item
    input:checked
    + label::after {
    opacity: 1;
}

section.ceo .ceo-wrapper .ceo-left .ceo-pagination {
    padding-right: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    text-align: right;
}

section.ceo .ceo-wrapper .ceo-left .ceo-pagination > span {
    font-size: 1rem;
    margin-bottom: 8px;
}

section.ceo .ceo-wrapper .ceo-left .ceo-pagination .swiper-pagination {
    width: 100px;
    position: relative;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

section.ceo
    .ceo-wrapper
    .ceo-left
    .ceo-pagination
    .swiper-pagination
    .swiper-pagination-total {
    font-size: 0.7em;
    margin-bottom: 3px;
}

section.ceo .ceo-wrapper .ceo-right {
    width: 40%;
}

section.ceo .ceo-wrapper .ceo-right .title-desc {
    margin-bottom: 0;
    padding: 0 0 15px;
}

section.ceo .ceo-wrapper .ceo-right .h2 {
    padding-bottom: 30px;
    margin-bottom: 30px;
}

section.ceo .ceo-wrapper .ceo-right .btns {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

section.ceo .ceo-wrapper .ceo-right .btns .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

section.reviews {
    background: center/cover no-repeat url("../img/reviews-bg.png");
    padding-bottom: 310px;
    position: relative;
    background-size: auto;
}

section.reviews .container {
    z-index: 1;
    position: relative;
}
body:not(.home) section.reviews .orange-line{
    bottom: -200px;
}
body:not(.home) section.reviews{
    padding-bottom: 200px;
}
section.reviews .reviews-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 195px;
    padding-right: 80px;
}
.reviews-header h2{
    margin-bottom: 10px;
}
section.reviews .reviews-header .h2 {
    color: #333;
}

section.reviews .reviews-header .title-desc {
    color: #333;
    padding: 0;
    margin: 0;
}

section.reviews .reviews-header .all-reviews a {
    display: inline-block;
    text-decoration: none;
    color: #333;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 4px 0;
}

section.reviews .reviews-header .all-reviews a::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--blue-darker);
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.reviews .reviews-header .all-reviews a:hover {
    color: var(--gradient-orange-2);
}

section.reviews .reviews-header .all-reviews a:hover::before {
    background: var(--gradient-orange-2);
}

section.reviews .reviews-slider {
    padding: 20px 25px;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

section.reviews .reviews-slider .swiper-button-next {
    right: -8px;
}

section.reviews .reviews-slider .swiper-button-prev {
    left: -8px;
}

section.reviews .reviews-item {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.reviews .reviews-item:hover {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

section.reviews .reviews-item__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
}

section.reviews .reviews-item__img {
    min-width: 95px;
    min-height: 95px;
    border-radius: 50%;
    overflow: hidden;
}

section.reviews .reviews-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

section.reviews .reviews-item__name {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

section.reviews .reviews-item__prof {
    color: var(--blue-darker);
}

section.reviews .reviews-item__body {
    margin-top: 35px;
}

section.reviews .reviews-item__body p {
    font-size: 14px;
    font-family: "OpenSans", Arial, Helvetica, sans-serif;
    line-height: 140%;
    color: #333;
}

section.reviews .orange-line-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    -webkit-transform: translate(-35px, 170px);
    -ms-transform: translate(-35px, 170px);
    transform: translate(-35px, 170px);
}

section.reviews .orange-line {
    width: 360px;
    height: 1566px;
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#ffad6f),
        to(var(--gradient-orange-2))
    );
    background: -o-linear-gradient(bottom, #ffad6f, var(--gradient-orange-2));
    background: linear-gradient(0deg, #ffad6f, var(--gradient-orange-2));
    position: absolute;
    left: 155px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 75px;
    padding-bottom: 40px;
    overflow: hidden;
}

body.home section.reviews .orange-line::before{
    right: -578px;
}
section.reviews .orange-line::before {
    content: "SEOCOMBSEOCOMBSEOCOMB";
    display: block;
    font-size: 130px;
    font-weight: 700;
    color: #fff;
    opacity: 0.3;
    position: absolute;
    bottom: 830px;
    right: -720px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

section.reviews .reviews-bottom {
    position: absolute;
    bottom: -140px;
    left: 195px;
}

section.reviews .reviews-bottom .h2,
section.reviews .reviews-bottom .title-desc {
    z-index: -1;
    position: relative;
}
body:not(.home) section.reviews{
    padding-top: 50px;
}
section.logos {
    padding-bottom: 130px;
    background: center bottom/cover no-repeat url("../img/logos-bg.jpeg");
    position: relative;
}

section.logos .logos-list {
    min-width: 100%;
    min-height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

section.logos .logos-list .logos-slider {
    width: 100%;
}

section.logos .logos-list .logos-slider .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section.logos .logos-list .logos-slider .swiper-button-prev,
section.logos .logos-list .logos-slider .swiper-button-next {
    color: rgba(255, 255, 255, 0.7);
}

section.logos .logos-list .logos-slider .swiper-button-prev {
    left: -5px;
}

section.logos .logos-list .logos-slider .swiper-button-next {
    right: -5px;
}

section.logos .logos-list .logos-item {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.logos .logos-list .logos-item:hover {
    opacity: 0.7;
}

/*section.logos .form-question {
    margin-top: 50px;
}*/
section.logos .form-question-footer-menu-container {
	display: flex;
	column-gap: 100px;
	margin-top: 50px;
}

section.logos .form-question-footer-menu-container .nav-menu ul {
	margin: 0;
	width: 100%;
	height: 380px;
	list-style: none; 
	display: flex; 
	justify-content: flex-start;
	flex-direction: column;
	align-content: flex-start;
	flex-wrap: wrap;
	padding-top: 2px;
	padding-left: 0;
	font-size: 20px;
}

section.logos .form-question-footer-menu-container .nav-menu ul li {
	text-align: left;
	flex-basis: 10%;
	width: 50%;
}

section.logos .form-question-footer-menu-container .nav-menu ul li a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

section.logos .form-question-footer-menu-container .nav-menu ul li a:hover {
	color: #ff7164;
}

section.logos .form-question-footer-menu-container .form-question + div {
	width: 100%;
}

@media (max-width: 575px) {
	section.logos .form-question-footer-menu-container {
		flex-direction: column;
	}
	section.logos .form-question-footer-menu-container .form-question + div .h2 {
		text-align: center;
	}
	section.logos .form-question-footer-menu-container .nav-menu ul {
		flex-wrap: nowrap;
		margin-bottom: 80px;
		height: 240px;
		overflow: hidden;
	}
	section.logos .form-question-footer-menu-container .nav-menu ul:after {
    	content: " ";
		width: 100%;
		height: 70px;
		position: absolute;
		right: 0;
		top: 848px;
		background-image: linear-gradient(to bottom, rgba(255,255,255,0), #4697e9);
	}
	section.logos .form-question-footer-menu-container .nav-menu ul li {
		width: 100%;
	}
}

.form-question {
    max-width: 360px;
	min-width: 360px;
}

.form-question .h2 {
    text-align: center;
}

.form-question .title-desc {
    text-align: center;
    padding-top: 0;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.form-question .title-desc::before {
    left: calc(50% - 35px);
    background: #fff;
}

.form-question form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-question form input[type="text"],
.form-question form textarea {
    display: block;
    width: 100%;
    padding: 0 25px;
    font-size: 14px;
    border: none;
    border-radius: 20px;
    margin-bottom: 15px;
    outline: none;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form-question form input[type="text"]:focus,
.form-question form textarea:focus {
    -webkit-box-shadow: 0 0 0 3px var(--gradient-orange-1);
    box-shadow: 0 0 0 3px var(--gradient-orange-1);
}

.form-question form input[type="text"] {
    height: 40px;
}

.form-question form textarea {
    height: 100px;
    resize: none;
    padding: 15px 20px;
    font-family: inherit;
}

.form-question form .conf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.form-question form .conf input {
    opacity: 0;
    position: absolute;
}

.form-question form .conf label {
    font-size: 14px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    position: relative;
}

.form-question form .conf label::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    margin-right: 10px;
}

.form-question form .conf label::after {
    content: "✔";
    display: block;
    color: var(--gradient-orange-2);
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0px;
    left: 2px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
}

.form-question form .conf input:checked + label::after {
    opacity: 1;
}

.form-question form button {
    width: 150px;
    margin: 25px auto 0;
}

footer {
    margin-top: -50px;
    padding: 80px 0 50px;
    background: center/cover no-repeat url("../img/footer-bg.png");
}

footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .pay-methods p {
    margin-bottom: 20px;
}

footer .pay-methods img.mob {
    display: none;
}
footer .pay-methods picture.mob {
    display: none;
}

footer .footer-menu ul {
    list-style: none;
    padding: 0;
}

footer .footer-menu ul a {
    padding-bottom: 5px;
    margin-bottom: 5px;
    display: inline-block;
    text-decoration: none;
    color: #333;
    position: relative;
}

footer .footer-menu ul a::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: var(--blue-darker);
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

footer .footer-menu ul a:hover {
    color: var(--gradient-orange-2);
}

footer .footer-menu ul a:hover::before {
    background: var(--gradient-orange-2);
}

footer .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .footer-logo img {
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
    margin-right: 10px;
}

footer .footer-logo .title-desc {
    font-size: 14px;
}

.modal {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-bg {
    background: center/cover no-repeat url("../img/modal-bg.png");
    max-width: 800px;
    width: 100%;
    padding: 80px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.single-post {
    /*   padding: 80px 0; */
}

.single-post h1,
.single-post h2,
.single-post h3 {
    color: var(--blue-darker);
}

.single-post h1 {
    font-size: 40px;
}

.single-post h2 {
    font-size: 20px;
    font-weight: 400;
}

.single-post h3 {
    font-size: 30px;
}

.single-post h4 {
    font-size: 14px;
}

.single-post h5 {
    font-size: 20px;
    color: var(--gradient-orange-1);
}

.single-post h6 {
    font-size: 14px;
}

.single-post blockquote {
    font-size: 20px;
    color: #fff;
    margin-top: 35px;
    padding-left: 20px;
    border-left: 2px solid var(--gradient-orange-1);
    color: var(--blue-darker);
}

.single-post main ul {
    list-style: none;
    padding: 0;
}

.single-post main ul li {
    position: relative;
    padding-left: 15px;
}

.single-post main ul li::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient-orange-1);
    position: absolute;
    left: 0;
    top: 5px;
}

.single-post main .table {
    width: 100%;
    overflow-x: auto;
}

.single-post main table {
    min-width: 700px;
    border-spacing: 0;
    border: 3px solid rgba(0, 0, 0, 0.1);
}

.single-post main table thead {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(var(--gradient-orange-1)),
        to(var(--gradient-orange-2))
    );
    background: -o-linear-gradient(
        left,
        var(--gradient-orange-1),
        var(--gradient-orange-2)
    );
    background: linear-gradient(
        90deg,
        var(--gradient-orange-1),
        var(--gradient-orange-2)
    );
    color: #fff;
}

.single-post main table thead th {
    padding: 30px;
}

.single-post main table thead th:first-child {
    width: 350px;
}

.single-post main table tbody td {
    padding: 30px;
    font-weight: 700;
    color: #7f7f7f;
}

.single-post main table tbody td:first-child {
    opacity: 0.4;
}
.aioseo-breadcrumbs-wrap > div {
    margin-right: 4px;
}
.aioseo-breadcrumbs-wrap {
    display: flex;
    color: var(--blue);
    margin-top: 20px;
}
.aioseo-breadcrumbs {
    margin-bottom: 40px;
}
.aioseo-breadcrumbs a {
    text-decoration: none;
    color: var(--blue);
}
.li-tarif ul li:before {
    display: none !important;
}
.text-center {
    text-align: center;
}
section.faq-section {
    padding-bottom: 80px;
    position: relative;
}
.qa-item__answer p:not(:last-child) {
    margin-bottom: 20px;
}
.qa-item {
    width: 100%;
    margin-bottom: 18px;
}
.faq-title{
  padding-left: 120px;
}
.faq-header {
    padding-left: 120px;
    position: absolute;
    top: -60px;
}
.faq-arrow {
    transition: all 0.3s;
}
.swiper-wrapperDEL > div {
    width: 20%;
    padding: 0 10px;
    margin: 30px 0;
}

.swiper-wrapperDEL {
    display: flex;
    flex-wrap: wrap;
}
.overflow-x-h{
    overflow-x: hidden;
}
.main-slider{
    background: linear-gradient(90deg, #0193CB 0%, #0A1F76 100%);
    position: relative;
    color: #fff;
    padding: 60px 0;
}
.main-slider-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    margin: 0 -15px;
}
.main-slider-col{
    width: 50%;
    padding: 0 15px;
    margin: 10px 0;
}
.main-slider-text{
    font-size: 18px;
}
.main-slider-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--gradient-orange-1);
}
.swiper-pagination-bullet{
    background: #fff;
    opacity: .9;
}
.swiper-button-next, .swiper-button-prev{
    color: #fff;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 30px;
}
.aside-toc-title{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}
.aside-toc li{
    padding-left: 0 !important;
}
.aside-toc li:before{
    display: none !important;
}
.aside-toc a:hover{
    color: var(--gradient-orange-1);
}
.aside-toc a:first-letter{
    text-transform: uppercase;
}
.aside-toc a{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid rgba(248, 248, 248, 0.2);
    text-decoration: none;
    text-transform: lowercase;
}
.aside-toc:before{
    content: "SEOCOMBSEOCOMBSEOCOMB";
    display: block;
    font-size: 130px;
    font-weight: 700;
    color: #fff;
    opacity: .06;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: 220px;
}
.aside-toc {
    overflow: hidden;
    max-width: 300px;
    width: 100%;
    padding: 30px 25px 5px;
    background: var(--blue-gradient);
    margin-left: auto;
    margin-bottom: 20px;
    position: relative;
}
.main-content-row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.main-content-col2{
    width: 40%;
    padding: 0 15px;
}
.main-content-col1{
    width: 60%;
    padding: 0 15px;
}
.section-seo-fullwidth{
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
}
.bg_5{
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    bottom: 100%;
    margin: auto;
    object-position: top;
    height: 1000px;
}
.bg_6 {
    position: absolute;
    right: 70vw;
    bottom: 100%;
}
.element_1 {
    position: absolute;
    right: -70px;
    bottom: 130%;
}
.element_2{
    position: absolute;
    top: -230px;
    z-index: 1;
    left: -410px;
}
.overflow-h{
    overflow: hidden;
}
.reviews-list .swiper-button-next, .reviews-list .swiper-button-prev{
    color: var(--blue);
}
.footer-sm-pic{
    position: absolute;
    bottom: calc(100% - 2px);
    right: 0;
    display: none;
}
.site-footer{
    position: relative;
}
section.contacts .aioseo-breadcrumbs a, section.contacts .aioseo-breadcrumbs-wrap{
    color: #fff;
}
section.contacts .aioseo-breadcrumbs-wrap svg {
    fill: transparent;
}
section.contacts .aioseo-breadcrumbs-wrap svg path{
    stroke: #fff;
}
section.contacts {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    color: #fff;
}
.bg_contacts{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    left: 0;
    top: 0;
}
.contacts-info__soc li{
    list-style: none;
    margin: 10px;
}

.contacts-info__soc a {
    display: block;
    width: 40px;
    border-radius: 50%;
    height: 40px;
    border: 1px solid #fff;
    padding: 2px;
}
.contacts-info__soc {
    display: flex;
    justify-content: center;
    z-index: 1;
    position: absolute;
    right: 30px;
    top: 0;
    padding: 0 30px;
}
.contacts-wrap{
    position: relative;
}
.contacts-info__soc:before {
    content: '';
    width: 100%;
    height: 600px;
    position: absolute;
    z-index: -1;
    background: rgb(255,79,66);
    background: linear-gradient(180deg, rgba(255,79,66,1) 0%, rgba(255,173,111,1) 100%);
    top: -240px;
}

.hero_author-photo img {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
}
.hero_author-photo {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 10px;
}
.hero_author {
  color: #fff;
  margin: 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 2px 0;
}
.post-rating svg{
width: 15px;
height: 15px;
fill: #ffd438;
margin-right: 3px;
}
.hero_author-name a {
  display: block;
  color: #fff;
  padding: 4px 0;
  font-size: 16px;
  line-height: 1;
}
.hero_author-name span{
    font-size: 12px;
    display: block;
}
.breadcrumbs-serv-mob, .title-serv-mob{
    display: none;
}




@media (max-width: 1160px) {
    .container {
        width: 1020px;
    }

    section.software .software-right {
        height: 997px;
        right: 160px;
    }

    footer .container > div {
        width: 30%;
    }
}

@media (max-width: 1040px) {
    body.home section.results{
        padding-bottom: 30px;
    }
    section.what-is {
        margin-top: 0;
		padding: 20px 0 0 0;
    }
    .container {
        max-width: 90%;
    }
    section.reviews .reviews-header {
        padding-left: 40px;
        padding-right: 40px;
    }
    .h1 {
        font-size: 32px;
    }
    .swiper-wrapperDEL > div {
        width: 30%;
    }
    header .nav-menu > ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 15px;
    }

    header .mob-menu-wrapper {
        padding: 50px 0 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        row-gap: 35px;
        width: 320px;
        height: 100%;
        background: var(--blue);
        -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
        position: fixed;
        right: -320px;
        top: 0;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    header .mob-menu-wrapper.active {
        right: 0;
    }

    header .btn-burger-open {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .btn-burger-close {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    section.what-is .what-is__wrapper .what-is__left {
        width: 45%;
    }

    section.what-is .our-pluses {
        margin-top: 80px;
        margin-bottom: 30px;
    }

    section.what-is .our-pluses .h2,
    section.what-is .our-pluses .title-desc {
        text-align: left;
        padding-top: 10px;
    }

    section.results {
        padding-top: 210px;
        padding-bottom: 35px;
    }

    section.results .results-slider .swiper-button-next,
    section.results .results-slider .swiper-button-prev {
        top: 90%;
    }

    section.results .results__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 35px;
    }

    section.results .results__left {
        width: 100%;
        padding-left: 0;
    }

    section.results .results__right {
        width: 100%;
    }

    section.results .results__right img {
        margin: 0 auto;
    }

    section.results .arrow-right {
        display: none;
    }

    section.software {
        overflow: hidden;
    }

    section.software .container {
        padding-bottom: 0;
    }

    section.software .software-left {
        width: 100%;
        padding-left: 0;
    }

    section.software .software-right {
        position: relative;
        width: 100%;
        bottom: 0;
        left: 0;
        margin-top: 35px;
        height: auto;
        z-index: 1;
    }

    section.software .software-right::before {
        content: "";
        width: 120%;
        height: 100%;
        background: var(--blue-darker);
        position: absolute;
        left: -10%;
        top: 0;
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        z-index: -1;
    }

    section.software .software-right::after {
        content: "";
        display: block;
        width: 166px;
        height: 141px;
        background: center/contain no-repeat url("../img/po-after.png");
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }

    section.software .software-right .desc-title {
        margin-bottom: 0px;
    }

    section.software .software-right ul li {
        display: inline-block;
    }

    section.software .software-steps {
        background: var(--blue-darker);
        padding-top: 20px;
        padding-bottom: 45px;
    }

    section.ceo {
        margin-top: 0;
        padding-top: 10px;
        padding-bottom: 100px;
        overflow: hidden;
        position: relative;
    }

    section.ceo .ceo-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    section.ceo .ceo-wrapper .ceo-left {
        width: 100%;
        margin-top: 25px;
    }

    section.ceo .ceo-wrapper .ceo-left .ceo-questions {
        padding: 20px;
    }

    section.ceo .ceo-wrapper .ceo-left .ceo-questions__title {
        font-size: 18px;
    }

    section.ceo .ceo-wrapper .ceo-right {
        width: 100%;
    }

    section.reviews {
        background: #fff;
        padding-bottom: 100px;
    }

    section.reviews .orange-line {
        display: none;
    }

    section.reviews .reviews-bottom {
        margin-top: 30px;
        position: relative;
        bottom: 0;
        left: 0;
        text-align: center;
    }
    .faq-header, .faq-title {
        padding-left: 0;
    }
    .faq-title{
        text-align: center;
    }
    footer .pay-methods img.mob {
        display: block;
    }

    footer .pay-methods img.desc {
        display: none;
    }
    footer .pay-methods picture.desc {
        display: none;
    }
}

@media (max-width: 840px) {
    section.software .software-steps__item::before {
        display: none;
    }
    .bg_6 {
        display: none;
    }
    .contacts-info__soc:before{
        display: none;
    }
    .contacts-info__soc{
        position: relative;
        right: 0;
    }
    
}

@media (max-width: 767px) {
    .container {
        max-width: 95%;
    }

    .h1 {
        font-size: 28px;
    }

    .h2 {
        font-size: 24px;
    }

    .title-desc {
        font-size: 16px;
    }

    body:not(.home) section.reviews {
        padding-bottom: 80px;
    }
    section.what-is .what-is__wrapper {
        row-gap: 35px;
    }

    section.what-is .what-is__wrapper .what-is__left {
        width: 100%;
    }

    section.what-is .what-is__wrapper .what-is__right {
        width: 100%;
        margin-right: -30px;
    }

    section.software .software-right {
        padding: 30px 30px;
    }

    section.software .software-right::after {
        right: -80px;
        top: -10px;
    }

    section.software .software-steps__item-img {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    section.software .software-steps__item-desc br {
        display: none;
    }

    section.reviews {
        padding-top: 30px;
    }

    section.reviews .reviews-header {
        padding-left: 0;
        padding-right: 0;
        display: block;
        text-align: center;
    }
    section.reviews .reviews-header .all-reviews {
        -ms-flex-item-align: center;
        align-self: center;
    }

    section.reviews .reviews-slider {
        margin-top: 20px;
    }

    section.reviews .reviews-item {
        padding: 30px 20px;
    }

    section.logos {
        padding-bottom: 65px;
    }

    .form-question {
        margin: 0 auto;
        padding: 0 15px;
    }

    footer .container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 50px;
    }

    footer .container > div {
        width: 100%;
    }

    footer .pay-methods {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    footer .footer-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    footer .footer-logo {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    section.what-is .our-pluses .h2,
    section.what-is .our-pluses .title-desc {
        text-align: center;
    }
    section.reviews {
        position: relative;
        padding-bottom: 40px;
    }
   
    .faq-header {
        padding-left: 50px;
        position: relative;
        top: 0;
        margin-bottom: 20px;
        margin-top: 30px;
    }
    section.reviews:before {
        content: "";
        position: absolute;
        max-width: 290px;
        width: 100%;
        height: calc(100% + 140px);
        left: 0;
        right: 0;
        top: -140px;
        background: rgb(255, 79, 66);
        background: linear-gradient(
            180deg,
            rgba(255, 79, 66, 1) 0%,
            rgba(255, 173, 111, 1) 100%
        );
        margin: auto;
    }
    section.ceo .ceo-wrapper .ceo-left  .ceo-questions{
        order: 2;
    }
    section.ceo .ceo-wrapper .ceo-left  .btns.mob{
        order: 1;
        margin-bottom: 20px;
    }
    .ceo-pagination{
        display: none !important;
    }
    section.ceo .ceo-wrapper .ceo-left {
        margin-bottom: -80px;
        display: flex;
    flex-direction: column
    }
    section.hero .container {
        margin-top: 0;
    }
    section.hero {
        padding-top: 100px;
    }
    section.reviews .reviews-item__img {
        max-width: 65px;
        width: 100%;
        max-height: 65px;
        min-width: inherit;
        min-height: initial;
    }
    section.reviews .reviews-item__name {
        font-size: 14px;
    }
    .swiper-wrapperDEL > div {
        width: 50%;
    }
    .main-slider-text{
        font-size: 16px;
    }
    .ceo-shortcode.ceo #kviz-form {
        padding: 30px 0 120px;
    }
    .svg-figure{
        display: none;
    }
    .footer-sm-pic{
        display: block;
    }
    .ceo-shortcode:before {
        content: '';
        position: absolute;
        height: 100px;
        width: 100%;
        bottom: 0;
        background: white;
    }
}

@media (max-width: 575px) {
    .breadcrumbs-serv-mob{
        display: flex;
    }
    .title-serv-mob{
        display: block;
    }
    .breadcrumbs-serv-pc, .title-serv-pc{
        display: none;
    }
    .main-slider-col{
        width: 100%;
    }
    .main-content-col1{
        order: 2;
        width: 100%;
    }
    .main-content-col2{
        order: 1;
        width: 100%;
    }
    .aside-toc{
        max-width: 100%;
    }
    .aside-toc-title{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .ceo-pagination{
        display: none;
    }
    section.logos {
        background-position: left -240px top 0;
    }
    section.logos .form-question{
        margin-top: 20px;
    }
    section.logos .logos-list{
        min-height: 100px;
    }
    section.logos .logos-list{
            border-bottom: 1px solid rgb(255 255 255 / 17%);
    }
    .form-question form button {
        margin: 25px auto 20px;
    }
    .element_1, .element_2{
        display: none;
    }
    
}
@media (max-width: 480px) {
    section.software .software-right ul li {
        display: block;
    }
    section.reviews:before {
        max-width: 70%;
    }
    .swiper-wrapperDEL > div {
        width: 100%;
    }
    section.reviews .reviews-slider{
        padding: 20px 10px;
    }
    

}

@media (max-width: 360px) {
    .h1 {
        font-size: 24px;
    }

    section.hero .h1-desc {
        margin-top: 55px;
    }
}
