@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap");
/* RESET STYLE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
* ::after {
    background-repeat: no-repeat;
}

* ::before {
    background-repeat: no-repeat;
}
ul li {
    list-style: none;
}
form * {
    outline: none;
}
button {
    border-style: none;
}
img {
    width: 100%;
    pointer-events: none;
}
a {
    color: inherit;
    text-decoration: none;
    display: block;
}
svg {
    transition: all 0.2s linear;
}
/* END RESET */

/* GLOBAL STYLE */
.hidden {
    display: none !important;
}
html,
body {
    width: 100%;
    overflow-x: hidden;
/*     user-select: none; */
    max-width: 1920px;
    margin: 0 auto;
}
body {
    font-family: "Montserrat", sans-serif;
    color: #1d2831;
}
main {
    padding-top: 30px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="url"],
textarea,
textarea.form-control {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 3px #4d4f50 solid;
    font-size: 16px;
    padding: 0 20px 0 20px;
    background-color: rgba(0, 0, 0, 0.03);
    display: block;
    height: 45px;
    background-image: none;
    border-radius: 4px;
    width: 100%;
    max-width: 100%;
    line-height: 45px;
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s,
        -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
    color: #999999;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #999999;
}
.form-control::-webkit-input-placeholder {
    color: #999999;
}
.form-control::-ms-expand {
    border: 0;
    background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eeeeee;
    opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed;
}
textarea.form-control {
    height: 45px;
}
input[type="search"] {
    -webkit-appearance: none;
}
input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 34px;
    }
    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm,
    .input-group-sm input[type="date"],
    .input-group-sm input[type="time"],
    .input-group-sm input[type="datetime-local"],
    .input-group-sm input[type="month"] {
        line-height: 30px;
    }
    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg,
    .input-group-lg input[type="date"],
    .input-group-lg input[type="time"],
    .input-group-lg input[type="datetime-local"],
    .input-group-lg input[type="month"] {
        line-height: 46px;
    }
}
.form-group {
    margin-bottom: 15px;
}
.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.radio label,
.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed;
}
.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0;
}
.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
select.input-sm {
    height: 30px;
    line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
    height: auto;
}
.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
    height: auto;
}
.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5;
}
.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}
select.input-lg {
    height: 46px;
    line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
    height: auto;
}
textarea,
textarea.form-control {
    min-height: 100px;
    padding: 15px 20px 12px 20px !important;
    line-height: 25px !important;
}
.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}
.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
    height: auto;
}
.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}
.has-feedback {
    position: relative;
}
.has-feedback .form-control {
    padding-right: 42.5px;
}
.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px;
}
#fancybox-outer {
    background: #fb6221;
}
#fancybox-content {
    background: #fb6221;
    border: 0;
    display: initial;
}
#fancybox-content #form_popup1 {
    height: auto !important;
}
#fancybox-content h4 {
    color: #fff;
    font-family: Oswald;
    font-weight: 700;
    font-size: 23px;
    line-height: 33px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
}
#fancybox-content input {
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 1px solid #fff;
    border-radius: 0;
    box-shadow: none;
    color: #ffffff;
    padding: 0;
}
#fancybox-content textarea {
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 1px solid #fff;
    border-radius: 0;
    box-shadow: none;
    color: #ffffff;
}

#fancybox-content textarea.form-control {
    min-height: 50px;
    padding: 12px 0 !important;
}
#fancybox-content input::-webkit-input-placeholder {
    color: #fefefe;
}
#fancybox-content input::-moz-placeholder {
    color: #fefefe;
}
#fancybox-content textarea::-webkit-input-placeholder {
    color: #fefefe;
}
#fancybox-content textarea::-moz-placeholder {
    color: #fefefe;
}
#fancybox-content .btn-send {
    background: #ffffff;
    border-radius: 50px;
    color: #000;
    margin: 20px 0 0 0;
    font-size: 16px;
    padding: 10px 20px;
}
#fancybox-content .order-form {
    text-align: center;
    padding: 30px;
}
#fancybox-content .order-form .wpcf7-spinner {
    display: none;
}
#fancybox-content .wpcf7-response-output {
    display: none;
}
#fancybox-content .wpcf7-form-control-wrap {
    text-align: left;
}
#fancybox-content .wpcf7-list-item {
    margin: 10px 0 0 0;
    display: block;
    color: #fff;
    font-size: 14px;
}
#fancybox-content .btn.disabled,
#fancybox-content .btn[disabled],
#fancybox-content fieldset[disabled] .btn {
    opacity: 1;
}
#fancybox-content label {
    width: 100%;
    display: flex;
    align-items: center;
}
#fancybox-content label a {
    display: contents;
}
#fancybox-content input[type="checkbox"] {
    margin-right: 5px;
}
/********************/
/*** START HEADER ***/
/********************/
.logo {
    /* background-image: url("/wp-content/themes/the-seo/images/au-logo.svg"); */
    background-repeat: no-repeat;
}

