/*
    Theme Name: Правовой эксперт 27-06
    Author: Бурханов Ильдар
    Author URI: https://vk.com/burhanoff1992
    Description: Ведущие налоговые эксперты снизят Ваши риски и помогутбезболезненно пройти камеральные и выездные проверки.
    Requires at least: 6.1
    Tested up to: 6.3
    Requires PHP: 5.6
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    Text Domain: pravx
    Tags: tag1, tag2, tag3
*/

:root {
    /* fonts */
    --font-default: "Manrope", sans-serif;

    /* colors */
    --header-bg: #0F0F0F;
    --text-white: #ffffff;
    --text-header-link: #85848A;
    --black: #121212;
    --ltblue: #F8FAFF;
    --light: #f6f5f5;
    --white: #ffffff;
    --heading-color: #404247;
    --gray: #8e8e8e;
    --button-border-color-rgba: rgba(233, 233, 233, 0.4);
    --service-border-color-rgba: rgba(64, 66, 71, 0.2);
    --service-border-color-hover-rgba: rgba(64, 66, 71, 1);
    --spec-info-bg: #262626;
    --red: #C34249;
    --dark: #202020;

    /* etc... */
    --section-padding: 80px 0 calc(80px + var(--section-radius));
    --section-radius: 30px;
}

/* ::-webkit-scrollbar {
    display: none;
} */

@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

img,
svg {
    max-width: 100%;
}

body {
    font-family: var(--font-default);
    font-size: 18px;
    background-color: var(--white);
}

.header {
    color: #fff;
    font-size: 13px;
}

.header-top {
    background-color: var(--header-bg);
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    --padding: 9px 0;
    padding: var(--padding);
}

.header-info {
    display: flex;
    grid-column-gap: 15px;
}

.header-info-icon {
    display: inline-block;
    vertical-align: bottom;
}

.header-info-link {
    color: var(--text-white);
    text-decoration: none;
}

.header-info-link:hover {
    text-decoration: underline;
}

.header-social-item {
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);

    text-align: center;
    line-height: 30px;
    text-decoration: none;
    font-size: 69%;
}

.header-second {
    --padding: 22px 0;
    padding: var(--padding);
    background-color: #fff;
}

.header-logo {
    display: block;
}

/*.header-logo > img,*/
/*.header-logo > svg {*/
/*    */
/*}*/

.header-second-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-group {
    display: flex;
    align-items: center;
    grid-column-gap: 40px;
}

.header-nav {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    grid-column-gap: 40px;
}

/*.header-nav-item:first-child {*/
/*    margin-right: 150px;*/
/*}*/

