.panel-adaptive {
    position: fixed;
    top: 5rem;
    right: 0;
    left: 100%;
    bottom: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding: 40px 20px 100px;
    overflow-y: auto;
    background: var(--light);
    display: none;
    -webkit-transition: -webkit-transform .35s cubic-bezier(.55,.085,.68,.53);
    transition: -webkit-transform .35s cubic-bezier(.55,.085,.68,.53);
    transition: transform .35s cubic-bezier(.55,.085,.68,.53);
    transition: transform .35s cubic-bezier(.55,.085,.68,.53), -webkit-transform .35s cubic-bezier(.55,.085,.68,.53);
    transition: transform .35s cubic-bezier(.55,.085,.68,.53),-webkit-transform .35s cubic-bezier(.55,.085,.68,.53);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
}
.panel-adaptive.panel-right {
    -webkit-transform: translateX(-100%) translateZ(0);
    transform: translateX(-100%) translateZ(0);
    -webkit-transition-duration: .63s;
            transition-duration: .63s;
    -webkit-transition-timing-function: cubic-bezier(.23,1,.32,1);
            transition-timing-function: cubic-bezier(.23,1,.32,1); 
}
.panel-adaptive ul li {
    list-style: none;
    margin-bottom: 20px;
}
.panel-adaptive ul li a {
    display: block;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 160%;
    color: #0d1536;
    text-transform: uppercase;
}
.header__burger {
    display: none;
}
.hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--purple);
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible; 
}
.hamburger-box {
    width: 30px;
    height: 27px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; 
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--purple);
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease; 
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; 
}
.hamburger-inner::before {
    top: -10px; 
}
.hamburger-inner::after {
    bottom: -10px; 
}

/* Elastic Reverse */
.hamburger--elastic-r .hamburger-inner {
    top: 5px;
    -webkit-transition-duration: 0.275s;
            transition-duration: 0.275s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}
.hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    -webkit-transition: opacity 0.125s 0.275s ease;
    transition: opacity 0.125s 0.275s ease; 
}
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}

.hamburger--elastic-r.active .hamburger-inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
            transform: translate3d(0, 10px, 0) rotate(-135deg);
    -webkit-transition-delay: 0.075s;
            transition-delay: 0.075s; 
}
.hamburger--elastic-r.active .hamburger-inner::before {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    opacity: 0; 
}
.hamburger--elastic-r.active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
            transform: translate3d(0, -20px, 0) rotate(270deg);
    -webkit-transition-delay: 0.075s;
            transition-delay: 0.075s; 
}
.panel-adaptive {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.panel__phone a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-weight: 600;
    font-size: 2rem;
    line-height: 120%;
    color: #7e3ff2;
    white-space: nowrap;
    transition: .3s;
}
.panel__action {
    margin-top: auto;
}
.panel__action .btn {
    width: 100%;
}