.h {
    color: #000;
    font-weight: 700;
}
.h-1 {
    font-size: 68px;
}
.h-2 {
    font-size: 48px;
    line-height: 160%;
}
.h-3 {
    font-size: 30px;
    line-height: 160%;
}
.h-4 {
    color: #ff7f11;
    font-size: 30px;
    font-weight: 700;
}

.effect2 {
    background: #fb6221
        url("../../images/leading/icon/decoration.png")
        no-repeat;
    background-position: 100% 101%;
    background-size: 157px;
    padding: 65px 57px 65px 111px;
    color: #fff;
}
.effect2_title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 180%;
    color: #fff;
}

.effect2_desc {
    font-size: 25px;
    line-height: 180%;
    font-weight: 300;
    position: relative;
}
.effect2_desc p:not(:last-child) {
    margin-bottom: 1em;
}

.effect2_desc::before {
    content: "";
    width: 2px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40px;
    background: #fb6221;
}

.effect2_desc p:not(:last-child) {
    margin-bottom: 1em;
}

.ml-auto {
    display: block;
    margin-left: auto;
}
header .wrapper-menu .content {
    max-width: 1684px;
    width: 100%;
    padding: 0 42px;
    margin: 0 auto;
}

.bg-grey {
    background: #eeeeee;
}
.bg .section_title {
    background: none;
}

.kama_breadcrumbs {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 33px;
    display: flex;
    flex-wrap: wrap;
}
.kama_breadcrumbs a:hover {
    color: #ff7f11;
}
.kb_sep {
    margin: 0 5px;
}

.mark-purple {
    color: #ffffff;
}
.mark-orange {
    color: #ff7f11;
}

.row {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}
.row .col {
    margin: 5px;
}
.space-between {
    justify-content: space-between;
}

.btns {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}
.btn {
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    line-height: 121.8%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: all 0.2s linear;
}
.btn-primary {
    background: #fb6221;
    color: #fff;
}
.btn-primary:not(:disabled):hover {
    background: #fb6221;
    color: #000;
}
.btn-primary:not(:disabled):hover path {
    fill: #000;
}
.btn-icon {
    margin-left: 20px;
}
.btn-secondary {
    background: #fff;
    color: #000;
}
.btn-secondary:not(:disabled):hover {
    background: #fb6221;
}
.a {
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
}

.a-icon {
    margin-left: 20px;
    width: 3.291em;
}
.a-primaty {
    color: #fb6221;
}
.a-primaty:hover {
    color: #ff7f11;
}
.a-primaty:hover .a-icon path {
    fill: #ff7f11;
}

.a-secondary {
    color: #fb6221;
}
.a-secondary:hover {
    color: #ff7f11;
}
.a-secondary:hover .a-icon path {
    fill: #ff7f11;
}

/* секции */
.main .section:first-child {
    margin-top: 0;
}
.header + .main .section:first-child {
    margin-top: 100px;
}

.section {
    margin: 200px 0;
}