.header-nav-link {
    color: var(--text-header-link);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.header-nav-item:first-child .header-nav-link::after {
    content: "\e900";
    font-family: "icomoon" !important;
    font-size: 50%;
    line-height: 0;
    position: relative;
    left: 8px;
    top: -1px;
}

.header-buttons {
    display: flex;
    grid-column-gap: 30px;
}

.burger-icon::after {
    content: ".";
    font-size: 0;
}

.burger-icon {
    display: block;
    width: 16px;
    height: 6px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.burger-icon-line {
    position: absolute;
    display: block;
    height: 1px;
    background-color: var(--text-header-link);
    top: 0;
    width: 100%;

    transition: all .2s ease-in-out;
}

.burger-icon-line:last-child {
    top: 5px;
}

#header {
    position: absolute;
    width: 100%;
    z-index: 4;
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    height: 40px;
    line-height: 36px;
    background-color: transparent;
    border: 1px solid #e0e0e0;
    color: var(--text-white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
    overflow: hidden;
}

.button-sm {
    padding: 0 15px;
    font-weight: 600;
    color: inherit;
}

div.asl_m {
    z-index:1 !important;
}
.button-lg {
    height: 50px;
    line-height: 46px;
    padding: 0 30px;
    font-size: 16px;
}

.button-icon {
    display: inline-block;
    font-size: 10px;
    margin-left: 12px;
    vertical-align: middle;
}

.button-icon-new {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 14px;
    border-radius: 100%;
    background: #EAEAEA;
    width: 26px;
    height: 26px;

}

/*.button:hover .button-icon {*/
/*    transform: translateX(5px);*/
/*}*/

.button-dark:hover {
    border-color: var(--black);
    color: var(--black);
    background-color: var(--black);
}

.button-dark:hover .button-icon::before {
    color: var(--text-white);
}

.button-dark {
    border-color: var(--button-border-color-rgba);
    color: var(--black);
}

.button-dark-border {
    border-color: var(--black);
}

.button-dark-border:hover {
    color: var(--text-white)
}

.button-dark .button-icon::before {
    color: var(--black);
}

.button-circle {
    width: 40px;
    padding: 0 !important;
    text-align: center;
    justify-content: center;
}

.button-circle .button-icon {
    margin-left: 0;
}

.header .button {
    border-color: var(--text-header-link);
    color: var(--text-header-link);
    /* border: none; */
}

.content {
    position: relative;
    z-index: 2;
}

.hero {
    color: var(--text-white);
    position: relative;
    z-index: 0;
}

.hero-slide {
    height: 850px;
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-color: var(--black);
}

.hero-slide-container {
    height: 100%;
    display: flex;
    align-items: center;
    /* background-color: rgba(20, 20, 20, .5); */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 16.5%, rgba(0, 0, 0, 0.265) 72.5%, #000000 100%);
    backdrop-filter: blur(6px);
}

.hero-slide-title {
    font-weight: 700;
    font-size: 64px;
    color: #fff;
}

.hero-slide-text {
    max-width: 540px;
    position: absolute;
    right: auto;
    left: 330px;
    bottom: -5px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}

.hero-title {
    position: relative;
    margin-bottom: 111px;
}

.hero-slider {
    position: relative;
}

.hero-slider-nav {
    text-align: right;
    position: absolute;
    width: 100%;
    top: calc(50% - 20px);
    z-index: 2;
}

.hero-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    z-index: 15;
}

.hero-prev button {
    width: 33px;
    height: 33px;
    border: #FFF 6px solid;
    border-radius: 60px;
    background: #F9F9F9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev button:hover {
    background: black;
}

.hero-prev button:hover svg {
    fill: white;
}

.hero-next {
    position: absolute;
    top: 50%;
    right: -20px;
    z-index: 15;
}

@media (max-width: 991px) {
    .hero-prev {
        display: none;
    }  

    .hero-next {
        display: none;
    }

    .hero-image-desktop {
        display: none;
    }

    .section-hero-col {
        align-items: center;
        text-align: center;
    }

    .diag-title-top-new {
        display: none;
    }

    .hero-mobile-consult {
        margin: 0 auto;
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 15px;
    }

    .hero-mobile-consult p {
        text-align: center;
        max-width: 180px;
        font-family: 'Manrope';
        font-style: normal;
        font-weight: 700;
        font-size: clamp(0.75rem, 0.4962rem + 1.0152vw, 1.125rem);
        line-height: 120%;
        color: #212121;
        margin-bottom: 0;
    }

    .hero-mobile-consult-image {
        width: 63px;
        height: 64px;
    }
}

@media (min-width: 992px) {
    .hero-mobile-consult {
        display: none;
    }
}

.hero-next button {
    width: 33px;
    height: 33px;
    border: #FFF 6px solid;
    border-radius: 60px;
    background: #F9F9F9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-next button:hover {
    background: black;
}

.hero-next button:hover svg {
    fill: white;
}

.hero-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px !important;
    z-index: 2;

    display: flex;
    grid-column-gap: 15px;
}

.hero-pagination-slide {
    flex: 1;
    font-size: 16px;
    height: 77px;

    opacity: 70%;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;

    position: relative;

    background-color: transparent;
}

.hero-pagination-slide.swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-pagination-title {
    padding-left: 6px;
}