@media (max-width: 600px) {
    .cta__text {
        margin: 20px 0;
        max-width: 240px;
    }
    html {
        font-size: 12px;
    }
    body {
        padding-top: 8rem;
    }

    .clients {
        display: none;
    }

    .case-item {
        padding: 1.5rem;
        width: 100%;
        flex-direction: column;
    }
    .case-item__image-tags {
        order: -1;
    }
    .case-item__image {
        order: -1;
        width: 100%;
    }
    .case-item__tags {
        justify-content: flex-start;
    }
    .title-block {
        flex-wrap: wrap;
    }
    .cases__tags {
        flex-wrap: wrap;
    }
    .cases .btn_ghost {
        display: none;
    }
    .why-item__title br {
        display: none;
    }
    .cta__image {
        display: none;
    }
    .cta__logo {
        display: none;
    }
    .cta__title {
        font-size: 3rem;
    }
    .cta__content {
        position: relative;
        bottom: inherit;
        right: inherit;
        max-width: 100%;
    }
    .cta__title {
        position: relative;
        bottom: inherit;
        left: 0;
    }
    .cta__in {
        padding: 60px 16px 450px;
        background: url(/img/tg-mobile.jpg);
        background-size: cover;
        background-position: bottom;
        border-radius: 20px;
    }

    .hero__video {
        clip-path: none !important;
        border-radius: 1.875rem;
    }
    .case-page__title br {
        display: none;
    }
    .tasks {
        overflow: hidden;
    }
    .results {
        padding-bottom: 0;
    }
    .form__terms-submit {
        flex-direction: column;
    }
    .service-cta__title {
        font-size: 3rem;
    }
    .m-140 {
        margin-bottom: 3.75rem;
    }
    .service-cta {
        overflow: hidden;
    }
    .case-page__title {
        font-size: 3rem;
    }
    .service-cta__img {
        position: relative;
        bottom: inherit;
        right: inherit;
    }
    .service-cta__img img {
        max-width: 100%;
    }
    .service-cta {
        padding-bottom: 0;
    }
    header {
        padding: 0;
    }
    header.animate {
        background-color: var(--light);
    }
    h1.contacts__title {
        font-size: 4rem;
    }
    .header__in {
        height: 5rem;
    }
    .hero__work {
        display: none;
    }
    .hero__title-1 {
        white-space: wrap;
    }
    .hero__title {
        font-size: 3rem;
    }
    .hero__sub {
        position: relative;
        top: 0;
        left: 0;
        right: inherit;
    }
    .hero__screen-features .hero__feature {
        width: 50%;
    }
    .panel-adaptive {
        display: flex;
    }
    .footer__in {
        flex-direction: column;
    }
    .container {
        width: 100%;
        padding: 0 20px;
    }
    .header__nav,
    .header__phone,
    .header__lead {
        display: none;
    }
    .header__burger {
        display: block;
    }
    .header__in {
        justify-content: space-between;
    }
    .contacts__title-img {
        margin-bottom: 1.875rem;
    }
    .footer__col-brand {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer__col {
        min-width: 100%;
        width: auto;
    }
    .footer__in {
        gap: 2.5rem;
    }
    .footer__nav li {
        margin-bottom: 2.5rem;
    }
    .footer__nav li:last-child {
        margin-bottom: 0;
    }
    .footer__bottom {
        flex-direction: column;
    }
    .footer__phone a {
        font-weight: bold;
        font-size: 1.41rem;
    }
    .footer__email a {
        font-size: 1.41rem;
        font-weight: bold;
    }
    .front-hero__features-row {
        overflow: hidden;
    }
    .front-hero__features-row.row {
        margin: 0 -10px;
    }
    .front-hero__features-row.row .col-12 {
        width: 100%;
        padding: 0 10px;
    }
    .front-hero__features-row.row .col-6 {
        width: 50%;
        padding: 0 10px;
    }
    .hero-feature__arrow {
        display: none;
    }
    .hero__feature {
        padding: 16px;
        height: 180px;
        margin-bottom: 20px;
    }
    .hero-feature__image img {
        max-width: 120px;
    }
    .hero-feature__title {
        font-size: 20px;
    }
    .front_hero .hero__content {
        margin-bottom: 0;
    }
    .hero__services-all .btn {
        width: 100%;
    }
    .hero__feature-dir {
        padding-bottom: 0;
    }
    .hero-about__image {
        display: none;
    }
    .hero__about .hero__feature-about {
        padding-bottom: 80px;
    }
    .hero-about__btn {
        left: 0;
        width: 100%;
        border-radius: 0 0 0.625rem 0.625rem;
        border-left: none;
    }
    .hero-about__btn .btn {
        width: 100%;
        border-radius: 0 0 0.625rem 0.625rem;
    }
    .hero-about__title {
        font-size: 3rem;
    }
    .result {
        padding: 60px 0;
    }
    .result__header {
        position: relative;
        top: 0;
        right: inherit;
    }
    .result__sub {
        position: relative;
        bottom: inherit;
    }
    .result__img {
        margin: 32px 0;
    }
    .result__header h2 {
        font-size: 3rem;
    }
    .result__action {
        position: relative;
        margin-top: 20px;
        height: 3.125rem;
        line-height: 3.125rem;
        bottom: inherit;
        right: inherit;
        border: none;
    }
    .result__image {
        width: calc(100% + 40px);
        margin: 0 -40px;
    }
    .result__img {
        width: calc(100% + 40px);
    }
    .service-calc__title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .cases__tags a {
        font-size: 14px;
    }
    .title-block h2 {
        margin-bottom: 20px;
    }
    .result__action .btn {
        width: 100%;
        border-radius: 0.625rem;
    }
    .hero_front.hero__title {
        top: 15px;
    }
    .hero_front .hero__title div {
        position: relative;
        width: fit-content;
        padding-right: 20px;
        padding-bottom: 20px;
        background: var(--bg);
        border-radius: 0 0 1.88rem;
    }
    .hero_front .hero__title div:before {
        content: '';
        position: absolute;
        top: 23px;
        right: -21px;
        width: 2rem;
        height: 2rem;
        background-size: 2rem;
        background-image: url(/img/border.svg);
        pointer-events: none;
    }
    .hero_front .hero__title div:after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 0;
        width: 2rem;
        height: 2rem;
        background-size: 2rem;
        background-image: url(/img/border.svg);
        pointer-events: none;
    }
    .hero__video {
        margin-bottom: 20px;
    }
    .hero__sub {
        margin-bottom: 20px;
    }
    h2,
    .why h2 {
        font-size: 3rem;
    }
    .case-item__image-tags {
        gap: 10px;
    }
    .case-item__title {
        margin-bottom: 10px;
    }
    .case-item__title a {
        font-size: 20px;
    }
    .case-item__text {
        margin-bottom: 20px;
    }
    .case-item__image-tags {
        width: 100%;
    }
    .case-item__action .btn {
        width: 100%;
    }
    .quiz__in {
        padding: 40px 16px;
    }
    .title-block__right {
        display: none;
    }
    .review-item {
        padding: 16px;
    }
    .review-item__author {
        font-size: 20px;
    }
    .team__logo {
        display: none;
    }
    .contacts__list {
        margin-bottom: 1.875rem;
    }
    .services-hero__img {
        display: none;
    }
    .services__hero h1 {
        position: relative;
        left: 0;
        font-size: 3rem;
    }
    .service-row__decor {
        display: none;
    }
    .service-row {
        margin-bottom: 0;
    }
    .hero__img {
        clip-path: none;
    }
    .hero_about h1 {
        font-size: 3rem;
    }
    .hero_about .hero__sub {
        display: none;
    }
    .hero_about .hero__img {
        height: 180px;
        clip-path: none !important;
        border-radius: 20px;
    }
    .hero__action {
        display: none;
    }
    
    .hero_service .hero__img {
        margin-bottom: 20px;
        border-radius: 20px;
        height: 200px;
    }
    .hero_service .hero__title {
        font-size: 3rem;
    }
    .hero_service .hero__title span {
        width: fit-content; 
        font-size: 3rem;
        background: var(--bg);
        color: #fff;
        border-radius: 0 0 20px 0;
        padding: 0 10px 10px 0;
        position: relative;
    }
    .hero_service .hero__title span.purple {
        color: var(--purple);
    }
    .hero_service .hero__action {
        display: block;
        position: relative;
        margin-top: 20px;

    }
    .hero_service .hero__action .btn {
        width: 100%;
        border-radius: 10px;
    }
    .hero_service .hero__title span:before {
        content: '';
        position: absolute;
        top: 0;
        right: -21px;
        width: 2rem;
        height: 2rem;
        background-size: 2rem;
        background-image: url(/img/border.svg);
        pointer-events: none;
    }
    .hero_service .hero__title span:after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 0;
        width: 2rem;
        height: 2rem;
        background-size: 2rem;
        background-image: url(/img/border.svg);
        pointer-events: none;
    }
    .why.why_cases h2 {
        font-size: 3rem;
    }
    .economy__title {
        font-size: 3rem;
        max-width: 265px;
    }
    .economy__title br {
        display: none;
    }
    .economy__in {
        gap: 32px;
    }
    .economy__ya {
        position: relative;
        right: inherit;
        bottom: inherit;
    }
    .economy__ya img {
        width: 92px;
        height: 92px;
    }
    .economy__arrow {
        bottom: 2.5rem;
        right: 2.5rem;
        top: inherit;
    }
    .audit__title {
        font-size: 3rem;
    }
    .audit__title br {
        display: none;
    }
    .audit__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 20px;
    }
    .audit__bottom-item svg {
        width: 20px;
    }
    .audit__bottom-text {
        font-size: 24px;
    }
    .hero_about .hero__title {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--bg);
        padding: 0 10px 10px 0;
        border-radius: 0 0 20px 0;
    }
    .service-calc__actions {
        gap: 10px;
    }
    .service-calc__actions .quiz__btn {
        border-radius: 10px;
        width: 50px;
        height: 50px;
    }
    .service-calc__actions .quiz__btn--next,
    .service-calc__actions .quiz__btn--back {
        font-size: 0;
        position: relative;
    }
    .service-calc__actions .quiz__btn--back:before {
        content : '\2190';
        display: inline-block;
        color: var(--bg);
        font-size: 14px;
        line-height: 50px;
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
    }
    .service-calc__actions .quiz__btn--next:before {
        content : '\2192';
        display: inline-block;
        color: #fff;
        font-size: 14px;
        line-height: 50px;
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
    }
    .set__title {
        font-size: 3rem;
    }
    .set__title.set__title-2 {
        margin-bottom: 20px;
        padding-left: 40px;
    }
    .set-item {
        height: auto;
    }
    .contact-item__image {
        order: -1;
        position: relative;
        right: inherit;
        top: 0;
        max-width: 74px;
    }
    .contacts__image {
        height: 200px;
    }
    .contacts-row.m-2 .col-6 {
        padding: 0 5px;
        margin-bottom: 10px;
    }
    .contacts-row.row.m-2 {
        margin: 0 -5px;
    }
    .contacts__list {
        gap: 10px;
    }
    .contact-item__title {
        font-size: 20px;
    }
    .contacts__list {
        margin-bottom: 0;
    }
    .contact-item__arrow svg {
        width: 20px;
        height: 20px;
    }
    .contact-item__arrow {
        bottom: 15px;
        right: 15px;
    }

}
/* 33524 */