.section.bg {
    padding: 128px 0 150px;
}
.section.bg .section_title{
    padding-bottom: 0;
    margin-bottom: 80px;
}
.section_bg_grey{
    background: #eee;
}
.section_title {
    /* margin-top: -26px; */
    padding: 26px 0;
    margin-bottom: 100px;
    position: relative;
   
    
}
.section_title .wrapper{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.section_title a{
    margin-left: auto;
}
.section_title a svg path{
    fill: #000;
}
.section_title a:hover svg path{
    fill: #fb6221;
}

.section_title-rigth {
    text-align: right;
}
.section_title-rigth .section_title_bg {
    background: #e3e1f7;
    right: 0;
}
.section_title-rigth .mark-purple {
    color: #fb6221;
}
.section_title-left .section_title_bg {
    background: #fb6221;
    left: 0;
}
.section_title-left {
    text-align: left;
}
.section_title_bg {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}
.section_subtitle {
    font-size: 18px;
    line-height: 180%;
    margin-top: 20px;
}
/* Вопросы */
.question ul,
.question ol {
    margin-left: 17px;
}
.question ul li {
    list-style: disc;
}
.question ul li:not(:last-child),
.question ol li:not(:last-child) {
    margin-bottom: 0.5em;
}
.question {
    background: #eee;
    line-height: 180%;
    padding: 0 40px;
    transition: box-shadow 0.2s linear;
}
.question_wrapper {
    max-width: 1368px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.question_head {
    cursor: pointer;
    padding: 40px 80px 40px 0;
    user-select: none;
}
.question_head::before {
    content: "";
    background: #fb6221;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center;
    width: 50px;
    height: 50px;
    background: url("../../images/leading/icon/toggle.png")
        no-repeat;
    background-position: center;
    background-size: contain;
    right: 0;
    transition: all 0.2s linear;
}
.question_body {
    padding-bottom: 40px;
    display: none;
}
.question_body p:not(:last-child) {
    margin-bottom: 1em;
}
.question_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 180%;
}
.questions_item:not(:last-child) {
    margin-bottom: 30px;
}
.question:hover,
.question-active {
    box-shadow: 0px 91px 36px rgba(0, 0, 0, 0.01),
        0px 23px 23px rgba(0, 0, 0, 0.09), 0px 6px 12px rgba(0, 0, 0, 0.1),
        0px 0px 0px rgba(0, 0, 0, 0.1);
}
.question-active .question_body {
    display: block;
}
.question-active .question_head::before {
    transform: translateY(-50%) rotate(45deg);
}

/* таблицы */
.table {
    overflow-x: auto;
    padding-bottom: 30px;
}
.table::-webkit-scrollbar {
    height: 5px;
}
.table::-webkit-scrollbar-track {
    background: #e3e1f7; /* цвет дорожки */
    border-radius: 5px;
}
.table::-webkit-scrollbar-thumb {
    background-color: #fb6221; /* цвет плашки */
    border-radius: 5px;
}
.tables + .tables {
    margin-top: 100px;
}
.tables_title {
    font-size: 36px;
    text-align: center;
    background: #e3e1f7;
    padding: 40px 0;
    line-height: 180%;
}
.table_rates {
    width: 100%;
}
.table_rates_head {
    text-align: center;
}
.table_rates_head td {
    padding: 45px 5px;
    border-bottom: 1px solid #fb62217b;
    vertical-align: bottom;
}
.table_rates_body td {
    border-bottom: 1px solid #fb62217b;
    padding: 20px 5px;
}
.table_rates_body {
    font-size: 15px;
}
.table_rates_body tr > td:not(:first-child) {
    text-align: center;
    font-size: 50px;
    line-height: 50%;
    font-weight: 200;
    color: #fb6221;
}
.table_rates_foot {
    text-align: center;
}
.table_rates_foot td {
    padding: 50px 5px 0 5px;
    vertical-align: bottom;
}
.table_rates_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.table_rates_desc {
    font-size: 12px;
    margin-bottom: 20px;
    max-width: 173px;
    margin-left: auto;
    margin-right: auto;
    line-height: 180%;
}
.table_rates_people {
    font-size: 16px;
    line-height: 180%;
}
.table_rates_people_count {
    display: block;
    color: #ff7f11;
    font-weight: 700;
    font-size: 24px;
}
.table_rates_price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.table_rates_text {
    font-size: 12px;
    margin-bottom: 20px;
    max-width: 173px;
    margin-left: auto;
    margin-right: auto;
}

/* Тарифы CRM */
.rates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
}
.rate {
    background: #e3e1f7;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.rate_head {
    background: #fb6221;
    color: #fff;
    text-align: center;
    padding: 50px 54px 30px;
    font-weight: 300;
    line-height: 180%;
}
.rate_title {
    color: inherit;
}
.rate_price {
    font-size: 40px;
    font-weight: 100;
    line-height: 150%;
}
.rate_body {
    padding: 22px 40px 46px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.rate_list {
    list-style-type: none;
    line-height: 180%;
    font-weight: 400;
    margin-bottom: 50px;
}
.rate_list li {
    position: relative;
    padding-left: 35px;
}
.rate_list li:not(:last-child) {
    margin-bottom: 20px;
}
.rate_list li::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    left: 0px;
    top: 50%;
    margin-top: -1px;
    background: #fb6221;
}
.rate_body .btn {
    margin-top: auto;
}