.hero-pagination-progress {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-pagination-slide.swiper-pagination-bullet-active span {
    animation-name: countingBar;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;

    background-color: #fff;
    display: block;
    height: 100%;
}

@keyframes countingBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.company {
    background-color: var(--light);
}

.section {
    padding: var(--section-padding);
    border-radius: var(--section-radius) var(--section-radius) 0 0;
    /* margin-top: calc(var(--section-radius) * -1); */
    position: relative;
}

.section-head,
.section-heading {
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-heading {
    margin: 0;
}

.counter-item {
    display: flex;
    align-items: center;
    grid-column-gap: 16px;
}

.counter-value {
    font-size: 48px;
    font-weight: 600;

    display: flex;
    line-height: 1;

    display: flex;
}

.counter-icon {
    flex: 0 0 48px;
    max-width: 48px;
}

.counter-content {
    flex: 0 0 calc(100% - 48px);
    max-width: calc(100% - 48px);
}

.counter-caption {
    font-size: 12px;
    font-weight: 500;
}

.counters-text {
    font-size: 24px;
    font-weight: 500;
    color: #ccc;
    text-transform: uppercase;
    text-align: center;
    margin-top: 1.75rem;
}

.company-row {
    margin-top: 80px;
}

.company-content {
    position: relative;
    padding-left: 100px;
    padding-top: 80px;
}

.company-content::before {
    position: absolute;
    content: "\e903";
    font-family: "icomoon" !important;
    top: 54px;
    left: 25px;
    width: 54px;
    height: 44px;
    color: #e7e7e7;
    font-size: 44px;
    line-height: 44px;
}

.company-content img {
    margin: 30px 0;
    user-select: none;
}

.company-employee-name {
    font-weight: 500;
    margin-bottom: 10px;
}

.company-employee-status {
    font-size: 13px;
    color: var(--gray);
}

.services {
    background-color: var(--white);
}

.section-title {
    font-size: 40px;
    font-weight: 600;
}

.section-title span {
    color: var(--red);
}

.services__title {
    max-width: 680px;
}

.services__title span {
    display: block;
    font-weight: 700;
}

.services-row {
    margin-top: 50px;
}

.service-item {
    min-height: 120px;
    display: flex;
    align-items: center;
}

.service-item-count {
    flex: 0 0 40px;
    font-size: 13px;
    color: var(--gray);
    min-height: 120px;
    display: flex;
    align-items: center;
}

.service-item-body {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 120px;

    border-bottom: 1px solid var(--service-border-color-rgba);
}

.service-item:hover .service-item-body {
    border-color: var(--service-border-color-hover-rgba);
}

.service-item-button {
    flex: 0 0 40px;
}

.service-item-title {
    flex: 1;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 26px;
}

.service-item-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 176%;
    color: #282b31;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-clamp: 5;
    box-orient: vertical;
}

.services-grid {
    display: grid;
    gap: 70px;
}

.services-grid__item {
    gap: 30px;
}

.services-grid__item-img {
    max-width: 560px;
    width: 100%;
}

.services-grid__item-content {
    border-left: 2px solid #C34249;
    padding: 35px 0px 35px 40px;
    max-width: 445px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.services-grid__link {
    margin-top: auto;
}

.service-info__title span {
    font-weight: 700;
}

.consult {
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
}

.consult::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(20, 20, 20, .75);
}

.consult-inner {
    position: relative;
}

.consult-title {
    max-width: 548px;
    margin: 30px 0 60px;
}

.consult-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.consult-list-item {
    margin-bottom: 30px;
}

.consult-list-item i,
.consult-list-item img {
    font-size: 32px;
    vertical-align: middle;
    margin-right: 10px;
}

.consult-form {
    padding: 70px;
    background: linear-gradient(228.03deg, #282828 8.69%, #1D1D1D 65.33%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.17));
    /* border-radius: var(--section-radius); */
}

.form-shield {
    text-align: right;
    height: 30px;
}

.form-shield-image {
    position: relative;
    top: -40px;
    right: -40px;
}

.form-input-container {
    color: #fff;
    margin-bottom: 1rem;
}

.form-input-container p {
    margin: 0;
}

.form-input {
    color: #212121;
    width: 100%;
    background-color: transparent;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(135, 135, 135, 47%);
    padding: 13px;
    outline: none;
    font-size: 15px;
    font-weight: 400;

}

.form-input::placeholder {
    color: #8e8e8e;
}

.wpcf7-list-item-label {
    color: #8d8d8d;
    font-size: 12px;
}

.consult-form .form-input {
    border-color: rgba(255, 255, 255, 0.47);
    color: inherit;
}

.specs {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.specs>.container {
    position: relative;
}

.specs>.container::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: calc(100% - 14px);
    width: 100%;
    background-color: var(--white);
    z-index: 3;
}

.specs .section-head,
.specs .section-title {
    position: relative;
    z-index: 3;
}

.specs::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: calc(100% - 137px);
    width: 100%;
}

.spec-slide {
    position: relative;
    opacity: 0.5;
}

.spec-photo {
    padding-bottom: 310px;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.spec-slide.swiper-slide-active,
.spec-slide.swiper-slide-next,
.spec-slide.swiper-slide-next+.spec-slide {
    opacity: 1;
}

.spec-info {
    /*position: absolute;*/
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    background-color: var(--spec-info-bg);
    color: var(--white);
    padding: 30px 20px;
}

.spec-name {
    font-size: 16px;
    font-weight: 500;
}

.spec-prof {
    font-size: 13px;
    color: #B7B6B6;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
    align-items: center;
    grid-column-gap: 20px;
}

.slider-pagination {
    display: flex;
    grid-column-gap: 15px;
}

.counter-v {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 70px;
    background-color: var(--white);
    position: relative;
    z-index: 3;
}

.counter-v-item {
    margin-bottom: 20px;
}

.counter-v-value {
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
}

.counter-v-text {
    font-size: 13px;
    font-weight: 500;
}

.specs-description {
    margin-top: 70px;
    font-size: 24px;
    font-weight: 500;
}

.quote {
    position: relative;
    color: var(--text-white);
    overflow: hidden;

    padding: 120px 0 153px;
}

.quote::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background-color: rgba(20, 20, 20, 0.65);
}

.quote-row {
    margin: 60px 0 10px;
    position: relative;
}

.quote-text {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
}

.quote-author {
    margin-top: 20px;
    font-size: 16px;
}

.cases {
    background-color: var(--light);
    position: relative;
}

.case-photo {
    border-radius: var(--section-radius);
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
    padding-bottom: 119%;
}

.case-content {
    padding: 0 30px;
    font-size: 16px;
    line-height: 1.4;
}

.case-content h5 {
    font-size: 24px;
    font-weight: 500;
    margin: 23px 0;
}

.partners {
    background-color: var(--white);
}

.partner-fix {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-logo {
    filter: grayscale(100%);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,.2)
}

.partner-logo:hover {
    filter: grayscale(0%);
}

.row-partner-cards {
    margin-top: 5rem;
    margin-bottom: 1rem;
}

.partner-card {
    display: flex;
    flex-basis: 50%;
    border: 1px solid rgba(0,0,0, 0.2);
    font-size: 16px;
    font-weight: 500;
    border-radius: 20px;
    background-color: #fff;
}

.partner-card__photo {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    background-color: var(--red);
}

.partner-card__text {
    font-weight: 500;
}

.partner-card__photo img {
    position: absolute;
    bottom: 0;
    left: 0;
}

.partner-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 30px 15px;
}

.partner-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.partner-card__name {
    font-size: 10px;
    opacity: 0.5;
}

.partner-card-small .partner-card__photo {
    flex: 0 0 139px;
    max-width: 139px;
}

.partner-card__text + .partner-card__name {
    margin-top: 10px;
}

.partner-card-small .partner-card__text {
    font-size: 12px;
}

.partner-card-small .partner-card__name {
    font-size: 8px;
}

.partner-card-small .partner-card__header {
    margin-bottom: 10px;
}

.partner-card-small .partner-card__content {
    padding: 15px;
}

/* .partner-card-big .partner-card__photo img {
    transform: scale(1.5);
    transform-origin: 138px 100%;
} */

.case-center {
    display: flex;
    align-items: center;
}

.reviews>.container {
    position: relative;
}

.reviews>.container::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: calc(100% - 14px);
    width: 100%;
    background-color: var(--light);
    z-index: 3;
}

.reviews .counter-v {
    background-color: var(--light);
}

.reviews .section-head {
    position: relative;
    z-index: 3
}

.reviews {
    background-color: var(--light);
    overflow: hidden;
}

.reviews-photo {
    display: block;
    padding-bottom: 139%;
    /* box-shadow: 2px 2px 0 0 rgba(0,0,0, 0.1); */
    cursor: pointer;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}

.reviews-slide {
    opacity: .5;
    transition: all .2s ease;
    text-align: center;
}

.reviews-slide.swiper-slide-active,
.reviews-slide.swiper-slide-next,
.reviews-slide.swiper-slide-next+.reviews-slide {
    opacity: 1;
}

.reviews-text {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 500;
}

.privacy {
    background-color: #141414;
    color: var(--text-white);
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.privacy>.container-fluid {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.privacy>.container-fluid>.row {
    height: 100%;
}

.privacy>.container {
    position: relative;
}

.privacy-content {
    padding-top: 80px;
}

.consult-subtitle {
    margin-top: -30px;
    margin-bottom: 30px;
    opacity: 50%;
}

.news {
    background-color: var(--white);
}

.button-red-text {
    color: var(--red);
}

.button-red-text:hover {
    color: var(--text-white);
}

.news-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-photo {
    padding-bottom: 100%;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1
}

.news-title {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    min-height: 90px;
}

.news-date {
    color: var(--gray);
    font-size: 13px;
}

.news-card:hover .news-title {
    text-decoration: underline;
}

.consult-free {
    margin-top: 60px;
    padding: 50px;
    /* border-radius: var(--section-radius); */
    border: 1px solid var(--red);
    box-shadow: 15px 15px 0 0 var(--light);
}

.consult-free-title {
    font-size: 16px;
    margin-bottom: 40px;
}

.consult-free .section-title {
    margin-bottom: 44px;
}

.consult-free-logo {
    height: 36px;
}

.contacts {
    padding-top: 0;
    padding-bottom: var(--section-radius);
    overflow: hidden;
}

.container-map {
    padding: 0;
}

.contacts .container {
    margin-top: 90px;
}

.contact-name {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.1;
}

.contact-info {
    font-weight: 600;
}

.contact-item {
    margin-top: 30px;
}

.contact-link {
    display: table;
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.balloon-wrap {
    padding: 5px 15px;
    width: 200px;
    text-align: center;
}

.footer {
    background-color: #141414;
    position: relative;
    color: white;

    background-position: right top;
    background-repeat: no-repeat;
}

.col-footer-button {
    text-align: right;
}

.footer-logo img,
.footer-logo svg {
    height: 57px;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.footer-nav-item {
    margin-bottom: 15px;
}

.footer-link {
    color: inherit;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-link img {
    vertical-align: middle;
}

.slider-scroll {
    height: 2px;
    background-color: rgba(33, 33, 33, 0.15);
    opacity: 0;
}

.swiper-scrollbar-drag {
    background-color: var(--red);
}

.slides-count {
    font-size: 16px;
}

.cases-nav {
    display: none;
}

.contacts-mobile {
    display: none;
}

.overlay {
    position: absolute;
    top: 44px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(15, 15, 15, 0.95);
    z-index: 2;
    display: none;
    pointer-events: none;
}

.header.open {
    height: 100%;
}

.burger-menu {
    position: relative;
    z-index: 3;
    display: none;

    padding-top: 60px;
}

.burger-menu-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
}

.burger-menu-item {
    margin-bottom: 20px;
}

.burger-menu-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.open-burger #burger_button {
    z-index: 3;
}

.open {
    overflow: hidden;
}

#burger_button {
    position: relative;
}

.open #header {
    height: 100%;
}

.services-menu {
    display: none;
}

.open-services .header-second-row {
    position: relative;
    z-index: 3;
}

.services-menu {
    position: relative;
    z-index: 3;
}

.services-menu .button:not(.burger-trigger) {
    border-color: transparent;
}

.services-menu .button-icon::before {
    color: var(--gray);
}

.services-menu .button:hover {
    background-color: var(--white);
}

.services-menu .button:hover .button-icon::before {
    color: var(--black);
}

.open-burger .burger-icon-line:first-child,
.open-services .burger-icon-line:first-child {
    transform: rotate(135deg);
    top: 50%;
}

.open-burger .burger-icon-line:last-child,
.open-services .burger-icon-line:last-child {
    transform: rotate(-135deg);
    top: 50%;
}

.page-container {
    padding-top: 140px;
    padding-bottom: calc(100px - var(--section-radius));
    min-height: 100%;
    background-color: var(--light);
}

.footer_mobile {
    display: none;
    padding: 60px 30px 30px;
    background-color: #222;
    border-radius: 30px 30px 0 0;

    text-align: center;
}

.footer-social {
    display: flex;
    grid-column-gap: 57px;
    justify-content: center;
}

.footer-social-link {
    display: inline-flex;
    font-size: 16px;
    font-weight: 400;
    color: #d9d9d9;
}

.footer-links {
    margin: 3rem 0;
}

.footer-links-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px;
}