/* need */
.needs {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.needs_item {
    min-width: 300px;
    flex-basis:calc(33.33px - 30px);
    flex-grow: 1;
    display: flex;
}
.need {
    background: #eeeeee;
    padding: 50px 30px;
    line-height: 180%;
}
.need_title {
    display: inline-block;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    position: relative;
}
.need_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    left: 0;
    max-width: 200px;
    width: 100%;
    background-color: #fb6221;
}
.needs_btns {
    margin-top: 70px;
    justify-content: center;
}

/* portfolio */
.portfolio {
    background: #fb6221;
    color: #fff;
    padding: 150px 0;
}
.portfolio_title {
    color: inherit;
    font-weight: 600;
    margin-bottom: 40px;
}
.portfolio_text a:hover {
    color: #fb6221;
}
.portfolio_link {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    margin-bottom: 40px;
    gap: 20px;
}
.portfolio_btn {
    color: inherit;
    border: 1px solid;
    padding: 14px 20px;
    font-weight: 400;
    transition: all 0.2s linear;
    background: none;
    font-family: inherit;
    font-size: inherit;
}
.portfolio_btn:first-letter {
    text-transform: uppercase;
}
.portfolio_btn:hover,
.portfolio_btn.active {
    background: #fff;
    color: #fb6221;
}
.portfolio_btn:not(.active) {
    cursor: pointer;
}
.portfolio_btn a.active {
    pointer-events: none;
}
.portfolio_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.portfolio_img {
    position: relative;
    height: 10px;
    padding-top: 63.4%;
    border: 1px solid #ffffff;
}
.portfolio_img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: filter 0.2s linear;
}
.portfolio_img::before {
    content: "";
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 150px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: url(../../images/leading/icon/arrow.png)
        no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    transition: opacity 0.2s linear;
}
.portfolio_img:hover img {
    filter: grayscale(100%);
}
.portfolio_img:hover::before {
    opacity: 1;
}
.portfolio_text {
    padding: 30px 0;
    font-size: 28px;
    max-width: 620px;
    line-height: 180%;
}
.portfolio_blocks {
    margin-bottom: 50px;
}
.portfolio_blocks_item {
    display: none;
}
.portfolio_blocks_item.active {
    display: block;
    opacity: 0;
    animation: show 0.5s linear both;
}
.portfolio_btns {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* stages */
.stages {
    margin-top: -70px;
}
.stages .stages_item:not(:last-child) {
    border-bottom: 1px solid #fb6221;
}
.stage {
    width: 100%;
    padding: 70px 0;
    display: flex;
    justify-content: space-between;
}
.stage > *:not(:last-child) {
    margin-right: 30px;
}
.stages_icon {
    flex-basis: 130px;
    flex-shrink: 0;
}
.stages_icon > * {
    width: 100%;
}
.stage_title {
    flex-basis: 368px;
    font-size: 24px;
    line-height: 180%;
    flex-shrink: 0;
}
.stage_subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.stage_list {
    flex-basis: 820px;
    font-size: 18px;
    line-height: 180%;
    list-style-type: none;
}
.stage_list li p:not(:first-child):not(:last-child) {
    margin-bottom: 1em;
}
.stage_list li:not(:last-child) {
    margin-bottom: 30px;
}
.stage_list li {
    position: relative;
    padding-left: 70px;
}
.stage_list li::before {
    content: "";
    font-size: 24px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: #ff7f11;
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
}
.stages_btns {
    width: 820px;
    margin-left: auto;
}

/* карточки имеющие цифры */
.numbers {
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
    list-style-type: none;
    counter-reset: num;
    row-gap: 50px;
    column-gap: 30px;
}
.number {
    display: flex;
    flex-basis: calc(33.33% - 20px);
    flex-grow: 1;
    background: #eeeeee;
    padding: 60px 30px;
    font-size: 16px;
    line-height: 180%;
    flex-direction: column;
}
.number::before {
    content: counter(num) ".";
    font-size: 50px;
    counter-increment: num;
    border-radius: 50%;
    width: 1.6em;
    height: 1.6em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: #ff7f11;
    margin-bottom: 30px;
}
.number_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.number_icon {
    margin-bottom: 40px;
    line-height: 0;
}
.number_desc p:not(:last-child) {
    margin-bottom: 1em;
}

/* features */
.features {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}
.features_desc {
    flex-basis: 40%;
    font-size: 24px;
    line-height: 180%;
    margin-right: 90px;
}
.features_desc > *:not(:last-child) {
    margin-bottom: 1em;
}
.features_list {
    flex-basis: 60%;
    list-style-type: none;
    line-height: 180%;
    counter-reset: num;
}
.features_list li {
    padding: 50px 0 50px 80px;
}
.features_list li:first-child {
    padding-top: 0;
}
.features_list > li:not(:last-child) {
    border-bottom: 1px solid #fb6221;
}
.features_list li:last-child {
    padding: 50px 0px 0px 80px;
}
.features_title {
    font-size: 22px;
    line-height: 180%;
    font-weight: 600;
    margin-bottom: 0.5em;
}
.features_list li {
    position: relative;
}
.features_list li::before {
    content: "0" counter(num);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 3px;
    counter-increment: num;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #ff7f11;
}
.features_list > li:not(:first-child)::before {
    top: 53px;
}

.requisites {
    font-size: 18px;
}
.requisites_row {
    padding: 43px 0;
    border-bottom: 2px solid #fb6221;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 35px;
}
/* page */

.page:not(body) {
    display: flex;
    column-gap: 55px;
    padding-top: 50px;
    overflow: hidden;
}
.page:not(body) .main {
    flex-grow: 1;
}
.page:not(body) .aside {
    max-width: 330px;
    width: 100%;
    flex-shrink: 0;
}
.page:not(body) .page_head{
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}
/* aside */
.aside {
    display: flex;
    flex-direction: column;
    gap: 50px;
    flex-shrink: 0;
}
.aside_search ~ .aside_title{
    padding-top: 30px;
}
.aside_title {
    text-transform: uppercase;
    /* font-size: 28px; */
    font-size: 24px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.aside_title::after {
    content: "";
    width: 42px;
    height: 4px;
    border-radius: 4px;
    background: #ffce00;
    position: absolute;
    bottom: 0;
    left: 0;
}
.aside_search_label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    cursor: pointer;
}
.aside_search_input {
    display: flex;
    color: #b7b2b2;
    border: 1px solid;
    align-items: center;
}
.aside_search_input input,
.aside_search_input button {
    border: none;
    background: none;
    height: 30px;
}
.aside_search_input button {
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.aside_search_input input {
    flex-grow: 1;
    color: #000;
    font-family: "Montserrat", sans-serif;
}
.aside_search_input input:focus {
    outline: none;
}
.aside_search_input input::placeholder {
    color: #b7b2b2;
}

.records {
    background: #f4f4f4;
    padding: 40px 20px;
}
.records a {
    display: inline;
}

.records ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    line-height: 1em;
    position: relative;
    gap: 20px;
    padding-left: 20px;
}
.records ul li::before {
    content: "";
    display: inline-block;
    font-size: 11px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: #fb6221;
    margin-right: 16px;
    margin-top: 3px;
    position: absolute;
    left: 0;
}
.records > ul > li > ul {
    margin-left: 10px;
    margin-top: 15px;
}
.records > ul > li > ul > li::before {
    background: none;
    border: 1px solid #fb6221;
}
.records ul li {
    font-weight: 400;
}
.records ul li a:hover {
    color: #fb6221;
}

.archive:not(body) {
    background: #f8f8f8;
    padding: 32px 16px;
}
.archive_list a{
    width: fit-content;
}

.archive_list {
    list-style-type: none;
    line-height: 1.26em;
    margin-left: 20px;
    font-weight: 500;
}
.archive_list ul {
    font-weight: 400;
    margin-top: 24px;
}

.archive_list li {

    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 25px;
}
.archive_list li:not(:last-child){
    margin-bottom: 16px;
}
.archive_list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    display: inline-block;
    font-size: 11px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin-right: 16px;
}
.archive_list > li::before {
    background: #fb6221;

}
.archive_list ul li::before {
    border: 2px solid #fb6221;
    box-sizing: border-box;
}