.news-row {
    margin-top: 40px;
}

.header-page .header-nav-link {
    color: var(--black);
}

.header-page .burger-icon-line {
    background-color: var(--black);
}

.open .header-page .header-nav-link {
    color: var(--text-white);
}

.open .header-page .burger-icon-line {
    background-color: var(--text-white);
}

.open-burger .header-page #burger_button {
    border-color: var(--white);
}

.post-thumbnail {
    padding-bottom: 32%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;

    margin: 30px 0;
}

.post-date {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
    margin-top: 15px;
}

.post-content {
    font-size: 16px;
    font-weight: 500;
}

.header-page .header-logo-svg path[fill="white"] {
    fill: var(--black);
}

.header-logo-active path[fill="white"] {
    fill: var(--text-white) !important;
}

.service-card-counter {
    font-size: 42px;
    color: var(--red);
    margin-bottom: 20px;
}

.services-card-text {
    font-size: 16px;
    font-weight: 500;
}

.mobile-more-news {
    display: none;
    margin-top: 15px;
}

.services-alt .service-item {
    display: block;
    min-height: unset;
    border: 2px solid #B44B4D;
    text-decoration: none;
    color: inherit;
    transition: all .2s ease-in-out;
}

.services-alt .service-item:hover {
    border-color: var(--black);
}

.services-alt .service-item-body {
    display: flex;
    align-items: center;
    grid-column-gap: 20px;
    padding: 40px;
    border-bottom: none;
}

.services-alt .service-item-image {
    padding-bottom: 66%;
    background-position: center;
    background-size: cover;
}

.service-item__alt:hover .button {
    border-color: var(--black);
    color: var(--black);
    background-color: var(--black);
}

.service-item__alt:hover .button-icon::before {
    color: white;
}

.faq-button {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.302 0.691262C9.566 0.946278 9.566 1.35974 9.302 1.61476L5.478 5.30874C5.21401 5.56375 4.78599 5.56375 4.522 5.30874L0.697994 1.61476C0.434002 1.35974 0.434002 0.946278 0.697994 0.691262C0.961986 0.436246 1.39 0.436246 1.654 0.691262L5 3.9235L8.346 0.691262C8.61 0.436246 9.03801 0.436246 9.302 0.691262Z' fill='%23212121'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;

    flex: 0 0 40px;
}

.faq-button:hover {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.302 0.691262C9.566 0.946278 9.566 1.35974 9.302 1.61476L5.478 5.30874C5.21401 5.56375 4.78599 5.56375 4.522 5.30874L0.697994 1.61476C0.434002 1.35974 0.434002 0.946278 0.697994 0.691262C0.961986 0.436246 1.39 0.436246 1.654 0.691262L5 3.9235L8.346 0.691262C8.61 0.436246 9.03801 0.436246 9.302 0.691262Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.faq-list-button {
    font-size: 18px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column-gap: 20px;

    padding: 20px 0;
}

.faq-list-button.collapsed .faq-button {
    transform: rotate(180deg);
}

.faq-list-item {
    border-bottom: 1px solid var(--service-border-color-rgba);
}

.faq-list-body {
    padding-bottom: 16px;
    font-size: 16px;
}

.faq-list-header {
    margin: 0;
}

.reviews-section {
    background-position: center;
    background-size: cover;
}

.reviews-section .section-title {
    color: white;
}

.reviews-section__container {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-new {
    padding-top: 280px;
    padding-bottom: 140px;
}

.hero-form {
    padding: 32px;
    border-radius: 10px;
    background-color: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.5);

    color: white;
    backdrop-filter: blur(60px);
}

.hero-form-header {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-form-header span {
    background-color: var(--red);
    padding: 0 6px 2px 6px;
    border-radius: 6px;
}

.hero-form-content {
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
}

.hero-form-icon {
    flex: 0 0 30px;
    max-width: 30px;
}

.hero-form-body {
    flex: 1;
    font-size: 13px;
}

.hero-form-title {
    font-weight: 100;
}

.hero-form-text {
    font-weight: 500;
}

.modal-hero-body {
    padding: 0;
    border: none;
}

.hero-form-new {
    color: var(--white);
}

.hero-modal-close {
    position: absolute;
    top: 0;
    right: -60px;
    color: white;
    background-color: transparent;
    padding: 0;
    border: none;

    width: 60px;
    height: 60px;

    line-height: 60px;

    font-size: 34px;

    opacity: 0.5;
    transition: all .2s ease-in-out;
}

.hero-modal-close:hover {
    cursor: pointer;
    opacity: 1;
}

.hero-form-new .form-input {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
}

.consult-form p {
    margin-bottom: 0;
}

.hero-new {
    color: var(--white);
}

.hero-new-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-inner {
    padding-left: 0px;
    padding-right: 0px;
}

.hero-buttons-flex {
    display: flex;
    grid-gap: 28px;
    margin-top: 30px;
}

.wpcf7-list-item input[type='checkbox'] {margin-right:10px;}

.wpcf7-list-item {
    margin: 0;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr 1176px 1fr;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    grid-column-gap: 48px;
}

.block {
    padding: 24px;
    border-radius: 10px;
}

.block-with-hammer {
    background-position: right top;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

.counter-block {
    background-color: #fcfcfc;
}

.section-hero {
    height: 762px;
    padding-top: 160px;
}

.section-hero-col p {
    font-size: 14px;
    font-weight: 500;

    margin-bottom: 24px;
}

.section-hero-desc {
    max-width: 365px;
    font-style: normal;
    line-height: 120%;
    color: #000000;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .section-hero-desc {
        max-width: 340px;
        margin: 0 auto;
    }
}

.section-hero-btns {
    display: flex;
    grid-gap: 20px;
}

.section-hero-image {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-background-size: cover;
    background-size: cover;
    height: 100%;

    position: relative;

    overflow: hidden;
}

.section-hero-image-new {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-background-size: 80%;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: auto;

    position: relative;

    overflow: hidden;
}

.section-hero-image-text {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 126px 40px 40px;

    font-size: 14px;
    color: white;

    background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0,0,0, .75) 100%);
}

.section-hero-image-text div {
    opacity: 50%;
}

.section-hero-image-text h4 {
    font-size: 22px;
    font-weight: 500;
}

.section-hero-content {
    position: relative;
    z-index: 3;
}

.section-hero-col {
    padding: 70px 40px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-weight: 700;
    font-size: 37px;
    margin-bottom: 1rem;
}

.section-hero-title {
    font-style: normal;
    font-size: 37px;
    line-height: 52px;
    color: #212121;
    /*max-width: 450px;*/
}

.section-hero-title span {
    color: var(--red);
}

@media (max-width: 991px) {
    .section-hero-title {
        font-size: 32px;
        line-height: 34px;
        margin-bottom: 20px;
    }
}

.button-sharper {
    border-radius: 13px;
    border-color: #5479F7;
    background-color: #5479F7;
}

.button-sharper-new {
    border-radius: 12.7px;
    border-color: #5479F7;
    background-color: #5479F7;
    padding: 9px 19px;
    font-weight: 600;
    line-height: 21px;
    color: #F1F1F1;
    letter-spacing: 0;
}

.button-tg {
    border-color: #2AABEE;
    background-color: transparent;
    color: var(--dark);

    margin-top: 3rem;

    backdrop-filter: blur(25px);
}

.button-tg .button-icon {
    font-size: 18px;
}

.button-tg .button-icon::before {
    color: #2AABEE;
}