.archive_list li a:hover {
    color: #fb6221;
    text-decoration: underline;
}

.subscribe {
    background: #e5e5e5;
    padding: 57px 35px;
    position: sticky;
    top: 130px;
}
.subscribe_wrapper {
    max-width: 320px;
    width: 100%;
    margin: auto;
}
.subscribe_title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}
.subscribe_desc {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
}
.subscribe form {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.subscribe input {
    padding: 13px 15px;
    font-size: 16px;
    width: 100%;
    background: none;
    border: 1px solid rgba(67, 66, 66, 0.7);
    color: #434242;
    border-radius: 0px;
}
.subscribe input:focus {
    outline: none;
    border-color: #fb6221;
}
.subscribe button {
    background: #fb6221;
    color: #fff;
    width: 100%;
    border: navajowhite;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s linear;
}
.subscribe button:hover {
    background: #fb6221;
    color: #000;
}
.subscribe_text {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    color: #434242;
}
.subscribe_text a {
    text-decoration: underline;
}
.subscribe_text a:hover {
    color: #fb6221;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    line-height: 1.218em;
    color: #000;
    font-weight: 400;
}
.tags a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 0.875em 1.25em;
    border: 1px solid;
}
.tags a:hover,
.tags a.active {
    color: #fb6221;
}