.button-label {
    display: flex;
    padding: 28px;
    background-image: url('frontend/assets/img/icons/hero-circle-text.png');
    background-position: right top;
    background-repeat: no-repeat;
}

.header-grid-left {

}

.header-logo {
    text-align: right;
    padding: 12px 26px;
    border-width: 1px 1px 1px 0;
    border-style: solid;
    border-color: #e5e5e5;
    border-radius: 0 16px 16px 0;
    margin-left:-24px;
}

.button-red {
    background-color: var(--red);
    border-color: var(--red);
}
.footer .button-red {
    background-color: transparent;
    border-color: var(--red);
}
.navi {
    margin: 0;
    list-style: none;
    display: flex;
    grid-column-gap: 4px;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid #d7d7d7;
    background-color: #fff;
}

.navi-link {
    padding: 12px 22px;
    display: inline-block;
    border-radius: 5px;
    border: none;

    font-size: 14px;
    font-weight: 400;
    color: #393939;
    background-color: #fff;
}

.navi-link.active {
    background-color: var(--red);
    color: #fff;
}

.section-services {
    background-color: var(--ltblue);
}

.block-bordered {
    border: 1px solid #c7c7c7;
}

.block-white {
    background-color: #fcfcfc;
}

.block-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;

    padding-left: 12px;
    border-left: 3px solid var(--red);
}

.color-red {
    color: var(--red);
}

.block-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.block-title {
    font-size: 20px;
    font-weight: 500;
}

.block-tabs {
    height: 200px;
}

.block-desc {
    font-size: 14px;
    font-weight: 500;
    opacity: 50%;
}

.button-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.button-white {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.2);;
    color: #000;
}

.button-white-new {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.2);;
    font-weight: bold;
    color: #000;
    padding: 12.5px 21.5px;
}

.button-white .button-icon i::before {
    color: #000;
}

.block-tabs:hover {
    border-color: var(--red);
    background-color: var(--red);
    transition: all .125s ease-in-out;
}

.block-tabs:hover .block-title {
    color: #fff;
    border-color: #fff;
}

.block-hover-btn {
    display: none;
}

.block-tabs:hover .block-hover-btn {
    display: block;
}

.block-tabs:hover .block-desc {
    display: none;
}

.block-tabs-alt {
    background-position: right top;
    background-repeat: no-repeat;
}

.block-button-inner {
    text-align: right;
}

.block-dark {
    border-color: black;
    background-color: black;
    color: white;
}

.block-tabs-alt:hover {
    background-color: black;
    color: white;
    border-color: black;
}

.block-title-no-border {
    padding-left: 0;
    border: none;
}

.section-block {
    background-position: right center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #c7c7c7;
}

.section-block-new {
    overflow: hidden;
    background-color: #F9F9F9;
    border: 1px solid #F1F1F1;
    border-radius: 15px;

}

.section-block-content {
    height: 100%;
    position: relative;
    background-position: left bottom;
    background-repeat: no-repeat;

    padding: 0 120px 0 40px;
}

.section-block-row {
    background-image: url('./frontend/assets/img/hero-shield.png');
    background-repeat: no-repeat;
    background-position-x: -255px;
}

.form-card {
    padding: 20px 55px;
    background-color: rgba(0,0,0, 50%);
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    border: 1px solid rgba(135,135,135, 47%);
}

.form-title {
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.form-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: white;
    line-height: 1.1;
    margin: 30px 0;
}

.checkbox-text {
    color: var(--gray);
    font-size: 11px;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 6px;
}

.section-block-left-col {
    padding-top: 40px;
}

.section-block-title {
    font-size: 16px;
    font-weight: 500;
    color:#fff;
}

.section-consult-form {
    margin-top: 1.5rem;
}

.section-block-text-big {
    margin-top: 1rem;
    font-size: 32px;
    font-weight: 600;
    color: #212121;
    line-height: 135%;
}

.section-block-text {
    margin-top: 1rem;
    color: rgba(0, 0, 0, 0.6);
}

.section-block-gray {
    background-color: rgba(142, 142, 142, 0.05);
}

.section-block-content-bg-right {
    background-position: right bottom;
}

.cases-row {
    margin-top: 2rem;
}

.case-card {
    /*height: 430px;*/
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;

    border-radius: 20px;
    overflow: hidden;
}

.case-card-image {
    padding-bottom: 70%;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.case-card-panel {
    /*height: 100%;*/
    /*padding: 20px 33px;*/
    /*display: flex;*/
    /*flex-direction: column;*/

    /*justify-content: flex-end;*/
    background-color: #efefef;
    padding: 26px;
}

.case-card-shortcontent {
    font-size: 14px;
    opacity: .75;
    font-weight: 500;
    line-height: 1.2;
}

.case-card-name {
    font-size: 20px;
    font-weight: 600;

    line-height: 1.1;

    margin-bottom: 1rem;
}

.block-light {
    background-color: var(--ltblue);
    border-color: var(--ltblue);
    padding: 50px;
}

.block-radius {
    border-radius: 24px;
}

.diag-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.diag-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 3rem;
}