/* Сертификаты */
.certified{
    background: #EEEEEE;
    padding: 70px;
    display: flex;
    align-items: center;
}
.certified_title{
    width: 100%;
    font-size: 40px;
    color: #fb6221;
    font-weight: 700;
}
.certified_logos{
    max-width: 780px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap:60px ;
    align-items: center;
}
.certified_logos_item.no_certified{
    position: relative;
}
.certified_logos_item.no_certified img{
    opacity: 0.3;
    z-index: 0;
}
.no_certified::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 25px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    margin-left: -0.5em;
    background: url(../../images/leading/icon/loading.png) no-repeat;
    background-position: center;
    background-size: contain;
    animation: loadCertified 2.5s linear infinite both;
}
@keyframes loadCertified {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
/* нам доверяют */
.trust{
    display: flex;
    gap: 50px;
}
.trust a{
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
}
.trust a:hover{
    color: #ff7f11;
}
.trust a:hover svg path{
    fill: #ff7f11;
}
.trust > *{
    display: flex;
    flex-direction: column;
}
.trust_title{
    font-size:48px ;
}
.trust_text{
    margin-top: 30px;
    font-size: 25px;
    line-height:180% ;
    display: flex;
    flex-direction: column;
    gap: 1em;
    flex-grow: 1;
}
.trust_text >*:last-child{
    margin-top: auto;
}

.trust_logo{
    position: relative;
    width: 266px;
    height: 100px;
   
}
.trust_logo img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.trust_left .trust_text{
    padding-bottom: 40px;
}
.trust_left {
    max-width: 677px;
}
.trust_left a {
    color: #fb6221;
    white-space: nowrap;
}
.trust_right{
    max-width: 870px;
}
.trust_slide{
    margin-right: -30px;
}
.trust_slide .slick-track{
    display: flex !important;
}
.trust_slide_item{
    display: flex !important;
    flex-direction: column;
    margin-right: 30px;
    height: auto !important;
}
.trust_right .trust_text{
    padding: 40px;
    background: #fb6221;
    color: #fff;
    flex-grow: 1;
}

/* наш блог */
.block2-section .section_title{
    margin-bottom: 34px;
}
.block2{
    display: flex;
    gap:50px;
}
.block2_card{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.block2_card_img{
    position: relative;
    height: 0;
    padding-top: 64%;
}
.block2_card_img a{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.block2_card_img img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.block2_card_title{
    font-size:22px ;
    font-weight: 600;
}
.block2_card_title a:hover{
    text-decoration: underline;
    color: #ff7f11;
}
.block2_card_body{
    padding: 48px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex-grow: 1;
}
.block2_card_tags{
    font-weight: 500;
    display: flex;
    color: #fb6221;
    font-size:16px ;
    gap:9px;
    flex-wrap: wrap;
}
.block2_card_tags a{
    flex-shrink: 0;
}
.block2_card_tags a:hover{
    text-decoration: underline;
    color: #ff7f11;
}
.block2_card_created{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}
.block2_card_created_avtor{
    display: flex;
    align-items: center;
    gap: 10px;
}
.block2_card_created_avtor_avatar{
    width: 37px;
    height: 37px;
    border-radius: 50%;
    overflow: hidden;
}

.block2_card_created_avtor_avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.block2_card_created_date{
    font-size: 16px;
    color: #686868;
    margin-left: auto;
    text-align: right;
}

@media screen and (max-width: 1500px) {
    .page:not(body) {
        column-gap: 30px;
    }
}
@media screen and (max-width: 1500px) and (min-width: 1280px) {
    .stages_btns {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 1279px) {
    .page:not(body) .aside {
        max-width: 100%;
    }
    .h-1 {
        font-size: 60px;
    }
    .table_rates_price,
    .table_rates_title {
        font-size: 18px;
    }
    .table_rates_head td {
        padding: 30px 5px;
    }
    .table_rates_body td {
        padding: 15px 5px;
    }
    .table_rates_foot td {
        padding: 30px 5px 0 5px;
    }

    .portfolio_title,
    .portfolio_link {
        margin-bottom: 30px;
    }
    .portfolio_blocks {
        margin-bottom: 40px;
    }
    .portfolio_text {
        padding: 20px 0;
        font-size: 20px;
        max-width: 620px;
        line-height: 180%;
    }
    .portfolio_grid {
        grid-gap: 20px;
    }

    .stages_icon {
        flex-basis: 100px;
    }
    .stage_title {
        flex-basis: 200px;
        font-size: 20px;
    }
    .stage_list {
        flex-basis: 480px;
        font-size: 16px;
    }
    .stage_subtitle {
        font-size: 18px;
    }
    .stage_list li::before {
        font-size: 20px;
    }
    .stage_list li {
        padding-left: 50px;
    }
    .stages_btns {
        width: 480px;
    }

    .numbers {
        row-gap: 40px;
        column-gap: 20px;
    }
    .number {
        flex-basis: calc(50% - 20px);
    }

    .features_title {
        font-size: 18px;
    }
    .features_desc {
        font-size: 18px;
    }
    .features_desc .a {
        font-size: 1em;
    }

    /* aside */
    .page:not(body) {
        flex-direction: column-reverse;
        row-gap: 150px;
    }
    .archive_list {
        display: grid;
        grid-column-gap: 20px;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .trust_right {
        max-width: 50%;
    }
    .trust_title{
        font-size: 36px;
    }
    .trust_text{
        font-size: 18px;
    }


    .block2_card_title{
        font-size: 18px;
    }
    .block2_card_body {
        padding: 18px;
    }
    .block2_card_tags{
        font-size: 14px;
    }
    .block2 {
        gap: 30px;
    }
}
@media screen and (max-width: 1024px) {
    .h-2 {
        font-size: 40px;
    }
    .h-3 {
        font-size: 28px;
    }

    .rate_head {
        padding: 50px 20px 20px;
        min-height: 212px;
    }

    .rate_body {
        padding: 20px 20px 26px;
        font-size: 15px;
    }


    .certified{
        padding: 50px;
    }
    .certified_logos{
        grid-gap: 30px;
    }


    .block2{
        flex-wrap: wrap;
    }
    .block2_card {
        width: calc(50% - 15px);
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 900px) {
    .stage {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .stages_btns {
        width: 100%;
        margin-left: -5px;
    }
    .stage > *:not(:last-child) {
        margin-right: 0px;
        margin-bottom: 40px;
    }
    .stages_icon {
        flex-basis: 100%;
    }
    .stage_title {
        flex-basis: 100%;
        font-size: 20px;
    }
    .stage_list {
        flex-basis: 100%;
        font-size: 18px;
    }

    .features {
        flex-direction: column;
    }
    .features_desc {
        flex-basis: 100%;
        margin-bottom: 100px;
    }
}
@media screen and (max-width: 768px) {
    .h-3 {
        font-size: 30px;
    }
    .h-4 {
        font-size: 20px;
    }

    .section {
        margin: 150px 0;
    }
    .section_title {
        margin-bottom: 80px;
    }

    .rates {
        grid-template-columns: minmax(300px, 500px);
        justify-content: center;
    }
    .rate_head {
        padding: 50px 48px 30px;
    }
    .rate_body {
        padding: 22px 60px 40px;
    }
  
    .portfolio_grid {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
    .portfolio_btns {
        justify-content: flex-start;
    }

    .effect2 {
        padding: 60px 20px 60px 40px;
    }
    .effect2_desc {
        font-size: 16px;
    }
    .effect2_desc::before {
        left: -20px;
    }

    .stage_subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .stage_list {
        font-size: 16px;
    }

    .main_form .form_bonus_help {
        font-size: 16px;
        max-width: 100%;
    }
    .main_form .form_bonus_bg {
        position: static;
    }
    .main_form .form_bonus_item {
        max-width: 100%;
    }

    .features {
        font-size: 16px;
    }
    .features_title {
        font-size: 18px;
    }

    .certified {
        padding: 0;
        flex-direction: column;
        gap: 50px;
        background: none;
    }
    .certified_logos{
        padding: 50px 25px;
        background: #EEEEEE;
    }

    .trust {
        flex-direction: column;
    }
    .trust_right {
        max-width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .numbers {
        flex-direction: column;
    }
}
/* @media screen and (max-width: 678px) {
    .archive_list li {
        width: calc(33% - 20px);
    }
} */
@media screen and (max-width: 620px){
    .block2 {
        gap: 50px;
    }
    .block2_card {
        width: 100%;
    }
}
@media screen and (max-width: 578px) {
    .main_form .form_grid {
        grid-template-columns: 1fr;
        grid-row-gap: 25px;
    }
}
@media screen and (max-width: 570px) {
    /* .archive_list li {
        width: calc(50% - 20px);
    } */
    .page_head_number{
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .a {
        font-size: 20px;
    }
    .btn {
        padding: 20px;
    }
    .btn-icon {
        margin: 0 0 0 20px;
    }
    .portfolio,
    .section {
        margin: 130px 0;
    }
    .portfolio {
        padding: 130px 0;
    }
    .section.bg {
        padding: 80px 0 80px;
    }
    .section_title {
        text-align: center !important;
    }
    .h-1 {
        font-size: 30px;
    }
    .h-2 {
        font-size: 28px;
    }

    .question {
        padding: 0 20px;
    }
    .question_head {
        cursor: pointer;
        padding: 30px 60px 30px 0;
        user-select: none;
    }
    .question_title {
        font-size: 18px;
    }
    .question_head::before {
        content: "";
        width: 40px;
        height: 40px;
    }

    .tables_title {
        font-size: 23px;
    }

    .rate_head {
        padding: 50px 20px;
        min-height: auto;
    }
    .rate_body {
        padding: 50px 20px;
    }

    .portfolio_btns .btn {
        width: 100%;
    }

    .need {
        font-size: 15px;
        padding: 50px 20px;
        text-align: center;
    }
    .need_title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .need_title::after {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .needs_btns .btn {
        font-size: 14px;
        padding: 15px;
    }

    .effect2 {
        padding: 80px 20px 80px 40px;
        background-size: 100px;
    }
    .effect2_title {
        font-size: 18px;
    }
    .effect2_desc {
        font-size: 15px;
    }
    .effect2_desc::before {
        left: -20px;
    }

    .portfolio_link {
        font-size: 14px;
        column-gap: 10px;
        row-gap: 20px;
    }
    .portfolio_btn {
        flex-basis: min-content;
        flex-grow: 1;
        flex-shrink: 1;
    }

    .stages {
        margin-top: -50px;
    }
    .stage {
        width: 100%;
        padding: 40px 0;
        display: flex;
        justify-content: space-between;
    }
    .stage_list {
        font-size: 15px;
    }
    .stages_icon > * {
        width: 60px;
    }

    .number {
        padding: 50px 20px;
        font-size: 15px;
        text-align: center;
    }
    .number::before {
        margin-left: auto;
        margin-right: auto;
    }

    .features {
        font-size: 15px;
    }
    .features_desc {
        text-align: center;
        margin-right: 0px;
        font-size: 16px;
    }
    .features_title {
        font-size: 20px;
    }
    .features_list li:last-child {
        padding: 30px 0px 0px 48px;
    }
    .features_list li {
        padding: 30px 0px 30px 48px;
    }
    .features_list > li:not(:first-child)::before {
        top: 34px;
    }

    .requisites {
        font-size: 16px;
    }
    .requisites_row {
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
        padding: 30px 0;
    }
    .page:not(body) {
        row-gap: 100px;
    }
    /* aside */
    /* .archive_list li {
        width: 100%;
    } */

    .subscribe {
        background: #e5e5e5;
        padding: 50px 20px;
        margin-left: -10px;
        margin-right: -10px;
    }


    .certified{
        gap: 30px;
    }
    .certified_logos{
        padding: 50px 20px;
        grid-gap: 15px;
    }


    .trust_logo {
        position: relative;
        width: 160px;
        height: 70px;
    }
    .trust_text{
        font-size: 16px;
    }
    .trust a svg{
        width: 80px;
    }
    .trust_title{
        font-size: 20px;
    }


    .block2_card_title {
        font-size: 16px;
    }
    .block2_card_created_date{
        font-size: 14px;
    }
    .block2_card_body{
        gap: 20px;
    }
}
@media screen and (max-width: 420px) {
    .needs_btns .col {
        flex-grow: 1;
        flex-shrink: 0;
        width: 100%;
    }
    .needs_btns .btn {
        width: 100%;
    }

    .stages_btns .col {
        flex-grow: 1;
        flex-shrink: 0;
        width: 100%;
    }
    .stages_btns .btn {
        width: 100%;
    }
}
@media screen and (max-width: 360px) {
    .needs_btns .btn-icon {
        margin: 0;
        display: none;
    }
}