.diag-list {
    font-size: 18px;
    opacity: 60%;
    line-height: 1.2;

    margin-bottom: 4rem;
}

.section-partners {
    background-color: var(--ltblue);
}

.partner-card__content ~ .partner-card__photo {
    border-radius: 0 20px 20px 0;
}

.partner-card__content ~ .partner-card__photo img {
    border-radius: 0 0 20px 0;
}

.partner-card__photo:first-child {
    border-radius: 20px 0 0 20px;
}

.partner-card__photo:first-child img {
    border-radius: 0 0 0 20px;
}

#map canvas {
    filter: grayscale(1);
}

.section-counters {
    background-color: #fff;
}

.button-slider .button-icon::before {
    color: var(--dark)
}

.button-slider {
    border: 2px solid rgba(233, 233, 233, 0.4)
}

.modal-pravx-content {
    padding: 20px;
}

.modal-pravx-title {
    font-size: 24px;
    font-weight: 600;
    padding: 0 16px;
}

.modal-pravx .modal-footer {
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
}

.modal-head {
    display: flex;
    justify-content: space-between;
    grid-column-gap: 12px;
}

.modal-pravx-close {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
}

.modal-body {
    font-size: 14px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    border-radius: 10px;
    font-size: 14px;
    padding: 10px 15px;
    color: #ffff;
}

.header-main {
    padding-top: 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.header-main-left {
    display: flex;
    align-items: center;

    grid-column-gap: 40px;
}

.header-main-right {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-main-item {
        display: none;
    }
}

.header-main-logo {
    display: block;
}

.header-main-logo img {
    height: 48px;
}

.header-main-row {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main-link {
    color: var(--text-header-link);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.hero-slider-new-pagination {
    text-align: center;
}

.swiper-horizontal>.hero-slider-new-pagination .swiper-pagination-bullet {
    width: 38px;
    height: 5px;
    border-radius: 8px;
    margin: 0 5px;

    transition: all .2s ease-in-out;
    vertical-align: middle;
    background-color: #D9D9D9;
    opacity: 1;
}

.swiper-horizontal>.hero-slider-new-pagination .swiper-pagination-bullet-active {
    width: 67px;
    height: 12px;
    background-color: #D9D9D9;
}

.button-gray {
    background-color: #f0f0f0
}

.text-bg-pravx {
    background-color: #5479F7;
    font-weight: 600;
    font-size: 16px;
}

.text-right {
    text-align: right;
}

.diag-title-top {
    color: var(--red);
    font-size: 14px;
}

.diag-title-top-new {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 15px;
}

.price {
    font-weight: 800;
    line-height: 1;
}

.price-discount {
    font-size: 58px;
}

.price-actual {
    font-size: 28px;
    color: var(--red);
    text-decoration: line-through;
}

.diag-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.6);
}

.diag-text small {
    font-size: 60%;
}

.diag-bg {
    padding-bottom: 100%;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
}

.diag-button {
    margin-top: 33px;
}

.form-submit-button {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.experience-container {
    position: relative;
    overflow: hidden;
    margin-top: 45px;
    width: 100%;
    max-width: 1200px;
    min-height: 530px;
    display: flex;
    align-items: flex-end;
    border-radius: 30px;
}

.experience-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left;
}

.experience-text-container {
    margin: 40px 47px;
    padding: 25px;
    max-width: 380px;
    max-height: 385px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 30px;
}

.experience-heading {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
}

.experience-text {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
}

.experience-link {
    margin-top: 0;
    width: 100%;
    justify-content: center;
}

.burger-fix {
    border: 0;
}

.work-item-body {
    padding: 25px 20px;
    background-color: #fff;
    border-radius: 15px;

    flex: 1;
}

#how_working {
    background-color: #f9f9f9;
}

.work-list {
    margin-top: 3rem;
}

.work-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.work-item-step {
    position: relative;
    flex: 0 0 100px;
    max-width: 100px;
    font-size: 14px;
}

.work-item-step::before,
.work-item-step::after {
    position: absolute;
}

.work-item-step::before {
    content: '·';
    left: 53px;
    top: 42%;
    line-height: 0;
    font-size: 4.2rem;
    width: 1px;
    height: 1px;
}

.work-item-step::after {
    content: '';
    left: 60px;
    top: -47px;
    bottom: -69px;
    border-left: 2px dotted #333;
}


.work-item:first-child .work-item-step::after {
    top: 55%;
    bottom: -66px;
}

.work-item:last-child .work-item-step::after {
    bottom: 50%;
}


.work-item-title {
    font-size: 20px;
    line-height: 1.1;
}

.work-item-text {
    font-size: 14px;
    opacity: .75;
    margin-top: 1rem;
}