@charset "UTF-8";

.task-list,
.optins-list {
    list-style: none;
    padding: 0;
}

.custom-table {}

.custom-table td {
    padding: 10px;
}

.product-table img {
    max-width: 250px;
}

.product-table td {}

.custom-table .total {
    font-weight: 600;
    text-align: center;
}

.text-1 {
    font-size: 24px;
}

.text-2 {
    font-size: 18px;
}

.text-3 {
    font-size: 16px;
    color: #7c7c7c;
}

.text-4 {
    font-size: 14px;
}

.text-6 {
    font-size: 18px;
}

.title-1 {
    font-weight: 400;
}

.title-2 {
    font-weight: 400;
}

.title-4 {
    font-weight: 400;
}

.title-5 {
    font-weight: 400;
}

.title-6 {
    font-weight: 400;
}

.header {
    position: relative;
    transition: all 0.3s;
}

.header__top-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo__coube {
    width: 56px;
    height: 56px;
    border: 3px solid #e16012;
}

.logo__text {
    font-size: 26px;
    font-weight: 700;
    margin-left: -46px;
    color: #000;
    background-color: #fff;
}

.logo--white {
    padding: 5px;
    border-radius: 5px;
}

.logo--white .logo__coube {
    border-color: #fff;
}

.logo--white .logo__text {
    background-color: var(--primary-color);
    color: #bf5518;
}

.contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contacts__adress {
    font-weight: 500;
    color: #494747;
    font-size: 14px;
}

.contacts__phone {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.contacts__link {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: rgb(158, 158, 158);
    font-size: 16px;
    font-weight: 500;
}

.contacts__phone:hover {
    color: var(--primary-color);
}

.burger-menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 46px;
    width: 100%;
    height: 46px;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(var(--main-gradient-from)),
            to(var(--main-gradient-to)));
    background: -o-linear-gradient(left,
            var(--main-gradient-from),
            var(--main-gradient-to));
    background: linear-gradient(to right,
            var(--main-gradient-from),
            var(--main-gradient-to));
    border-radius: 50%;
    -webkit-box-shadow: 0 19px 18px rgba(232, 117, 48, 0.33);
    box-shadow: 0 19px 18px rgba(232, 117, 48, 0.33);
    cursor: pointer;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}

.burger-menu.active {
    opacity: 0;
}

.burger-menu.active::after {
    display: none;
}

.burger-menu.active:hover {
    background: rgba(128, 63, 32, 0.56);
}

.burger-menu.active .burger-menu__line {
    -webkit-transition-delay: 0.12s;
    -o-transition-delay: 0.12s;
    transition-delay: 0.12s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burger-menu.active .burger-menu__line::before {
    bottom: 0;
    -webkit-transition: bottom 75ms ease,
        -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    transition: bottom 75ms ease,
        -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    -o-transition: bottom 75ms ease,
        transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    transition: bottom 75ms ease,
        transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    transition: bottom 75ms ease,
        transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s,
        -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.burger-menu.active .burger-menu__line::after {
    top: 0;
    -webkit-transition: top 75ms ease, opacity 75ms ease 0.12s;
    -o-transition: top 75ms ease, opacity 75ms ease 0.12s;
    transition: top 75ms ease, opacity 75ms ease 0.12s;
    opacity: 0;
}

.burger-menu__line {
    content: "";
    position: relative;
    display: block;
    margin: auto;
    width: 23px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    z-index: 3;
}

.burger-menu__line::after {
    content: "";
    position: absolute;
    display: block;
    margin: auto;
    top: -6px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    -webkit-transition: top 75ms ease 0.12s, opacity 75ms ease;
    -o-transition: top 75ms ease 0.12s, opacity 75ms ease;
    transition: top 75ms ease 0.12s, opacity 75ms ease;
}

.burger-menu__line::before {
    content: "";
    position: absolute;
    bottom: -6px;
    display: block;
    margin: auto;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    -webkit-transition: bottom 75ms ease 0.12s,
        -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 75ms ease 0.12s,
        -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: bottom 75ms ease 0.12s,
        transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 75ms ease 0.12s,
        transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 75ms ease 0.12s,
        transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19),
        -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.burger-menu:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 45px;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(var(--main-gradient-from)),
            to(var(--main-gradient-to)));
    background: -o-linear-gradient(top,
            var(--main-gradient-from),
            var(--main-gradient-to));
    background: linear-gradient(to bottom,
            var(--main-gradient-from),
            var(--main-gradient-to));
    -webkit-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
    z-index: 2;
    opacity: 0;
}

.burger-menu:hover {
    color: #fff;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-box-shadow: 0 12px 8px rgba(232, 117, 48, 0.33);
    box-shadow: 0 12px 8px rgba(232, 117, 48, 0.33);
}

.burger-menu:hover::after {
    opacity: 1;
}

.primary-color {
    color: var(--primary-color) !important;
}

.brand-color {
    color: var(--brand-color) !important;
}

.main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
}

.main-navigation__list {
    opacity: 0.8;
}

.main-navigation__link {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
    padding: 10px 76px;
}

#menu {
    max-width: 320px;
    background: linear-gradient(to bottom,
            var(--main-gradient-from),
            var(--main-gradient-to));
    height: 100%;
    right: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    text-align: center;
    top: 0;
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    width: 0;
    z-index: 1100;
}

#menu .menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

#menu .main-nav .menu__link--btn {
    border: 1px solid #fff;
    border-radius: 20px;
    text-align: center !important;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 16px;
}

#menu .main-nav .menu__link--btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

#menu .main-nav .menu__link--tel {
    font-size: 20px !important;
}

#menu .mt-10 {
    margin-top: 35px;
}

#menu .burger-menu {
    margin-left: auto;
    max-width: 38px;
    max-height: 38px;
    opacity: 0;
}

#menu .burger-menu.active {
    opacity: 1;
    z-index: 1200;
    background: rgba(179, 90, 48, 0.56);
}

#menu .burger-menu.active::after {
    display: none;
}

#menu .burger-menu.active:hover {
    background: rgba(128, 63, 32, 0.56);
}

#menu .burger-menu.active .burger-menu__line {
    -webkit-transition-delay: 0.12s;
    -o-transition-delay: 0.12s;
    transition-delay: 0.12s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#menu .burger-menu.active .burger-menu__line::before {
    bottom: 0;
    -webkit-transition: bottom 75ms ease,
        -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    transition: bottom 75ms ease,
        -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    -o-transition: bottom 75ms ease,
        transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    transition: bottom 75ms ease,
        transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    transition: bottom 75ms ease,
        transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s,
        -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

#menu .burger-menu.active .burger-menu__line::after {
    top: 0;
    -webkit-transition: top 75ms ease, opacity 75ms ease 0.12s;
    -o-transition: top 75ms ease, opacity 75ms ease 0.12s;
    transition: top 75ms ease, opacity 75ms ease 0.12s;
    opacity: 0;
}

#menu.open {
    width: 100%;
    max-width: 320px;
    padding: 20px;
    opacity: 1;
    visibility: visible;
}

#menu.open li:nth-child(1) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

#menu.open li:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#menu.open li:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

#menu.open li:nth-child(4) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

#menu.open li:nth-child(5) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

#menu.open li:nth-child(6) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

#menu.open li:nth-child(7) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

#menu.open li:nth-child(8) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

#menu.open li:nth-child(9) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

#menu.open li:nth-child(10) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

#menu.open li {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

#menu.open .main-nav {
    opacity: 1;
}

#menu ul:hover a {
    opacity: 0.5;
}

#menu ul a {
    -webkit-transform: translateZ(0);
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

#menu ul a:hover {
    opacity: 1;
}

#menu .main-nav {
    opacity: 0;
    -webkit-transition: opacity 0.5s 0.5s;
    -o-transition: opacity 0.5s 0.5s;
    transition: opacity 0.5s 0.5s;
    position: relative;
}

#menu .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu .main-nav .nav-item ul {
    background-color: #fc8370;
    padding: 12px;
}

#menu .main-nav a {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    padding: 6px 10px;
    text-decoration: none;
    text-transform: uppercase;
}

#menu .main-nav a:first {
    padding-top: 0;
}

#menu .menu-footer {
    padding: 2rem;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
}

#menu .menu-footer ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu .menu-footer ul li {
    display: inline;
    margin: 0 1rem;
}

#menu .menu-footer a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .contacts__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .contacts__info>div:not(.contacts__callback) {
        display: none;
    }

    .contacts .burger-menu {
        margin-left: auto;
    }

    #menu .main-nav .menu__link {
        font-size: 12px;
    }
}

@media (max-width: 1240px) {
    #bodyNav {
        display: none;
    }
}

#bodyNav {
    position: fixed;
    background-color: initial !important;
    z-index: 100;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nav-link.custom {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 15px;
    height: 15px;
    padding: 0;
    margin-bottom: 22px;
    border: 2px solid #f3f1f1;
    border-radius: 0;
}

.nav-link.custom:hover {
    border-color: var(--primary-color);
}

.nav-link.custom.active {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    background-color: initial;
}

.nav-link.custom.active::after {
    content: "";
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
}

.phone-window {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 9px 9px 9px;
    background: url(/wp-content/uploads/new-version/iphone.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.phone-window--intro {
    cursor: pointer;
    border-radius: 25px;
    -webkit-animation: phone 2s forwards;
    animation: phone 2s forwards;
    -webkit-box-shadow: 0 47px 67px rgba(0, 0, 0, 0.3);
    box-shadow: 0 47px 67px rgba(0, 0, 0, 0.3);
}

.phone-window--intro.active {
    position: relative;
    -webkit-animation: phone-reverse 2s forwards;
    animation: phone-reverse 2s forwards;
}

.phone-window--intro .moc-picture {
    max-width: 145px;
}

.phone-window--routine {
    position: -webkit-sticky;
    position: sticky;
    top: 25%;
    margin: auto;
    max-width: 222px;
    max-height: 443px;
    z-index: 2;
}

.sticky-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.phone-lg {
    background: url(/wp-content/uploads/new-version/iphone-routine.png);
    background-repeat: no-repeat;
    padding: 12px 13px;
    border-radius: 34px;
    -webkit-box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
    box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
}

.phone--task {
    margin-left: 28px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.macbook-window {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 56px;
    padding-right: 53px;
    padding-bottom: 36px;
    padding-top: 11px;
    background: url(/wp-content/uploads/new-version/macbook-shadow.png);
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0 175px 81px -90px rgba(0, 0, 0, 0.3);
    box-shadow: 0 175px 81px -90px rgba(0, 0, 0, 0.3);
}

.macbook-screen {
    position: relative;
    width: 499px;
    height: 312px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.macbook-screen-item {
    -webkit-animation: screen-swipe 0.5s;
    animation: screen-swipe 0.5s;
    position: absolute;
}

.macbook-window--intro {
    pointer-events: none;
    position: absolute;
    left: 75px;
    bottom: 0;
    z-index: 1;
}

.ipad-horizontal-window {
    background: url(/wp-content/uploads/new-version/ipad_horizontal.png);
    width: 585px;
    height: 413px;
    padding-left: 53px;
    padding-top: 26px;
    padding-bottom: 28px;
    padding-right: 53px;
    border-radius: 25px;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
    box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
}

.ipad-vertical-window {
    background: url(/wp-content/uploads/new-version/ipad_vertical.png);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 24px;
    padding-top: 53px;
    padding-bottom: 52px;
    padding-right: 28px;
    background-repeat: no-repeat;
    border-radius: 22px;
    -webkit-box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
    box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
}

.ipad-screen-horizontal {
    position: relative;
    max-width: 479px;
    width: 100%;
    max-height: 360px;
    height: 100%;
}

.ipad-screen-vertical {
    position: relative;
    width: 359px;
    height: 479px;
}

.ipad-screen-item {
    opacity: 0;
    width: 100%;
    position: absolute;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.ipad-screen-item.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    z-index: 2;
}

.ipad-table {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    display: block;
    left: 8px;
    top: 56px;
    max-width: 224px;
    border-radius: 8px;
}

.ipad-table.active {
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.ipad-kvartal {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    display: block;
    right: 8px;
    top: 56px;
    max-width: 224px;
    border-radius: 8px;
}

.ipad-kvartal.active {
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.ipad-analitica {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    display: block;
    left: 20px;
    bottom: 10px;
    max-width: 440px;
    border-radius: 8px;
}

.ipad-analitica.active {
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.ipad-indicators {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    display: block;
    right: 22px;
    top: 78px;
    max-width: 195px;
    border-radius: 8px;
}

.ipad-indicators.active {
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.screen-wrapper {
    overflow: hidden;
}

.screen-wrapper ::-webkit-scrollbar {
    position: absolute;
    width: 4px;
    height: 6px;
    background-color: transparent;
}

.screen-wrapper ::-webkit-scrollbar-thumb {
    position: absolute;
    background-color: #b1b1b1;
    border-radius: 2px;
}

.screen-iphone {
    position: relative;
    border-radius: 20px;
    width: 195px;
    height: 419px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.screen-item {
    position: absolute;
    max-height: 419px;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}

.screen-item.active {
    opacity: 1;
    z-index: 5;
}

.screen-item-task {
    width: 100%;
}

.screen-wrapper .moc-picture {
    width: 100%;
    display: block;
}

.star {
    display: block;
    margin-right: 8px;
    width: 24px;
    height: 23px;
    background: url(/wp-content/uploads/new-version/star.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.device-shadow {
    -webkit-box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
    box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
}

.custom__list .custom__list__item {
    list-style: none;
}

.custom__list__item {
    position: relative;
    margin-bottom: 20px;
}

.custom__list__link {
    padding-left: 30px;
    color: #7c7c7c;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    font-size: 14px;
    cursor: pointer;
}

.custom__list__link::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50%;
    background-color: #edeef0;
    z-index: 1;
}

.custom__list__link::before {
    content: "";
    position: absolute;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50%;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(var(--main-gradient-from)),
            to(var(--main-gradient-to)));
    background: -o-linear-gradient(left,
            var(--main-gradient-from),
            var(--main-gradient-to));
    background: linear-gradient(to right,
            var(--main-gradient-from),
            var(--main-gradient-to));
    -webkit-box-shadow: 0 19px 18px rgba(232, 117, 48, 0.33);
    box-shadow: 0 19px 18px rgba(232, 117, 48, 0.33);
    opacity: 0;
    z-index: 3;
}

.custom__list__link:hover::before {
    opacity: 1;
}

@-webkit-keyframes phone {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
        z-index: 3;
        position: relative;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        z-index: 3;
        position: relative;
        -webkit-box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
        box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
    }
}

@keyframes phone {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
        z-index: 3;
        position: relative;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        z-index: 3;
        position: relative;
        -webkit-box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
        box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
    }
}

@-webkit-keyframes phone-reverse {
    0% {
        -webkit-box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
        box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        z-index: 3;
        position: relative;
    }

    50% {
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
        z-index: 3;
        position: relative;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-box-shadow: 0 47px 67px rgba(0, 0, 0, 0.3);
        box-shadow: 0 47px 67px rgba(0, 0, 0, 0.3);
    }
}

@keyframes phone-reverse {
    0% {
        -webkit-box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
        box-shadow: 0 71px 81px rgba(0, 0, 0, 0.3);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        z-index: 3;
        position: relative;
    }

    50% {
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
        z-index: 3;
        position: relative;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-box-shadow: 0 47px 67px rgba(0, 0, 0, 0.3);
        box-shadow: 0 47px 67px rgba(0, 0, 0, 0.3);
    }
}

@-webkit-keyframes screen-swipe {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes screen-swipe {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.intro {
    padding-top: 116px;
    padding-bottom: 240px;
}

.intro-text__title {
    font-weight: 900;
    color: #232641 !important;
    /* text-transform: uppercase */
}

.intro-text__subtitile {
    margin-top: 40px;
    margin-bottom: 95px;
    color: #232641;
    font-weight: 500;
    font-size: 20px;
}

.vu-intro .intro-text__subtitile {
    margin-bottom: 30px;
}

.intro-text__subtitile li {
    margin-bottom: 15px;
    line-height: 24px;
}

.screen-intro {
    border-radius: 14px;
}

.intro-bgr {
    background: url(/wp-content/uploads/new-version/inro-bgr.png);
    background-repeat: no-repeat;
    background-position: 85% 94%;
}

.capabilities {
    overflow: hidden;
    background: url(/wp-content/uploads/new-version/capabilities-bgr.png);
    background-position: 10% 20%;
    background-repeat: no-repeat;
    padding-bottom: 50px;
}

.capabilities .custom-slider .sm_slider-inner {
    max-height: 600px;
}

.capabilities__title {
    margin-bottom: 100px;
}

.tab-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 84px;
}

.tab-link {
    position: relative;
    cursor: pointer;
    display: block;
    padding: 8px 15px;
    font-size: 18px;
    color: #7c7c7c;
    font-weight: 700;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.tab-link::after {
    content: "";
    display: block;
    position: absolute;
    left: -5px;
    width: calc(100% + 10px);
    height: 3px;
    border-radius: 3px;
    background-color: var(--primary-color);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    bottom: 0;
}

.tab-link:hover {
    color: #000;
}

.tab-link.active {
    color: #000;
}

.tab-link.active::after {
    -webkit-transform: scaleX(1) translateX(0);
    -ms-transform: scaleX(1) translateX(0);
    transform: scaleX(1) translateX(0);
}

.service-description__title {
    font-size: 24px;
    margin-bottom: 28px;
    color: #000;
    font-weight: 700;
}

.sub-list {
    counter-reset: item;
    list-style-type: none;
    margin: 70px 0;
    padding-left: 55px;
}

.sub-item {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #7c7c7c;
    margin-bottom: 22px;
    cursor: pointer;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.sub-item::before {
    content: counter(item) "  ";
    counter-increment: item;
    left: 35px;
    position: absolute;
    opacity: 0;
    -webkit-transition: left 0.3s, opacity 0.3s;
    -o-transition: left 0.3s, opacity 0.3s;
    transition: left 0.3s, opacity 0.3s;
}

.sub-item:hover {
    color: #000;
}

.carousel-item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out !important;
    transition: -webkit-transform 0.6s ease-in-out !important;
    -o-transition: transform 0.6s ease-in-out !important;
    transition: transform 0.6s ease-in-out !important;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out !important;
}

.sub-item--active {
    color: #000;
}

.sub-item--active::before {
    visibility: visible;
    left: 20px;
    color: #000;
    opacity: 1;
}

.service-control {
    padding-bottom: 170px;
}

.service-control__title {
    margin-bottom: 80px;
}

.tab-block {
    /* cursor: pointer; */
    padding-left: 20px;
    padding-right: 10px;
    padding-bottom: 58px;
    padding-top: 58px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    height: 100%;
}

.tab-block__num {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #9b9b9b;
    margin-bottom: 30px;
}

.tab-block__text {
    color: #9b9b9b;
    font-size: 14px;
}

.tab-block:hover {
    -webkit-box-shadow: 0 4px 24px #e8e8e8;
    box-shadow: 0 4px 24px #e8e8e8;
}

.tab-block:hover .tab-block__num {
    color: var(--primary-color);
}

.team {
    padding-bottom: 184px;
    background: url(/wp-content/uploads/new-version/team-bgr.png);
    background-repeat: no-repeat;
    background-position: 92% 30%;
    position: relative;
}

.pen-wrapper {
    right: 0;
    top: -170px;
    position: absolute;
    overflow: hidden;
}

.team__title {
    margin-bottom: 84px;
}

.person {
    margin-bottom: 48px;
}

.team-item {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    height: 100%;
}

.team-item::before {
    content: "";
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 10px 24px #f3f3f3;
    box-shadow: 0 10px 24px #f3f3f3;
    background-color: #fff;
    border-radius: 15px;
}

.team-item__card {
    background-color: #fff;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    max-height: 400px;
    /*max-height: 265px;*/
    overflow: hidden;
}

.team-item__picture {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    width: 100%;
    /*-webkit-filter: grayscale(1);*/
    /*filter: grayscale(1);*/
}

.team-item__description {
    position: relative;
    z-index: 2;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    font-size: 14px;
}

.team-item__name {
    position: relative;
    z-index: 2;
    padding-top: 28px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin: 0;
    font-weight: 500;
    background-color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

@media (max-width: 991px) {
    /*.team-item__name {*/
    /*  padding-left: 0;*/
    /*}*/

    .team-item__description {
        /*padding-left: 0;*/
        padding-right: 20px;
    }
}

/*.team-item__name::after {*/
/*  content: "";*/
/*  display: block;*/
/*  position: absolute;*/
/*  background: url(/wp-content/uploads/new-version/card-arrow.png);*/
/*  width: 35px;*/
/*  height: 35px;*/
/*  -webkit-transform: translate(-50%, -50%);*/
/*  -ms-transform: translate(-50%, -50%);*/
/*  transform: translate(-50%, -50%);*/
/*  -webkit-transition: all 0.3s;*/
/*  -o-transition: all 0.3s;*/
/*  transition: all 0.3s;*/
/*  opacity: 0.3;*/
/*  top: 50%;*/
/*  right: 6px;*/
/*}*/

.info-block {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 42px;
    opacity: 0;
}

.info-block__text {
    font-size: 12px;
    color: #a9a9a9;
}

.info-block__experience {
    font-size: 14px;
}

.info-block__position {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.routine {
    position: relative;
    padding-bottom: 50px;
}

.routine-screen {
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-size: contain !important;
}

.routine__title {
    text-align: center;
    margin-bottom: 180px;
}

.routine-container {
    position: relative;
    padding-bottom: 90px;
}

.routine-service {
    padding-top: 100px;
    padding-bottom: 100px;
}

.routine-btn {
    margin: 100px auto 0 auto;
}

.task__title {
    margin-bottom: 120px;
}

.task-item {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 314px;
}

.task-item:nth-child(2) {
    padding-top: 54px;
}

.task-item:nth-child(2) .task-link::after {
    top: 40%;
}

.task-item:nth-child(2) .task-link::before {
    top: 40%;
}

.task-item:nth-child(3) {
    padding-top: 16px;
    padding-bottom: 16px;
}

.task-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50%;
    background-color: #edeef0;
    z-index: 1;
}

.task-link::before {
    content: "";
    position: absolute;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50%;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(var(--main-gradient-from)),
            to(var(--main-gradient-to)));
    background: -o-linear-gradient(left,
            var(--main-gradient-from),
            var(--main-gradient-to));
    background: linear-gradient(to right,
            var(--main-gradient-from),
            var(--main-gradient-to));
    -webkit-box-shadow: 0 19px 18px rgba(232, 117, 48, 0.33);
    box-shadow: 0 19px 18px rgba(232, 117, 48, 0.33);
    opacity: 0;
    z-index: 3;
}

.task-link {
    color: #7c7c7c;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    max-width: 280px;
    font-size: 16px;
    font-weight: 700;
}

.task-link:hover {
    color: #000;
}

.task-link:hover::before {
    opacity: 1;
}

.task-link--active {
    font-size: 18px;
    color: #000;
}

.task-link--active::before {
    opacity: 1;
}

.get-free {
    padding-bottom: 230px;
}

.get-free__title {
    margin-bottom: 134px;
}

.free-list {
    margin-bottom: 0;
    margin-top: 0;
}

.price {
    text-decoration: line-through;
}

.economy-value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 55px;
    max-width: 254px;
}

.text-free {
    font-weight: 700;
    margin-left: auto;
}

.total-economy {
    margin-top: 120px;
    margin-left: 55px;
}

.tarif {
    padding-bottom: 100px;
}

.tarif-btn {
    padding: 12px 20px;
    transition: all .3s;
    background-color: var(--primary-color);
    color: #fff;
    position: absolute;
    left: 0;
    width: 100%;
    margin-top: 14px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 20px;
    z-index: 20;
    text-decoration: none;
}

.tarif-btn:hover {
    color: #fff;
    opacity: .8;
    box-shadow: 0 19px 18px rgba(232, 117, 48, 0.33);
}

.tarif-info {
    margin-bottom: 20px;
}

.tarif-item {
    height: 100%;
    padding: 24px 20px;
    padding-bottom: 62px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 5px 24px #b3b3b3;
    border-radius: 20px;
    background-color: #fff;
    z-index: 1;
}

.tarif-item__bage {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #818181;
    text-align: center;
}

.tarif-item__title {
    font-size: 18px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 22px;
    margin-top: 10px;
    color: var(--primary-color);
}

.tarif-item__description {
    font-size: 14px;
    font-weight: 500;
    color: #565656;
    text-align: center;
    margin-bottom: auto;
    padding-top: 30px;
    padding-bottom: 50px;
}

.tarif-item__price {
    margin-top: 20px;
    font-weight: 700;
    text-align: center;
}

.tarif-item__price--second {
    margin: 0;
}

.tarif-item__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.tarif-item__more {
    font-weight: 500;
    text-align: center;
    color: #9f9f9f;
}

.tarif-item:hover {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 5;
}

.tarif-item:hover .tarif-item__options {
    opacity: 1;
    left: 100%;
    width: max-content;
    max-width: calc(100% + 30px);
}

.tarif-link {
    color: var(--primary-color);
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.tarif-link:hover {
    color: #c56f3b;
}

.tarif-link:hover::after {
    margin-left: 20px;
}

.tarif-link::after {
    -webkit-transition: margin 0.3s;
    -o-transition: margin 0.3s;
    transition: margin 0.3s;
    margin-left: 15px;
    content: "\279C";
}

.tarif-item__options {
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 30px;
    padding-left: 45px;
    padding-right: 15px;
    padding-bottom: 42px;
    background-color: #fff;
    opacity: 0;
}

.tarif-item__options .optins-list {
    list-style: unset;
    padding-left: 15px;
}

.tarif-item__options .options-item {
    margin-bottom: 8px;
}

.options-item {
    font-size: 14px;
    font-weight: 500;
    color: #565656;
}

.options-item--strong {
    color: var(--primary-color);
    font-weight: 600;
}

.options-item::before {
    /* content: '- ' */
}

.options-item__sub-title {
    font-size: 16px;
    font-weight: 500;
}

.table-item {
    padding-bottom: 35px;
    padding-top: 35px;
}

.table-item::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-box-shadow: 0 28px 24px #d8d8d8;
    box-shadow: 0 28px 24px #d8d8d8;
}

.table-text {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
}

.table-title {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.table-cell:not(:first-child) {
    border-radius: 10px;
}

.table-cell {
    padding-top: 25px;
    padding-bottom: 26px;
    text-align: center;
}

.table-cell-name {
    border-bottom: 1px solid #d3d3d3;
}

.table-cell-name--title {
    background-color: #ececec;
}

.check-active,
.check-disable {
    display: block;
    margin: auto;
    width: 19px;
    height: 100%;
    background: url(/wp-content/uploads/new-version/tarif-check.png);
    background-position: center;
    background-repeat: no-repeat;
}

.check-disable {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.row-name {
    max-width: 320px;
    text-align: left;
}

.table-btn {
    margin: 200px auto 0 auto;
}

.btn-open {
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 13px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    padding: 20px 5px;
}

.btn-open::after {
    content: "❯❯";
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    display: block;
    -webkit-transform: translateX(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
    bottom: -10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.btn-open:hover {
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
}

.btn-open:hover::after {
    bottom: -20px;
}

.btn-open--active::after {
    -webkit-transform: translateX(-50%) rotate(-90deg);
    -ms-transform: translateX(-50%) rotate(-90deg);
    transform: translateX(-50%) rotate(-90deg);
    bottom: 50px;
}

.btn-open--active:hover::after {
    bottom: 60px;
}

.table-row {
    position: relative;
    z-index: -1;
}

.table-content {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: -15px;
    margin-left: -15px;
}

.table-wrapper {
    -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    -o-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    padding-right: 15px;
    padding-left: 15px;
    margin-right: -15px;
    margin-left: -15px;
    padding-top: 20px;
    padding-bottom: 50px;
    position: relative;
    max-height: 490px;
    -webkit-box-shadow: inset 0 -53px 31px #fff;
    box-shadow: inset 0 -53px 31px #fff;
    overflow: hidden;
}

.table-wrapper--opened {
    -webkit-box-shadow: none;
    box-shadow: none;
    max-height: 10000px;
    -webkit-transition: max-height 1s ease-in-out;
    -o-transition: max-height 1s ease-in-out;
    transition: max-height 1s ease-in-out;
}

@-webkit-keyframes arrow-top {
    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        bottom: 40px;
    }
}

@keyframes arrow-top {
    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        bottom: 40px;
    }
}

.tarif-mobile__header {
    font-size: 16px;
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #cacaca;
}

.tarif-mobile__btn {
    position: relative;
    text-align: left;
    width: 100%;
    outline: 0;
    border: none;
    background: 0 0;
    font-weight: 500;
    font-size: 16px;
}

.tarif-mobile__btn:focus {
    outline: 0;
}

.tarif-mobile__btn .tarif-item__bage {
    font-size: 12px;
    font-weight: 500;
    text-align: left;
}

.tarif-mobile__btn::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background: #f6f6f6 url(/wp-content/uploads/new-version/arrow-down.svg) no-repeat;
    background-position: 50% 50%;
    border-radius: 100%;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.tarif-mobile__btn.collapsed::after {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.tarif-mobile__description {
    font-size: 14px;
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    background-color: #ececec;
}

.tarif-mobile__row {
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #cacaca;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tarif-mobile__option {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    font-size: 12px;
    font-weight: 500;
}

.tarif-mobile__value {
    font-size: 12px;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
}

.tarif-mobile__card {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    -webkit-box-shadow: 0 10px 24px #f3f3f3;
    box-shadow: 0 10px 24px #f3f3f3;
}

.reviews {
    padding-bottom: 115px;
}

.reviews__title {
    margin-bottom: 140px;
}

.review-block {
    display: block;
    color: #000;
    margin-bottom: 35px;
    margin-top: 35px;
    padding: 14px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
}

.review-block:hover {
    -webkit-box-shadow: 0 10px 24px #e4e3e3;
    box-shadow: 0 10px 24px #e4e3e3;
}

.review-block__desc {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.review-block__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.feedback__title {
    margin-bottom: 76px;
}

.contact {
    margin-bottom: 80px;
}

.contact-link {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-color);
}

.adress {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.adress-wrapper {
    margin-bottom: 100px;
}

.form-input,
.form-textarea {
    font-size: 16px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    padding: 25px 20px;
    border-radius: 8px;
    margin-bottom: 18px;
    border: 1px solid #edeef0;
    outline: 0;
}

#wpcf7-f5601-o1 .form-input,
#wpcf7-f5601-o1 .form-textarea {
    margin-bottom: 0;
}

#wpcf7-f5601-o1 .wpcf7-form-control-wrap {
    margin-bottom: 18px;
}

.form-input:focus,
.form-input:hover,
.form-textarea:focus,
.form-textarea:hover {
    border-color: #898989;
}

.form-textarea {
    height: calc(100% - 18px);
}

.form-btn {
    margin: auto;
    margin-top: 30px;
}

.checkbox-wrapper {
    text-align: center;
}

.form-link {
    color: var(--primary-color);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.custom-slider {
    position: relative;
}

.info {
    font-size: 12px;
    color: #727272;
    margin-bottom: 50px;
}

.company-info {
    margin-bottom: 40px;
}

.company-info__title {
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.company-info__text {
    font-size: 14px;
    color: #727272;
}

.privacy {
    font-size: 14px;
    color: #000;
    font-weight: 700;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.privacy:hover {
    color: var(--primary-color);
}

.footer {
    position: relative;
    padding-top: 120px;
}

.footer__top-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}

.footer .logo {
    margin-bottom: 20px;
}

.footer .contacts {
    /* margin-top: 20px; */
    margin-bottom: 20px;
}

.footer .contacts__info {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.footer .contacts__adress,
.footer .contacts__phone {
    padding-right: 30px;
}

.footer-link {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #727272;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-nav-title {
    margin-bottom: 30px;
}

.sm_slider {
    height: 100%;
    margin: 25px 25px 0;
    position: relative;
    width: 960px;
}

.sm_slider ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sm_slide {
    color: #3d3d3d;
    display: none;
    font-size: 100px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%;
}

.sm_slide.active {
    display: block;
    visibility: visible;
}

.sm_next,
.sm_prev {
    width: 25px;
    height: 25px;
    margin: -20px 0 0 0;
    cursor: pointer;
    display: block;
    font-style: normal;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    z-index: 999;
    border-style: solid;
    border-color: #4e4e4e;
    border-width: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sm_prev {
    border-left-width: 3px;
    border-top-width: 3px;
    left: 10px;
}

.sm_prev:hover {
    opacity: 1;
}

.sm_next {
    border-right-width: 3px;
    border-bottom-width: 3px;
    right: 10px;
}

.sm_next:hover {
    opacity: 1;
}

.sm_nav {
    bottom: 0;
    clear: both;
    display: inline-block;
    overflow: hidden;
    padding: 5px 0;
    position: absolute;
    right: 0;
    z-index: 999;
}

.sm_nav-item {
    cursor: pointer;
    float: left;
    height: 14px;
    padding: 4px;
    width: 14px;
    z-index: 999;
    list-style-type: none;
    font-size: 11px;
    color: #ccc;
}

.sm_nav-item i {
    display: block;
    width: 6px;
    height: 6px;
    position: relative;
    top: 5px;
    left: 4px;
    border-radius: 6px;
    background-color: #7f7f7f;
}

.sm_nav-item.active {
    cursor: default;
    color: #7e7e7e;
}

.sm_nav-item.active:hover {
    cursor: default;
    color: #7e7e7e;
}

.sm_nav-item.active i {
    background-color: #bfbfbf;
}

.sm_nav-item:hover i {
    background: #7f7f7f;
}

.sm_nav-item.active:hover i {
    background-color: #bfbfbf;
}

.telegram-link-widget {
    color: #000;
    max-width: 250px;
    border: 1px solid #e0e6eb;
    padding: 10px;
    background-color: #fff;
    font-size: 12px;
    line-height: 16px;
}

.telegram-link-widget-btn {
    display: block;
    background-color: #25a3e1;
    color: #fff;
    padding: 5px;
    text-align: center;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 500;
}

.telegram-link-widget-btn::before {
    content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAQAAADlauupAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAACYktHRAAAqo0jMgAAAAlwSFlzAAAAYAAAAGAA8GtCzwAAAAd0SU1FB+YMFAkPFITRjMsAAAE8SURBVDjLpZM7j4FREIYPUXy2IaEgodKoKTQS0WkVKonfIFFQ6DSikOgo/ACFQi0uP0CIiFrhEo1IUIjEPFucZO26rbVPNedM3jkzmfco9U9M74jA4VAkk8rkdv9BZDZDLAaNBhyPALDdviD0+aBQgPlci9Zr5HAAQHq9ByLDQBIJpN0GES08n6FWQ/J5HQMUi1fCYBAqFdhs+I6MRkgohJRKP+6JxxXidEImA9MpN+z3kE7Dx4ee/QrxeBSMx9yl1UK8XsRmg273Nr9c6rbFYkHCYd36YgGrFZJK6ZFcLmQ4vFtfms0Hq7Jadez3w2zGQ3K55+uTToenRKNKKWV+7FGnUwe73W1SRDEY/GKg5RL6fbDbIZuF0+ny+mTyggOrVTCMyzkS+XKj1Osv/oDrog4HUi5DIPBWgXt8Ai7Tpg+HfQtIAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIyLTEyLTIwVDA5OjE1OjIwKzAwOjAwBTQbEwAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMi0xMi0yMFQwOToxNToyMCswMDowMHRpo68AAAAodEVYdGRhdGU6dGltZXN0YW1wADIwMjItMTItMjBUMDk6MTU6MjArMDA6MDAjfIJwAAAAAElFTkSuQmCC");
    display: inline-block;
    vertical-align: bottom;
    margin-right: 10px;
}

.telegram-link-widget-btn:hover {
    color: #fff;
    filter: brightness(0.9);
}

.telegram-link-widget-btn:focus {
    color: #fff;
}

.custom .card .body-wrapper {
    overflow: hidden;
}

.custom .card .card-header button {
    white-space: normal;
}

.td-underline {
    text-decoration: underline;
}

.line-style-1 {
    background-color: #dfdfdf;
}

.review-item,
.review-preview {
    border-radius: 12px;
}

.review-item {
    display: block;
    position: relative;
    /* border: 2px solid var(--primary-color); */
    overflow: hidden;
    /* padding: 10px; */
    cursor: pointer;
    /* transition: all .3s; */
}

.review-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.1);
}

.review-name {
    z-index: 1;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
    padding-bottom: 15px;
}

.review-name::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(transparent, #000, #000);
}

.review-play {
    display: flex;
    align-items: center;
    z-index: 1;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    transition: all 0.3s ease-out;
    border-radius: 50px;
}

.review-play__text {
    opacity: 0;
    /* transform: translateX(100px); */
    font-size: 14px;
    display: inline-block;
    color: #fff;
    margin-bottom: 0;
    text-wrap: nowrap;
    transition: opacity 0.3s ease-out;
    margin-right: 5px;
    margin-left: 10px;
}

.review-play__btn {
    padding: 8px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.3s;
}

.review-play__image {
    margin-left: 5px;
    margin-top: 2px;
    max-width: 30px;
}

.review-item:hover .review-play__btn::after {
    opacity: 1;
    margin-right: 10px;
    transition: margin 0.3s, opacity 0.3s 0.3s;
}

.review-item:hover .review-play__btn {
    background-color: var(--primary-color);
}

.review-preview {
    transition: all 0.3s;
}

.review-item:hover {
    border-color: transparent;
}

.review-item:hover::after {
    background-color: rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hide-up-md {
        display: none !important;
    }

    .title-1 {
        font-size: 42px;
    }

    .title-2 {
        font-size: 36px;
    }

    .title-4 {
        font-size: 24px;
    }

    .title-5 {
        font-size: 17px;
    }

    .title-6 {
        font-size: 16px;
        font-weight: 700;
    }

    .tarif-mobile {
        display: none;
    }

    .routine-service:nth-child(2n + 1) {
        margin-right: auto;
    }

    .routine-service:nth-child(2n) {
        margin-left: auto;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .team-item:hover {
        z-index: 5;
    }

    .team-item:hover .team-item__name::after {
        opacity: 1;
    }

    .team-item:hover .team-item__picture {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
    }

    .team-item:hover .info-block {
        opacity: 1;
        top: 100%;
    }

    .team-item:hover::before {
        height: calc(100% + 100% + 30px);
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    /*.tarif-info:nth-child(1):hover .tarif-item__options,*/
    /*.tarif-info:nth-child(3):hover .tarif-item__options {*/
    /*  border-bottom-right-radius: 20px;*/
    /*  border-top-right-radius: 20px;*/
    /*}*/

    /*.tarif-info:nth-child(2) .tarif-item__options,*/
    /*.tarif-info:nth-child(4) .tarif-item__options {*/
    /*  right: 0;*/
    /*  left: initial;*/
    /*}*/

    /*.tarif-info:nth-child(2):hover .tarif-item__options,*/
    /*.tarif-info:nth-child(4):hover .tarif-item__options {*/
    /*  left: initial;*/
    /*  right: 100%;*/
    /*  border-bottom-left-radius: 20px;*/
    /*  border-top-left-radius: 20px;*/
    /*}*/
    .tarif-info:nth-child(1):hover .tarif-item__options,
    .tarif-info:nth-child(2):hover .tarif-item__options {
        border-bottom-right-radius: 20px;
        border-top-right-radius: 20px;
    }
}

@media (min-width: 992px) {
    .team-item {
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        position: relative;
        z-index: 1;
    }

    .team-item::before {
        content: "";
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-box-shadow: 0 10px 24px #f3f3f3;
        box-shadow: 0 10px 24px #f3f3f3;
        background-color: #fff;
        border-radius: 15px;
    }

    .team-item:hover {
        z-index: 5;
    }

    .team-item:hover .team-item__name::after {
        opacity: 1;
    }

    /*.team-item:hover .team-item__picture {*/
    /*  -webkit-filter: grayscale(0);*/
    /*  filter: grayscale(0);*/
    /*}*/

    .team-item:hover .info-block {
        opacity: 1;
        left: 100%;
    }

    /*.team-item:hover::before {*/
    /*  width: calc(100% + 100% + 30px);*/
    /*}*/

    .task {
        background: url(/wp-content/uploads/new-version/task-lise.png);
        background-repeat: no-repeat;
        background-position: 53% 276px;
        padding-bottom: 216px;
    }

    .person:nth-child(4n + 4) .team-item::before {
        right: 0;
    }

    .person:nth-child(4n + 4):hover .info-block {
        left: -100%;
    }

    /*.tarif-info:nth-child(1):hover .tarif-item__options,*/
    /*.tarif-info:nth-child(2):hover .tarif-item__options {*/
    /*  border-top-right-radius: 20px;*/
    /*  border-bottom-right-radius: 20px;*/
    /*}*/

    /*.tarif-info:nth-child(3) .tarif-item__options,*/
    /*.tarif-info:nth-child(4) .tarif-item__options {*/
    /*  right: 0;*/
    /*  left: initial;*/
    /*}*/

    /*.tarif-info:nth-child(3):hover .tarif-item__options,*/
    /*.tarif-info:nth-child(4):hover .tarif-item__options {*/
    /*  border-top-left-radius: 20px;*/
    /*  border-bottom-left-radius: 20px;*/
    /*  left: initial;*/
    /*  right: 100%;*/
    /*}*/

    /*.tarif-info:nth-child(3):hover .tarif-item,*/
    /*.tarif-info:nth-child(4):hover .tarif-item {*/
    /*  border-top-left-radius: 0;*/
    /*  border-bottom-left-radius: 0;*/
    /*}*/
    .tarif-info:nth-child(1):hover .tarif-item__options {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .tarif-info:nth-child(2) .tarif-item__options,
    .tarif-info:nth-child(3) .tarif-item__options {
        right: 0;
        left: initial;
    }

    .tarif-info:nth-child(2):hover .tarif-item__options,
    .tarif-info:nth-child(3):hover .tarif-item__options {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        left: initial;
        right: 100%;
    }

    .tarif-info:nth-child(2):hover .tarif-item,
    .tarif-info:nth-child(3):hover .tarif-item {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}

@media (min-width: 1200px) {
    .title-1 {
        font-size: 36px;
        color: #000;
    }

    .title-2 {
        font-size: 36px;
        color: #000;
    }

    .title-4 {
        font-size: 24px;
        color: #000;
    }

    .title-5 {
        font-size: 17px;
        color: #000;
    }

    .title-6 {
        font-size: 16px;
        color: #000;
    }
}

@media (max-width: 1200px) {
    .ipad-vertical-window {
        background-size: contain;
        width: 100%;
        padding-left: 22px;
        padding-top: 47px;
        padding-bottom: 46px;
        padding-right: 23px;
    }

    .ipad-screen-vertical {
        height: 433px;
        width: 100%;
    }

    .ipad-horizontal-window {
        background-size: contain;
        width: 450px;
        height: 318px;
        padding-left: 42px;
        padding-top: 21px;
        padding-bottom: 22px;
        padding-right: 40px;
    }

    .ipad-indicators {
        right: 10px;
        top: 61px;
        max-width: 150px;
    }

    .ipad-analitica {
        left: 12px;
        bottom: 10px;
        max-width: 347px;
    }

    .ipad-kvartal,
    .ipad-table {
        top: 38px;
        max-width: 172px;
    }

    .macbook-window--intro {
        left: 0;
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    .tarif-item__options {
        width: calc(100% + 30px) !important;
        padding-left: 20px;
    }
}

@media (max-width: 992px) {
    .macbook-window {
        padding-left: 42px;
        padding-right: 42px;
        padding-bottom: 29px;
        padding-top: 11px;
    }

    .options-item {
        white-space: pre-line;
    }

    .get-free {
        padding-bottom: 80px;
    }

    .get-free .mac-view .macbook-window {
        margin: auto;
        padding-left: 42px;
        padding-right: 42px;
        padding-bottom: 28px;
    }

    .get-free .mac-view .macbook-screen {
        width: 300px;
        height: 188px;
    }

    .get-free .economy-value {
        margin: 20px;
        margin-top: 20px;
    }

    .get-free .total-economy {
        margin-top: 30px;
    }

    .ipad-vertical-window {
        background-size: contain;
        margin: auto;
        width: 290px;
        padding-left: 17px;
        padding-top: 37px;
        padding-bottom: 34px;
        padding-right: 17px;
    }

    .ipad-screen-vertical {
        width: 100%;
        height: 341px;
    }

    .ipad-horizontal-window {
        width: 409px;
        height: 289px;
        padding-left: 37px;
        padding-top: 18px;
        padding-bottom: 19px;
        padding-right: 36px;
        border-radius: 16px;
    }

    .ipad-analitica {
        max-width: 316px;
    }

    .ipad-indicators {
        max-width: 125px;
    }

    .ipad-kvartal,
    .ipad-table {
        max-width: 156px;
    }

    .contact {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .md-hide {
        display: none;
    }

    .intro {
        padding-top: 0;
        padding-bottom: 80px;
        position: relative;
    }

    .intro-bgr {
        background-size: cover;
        background-position: top;
    }

    .intro-slogan {
        z-index: 1;
    }

    .intro-devices {
        /* position: absolute;
        width: -webkit-fit-content;
        width: -moz-fit-content; */
        width: fit-content;
        max-width: 80%;
        margin: 30px auto 0px auto;
        /* top: 116px; */
        /* right: initial;
        left: 40%;
        z-index: 0;
        max-width: 140px; */
    }

    .intro-devices .top__image2 {
        display: block;
    }

    .intro-devices .phone-window--intro {
        padding: 7px 5px 7px 6px;
        border-radius: 16px;
    }

    .intro-devices .phone-window--intro .screen-intro {
        border-radius: 8px;
    }

    .intro-devices .macbook-window {
        display: none;
    }

    .intro .mobile-br {
        display: block;
    }

    .tarif-item {
        overflow: hidden;
    }

    .tarif-item:hover {
        border-bottom-left-radius: 0;
    }

    .tarif-item:hover .tarif-item__card {
        height: auto;
    }

    .tarif-item:hover .tarif-item__options {
        top: 0;
        position: relative;
        width: 100% !important;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding-left: 12px;
        padding-right: 12px;
        margin-left: 0;
        left: 0;
    }

    .capabilities {
        padding-bottom: 30px;
    }

    .capabilities__title {
        margin-bottom: 40px;
    }

    .capabilities .tab-container {
        margin-bottom: 20px;
    }

    .capabilities .tab-link {
        padding: 8px 10px;
        font-size: 14px;
    }

    .capabilities .tab-link::after {
        bottom: 0;
    }

    .capabilities .sub-list {
        margin-top: 20px;
        margin-bottom: 15px;
        padding-left: 30px;
    }

    .capabilities .sub-item {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .capabilities .ipad-horizontal-window {
        width: 290px;
        height: 205px;
        padding-left: 26px;
        padding-top: 14px;
        padding-bottom: 14px;
        padding-right: 26px;
        border-radius: 10px;
        background-size: contain;
        -webkit-box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
        box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
    }

    .capabilities .ipad-kvartal,
    .capabilities .ipad-table {
        top: 24px;
        max-width: 108px;
    }

    .capabilities .ipad-analitica {
        left: 8px;
        bottom: 6px;
        max-width: 225px;
    }

    .capabilities .ipad-indicators {
        top: 40px;
        right: 8px;
        max-width: 95px;
    }

    .capabilities .custom-slider .sm_slider-inner {
        max-height: 450px;
    }

    .pen-wrapper {
        display: none;
    }

    .team {
        padding-bottom: 15px;
    }

    .team__title {
        margin-bottom: 25px;
    }

    .team-item__name::after {
        display: none;
    }

    .team-item:hover {
        z-index: 5;
    }

    .team-item:hover .team-item__name::after {
        opacity: 1;
    }

    .team-item:hover .team-item__picture {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
    }

    .team-item:hover .info-block {
        z-index: 8;
        opacity: 1;
        background-color: #fff;
    }

    .routine {
        padding-bottom: 40px;
    }

    .routine-container {
        margin-bottom: 60px;
    }

    .routine__title {
        margin-bottom: 20px;
    }

    .routine-service {
        width: auto;
        z-index: 10;
        background-color: #fff;
        border-radius: 8px;
        margin-left: 15px;
        margin-right: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
        border-radius: 10px;
        opacity: 0.9;
        text-align: center;
        margin-top: 200px;
        height: auto !important;
        -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    }

    .routine .sticky-wrapper {
        z-index: -2;
    }

    .get-free__title {
        margin-bottom: 40px;
    }

    .task {
        background: 0 0;
        padding-bottom: 80px;
    }

    .task__title {
        margin-bottom: 30px;
    }

    .task__content {
        position: relative;
        padding-bottom: 310px;
    }

    .task-list {
        margin: 0;
        z-index: 2;
    }

    .task-item,
    .task-item:nth-child(2),
    .task-item:nth-child(3) {
        padding: 0;
        margin-top: 20px;
    }

    .task-screen {
        z-index: 1;
        position: absolute;
        bottom: 0;
        margin: 0;
    }

    .task .phone--task {
        margin-left: auto;
        background-size: contain;
        padding-top: 7px;
        padding-bottom: 8px;
        padding-right: 9px;
        padding-left: 9px;
        border-radius: 22px;
    }

    .task .screen-iphone {
        width: 130px;
        height: 280px;
        border-radius: 10px;
    }

    .service-control {
        padding-bottom: 80px;
    }

    .service-control__title {
        margin-bottom: 30px;
    }

    .tab-block {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .tab-block__num {
        margin-bottom: 10px;
    }

    .ipad-vertical-window {
        background-size: contain;
        width: 290px;
    }

    .ipad-screen-vertical {
        width: 100%;
        height: 341px;
    }

    .title-1 {
        font-size: 28px;
    }

    .title-2 {
        font-size: 22px;
    }

    .title-4 {
        font-size: 18px;
    }

    .title-5 {
        font-size: 17px;
    }

    .title-6 {
        font-size: 16px;
    }

    .text-1 {
        font-size: 18px;
    }

    .text-2 {
        font-size: 16px;
    }

    .text-3 {
        font-size: 12px;
    }

    .text-4 {
        font-size: 14px;
    }

    .text-6 {
        font-size: 18px;
    }

    .sub-list {
        margin-top: 40px;
        padding-left: 35px;
    }

    .sub-item {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .btn-open,
    .table-wrapper {
        display: none;
    }

    .phone-window--routine {
        top: 20%;
        background-size: contain;
        max-width: 204px;
    }

    .sticky-wrapper .screen-iphone {
        width: 100%;
        height: 383px;
    }

    .reviews {
        padding-bottom: 60px;
    }

    .reviews__title {
        margin-bottom: 45px;
    }

    .reviews .review-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .reviews .review-block {
        margin-left: 6px;
        margin-right: 6px;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 10px;
    }

    .reviews .review-block__desc {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .reviews .review-block__stars .star {
        margin-right: 6px;
        width: 16px;
        height: 16px;
    }

    .tarif .table-btn {
        margin-top: 45px;
    }

    .tarif {
        padding-bottom: 40px;
    }

    .intro-devices {
        z-index: 2;
    }

    .header .burger-menu {
        /*top: 5px;*/
        /*z-index: 50;*/
        /*position: fixed;*/
        /*right: 15px;*/
    }

    .footer-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .sm-hide {
        display: none;
    }

    .intro-devices {
        left: initial;
        right: 0;
    }
}

@media (max-width: 435px) {
    .get-free .mac-view .macbook-screen {
        width: 215px;
        height: 131px;
    }

    .get-free .mac-view .macbook-window {
        margin: auto;
        padding-left: 34px;
        padding-right: 34px;
        padding-bottom: 23px;
    }
}

@font-face {
    font-family: "Gotham Pro";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-BoldItalic.eot);
    src: local("Gotham Pro Bold Italic"), local("GothamPro-BoldItalic"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-BoldItalic.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-BoldItalic.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-BoldItalic.ttf) format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Italic.eot);
    src: local("Gotham Pro Italic"), local("GothamPro-Italic"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Italic.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Italic.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Italic.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Medium.eot);
    src: local("Gotham Pro Medium"), local("GothamPro-Medium"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Medium.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Medium.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-BlackItalic.eot);
    src: local("Gotham Pro Black Italic"), local("GothamPro-BlackItalic"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-BlackItalic.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-BlackItalic.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-BlackItalic.ttf) format("truetype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Bold.eot);
    src: local("Gotham Pro Bold"), local("GothamPro-Bold"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Bold.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Bold.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro Narrow";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamProNarrow-Bold.eot);
    src: local("Gotham Pro Narrow Bold"), local("GothamProNarrow-Bold"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamProNarrow-Bold.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamProNarrow-Bold.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamProNarrow-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro Narrow";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamProNarrow-Medium.eot);
    src: local("Gotham Pro Narrow Medium"), local("GothamProNarrow-Medium"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamProNarrow-Medium.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamProNarrow-Medium.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamProNarrow-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-LightItalic.eot);
    src: local("Gotham Pro Light Italic"), local("GothamPro-LightItalic"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-LightItalic.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-LightItalic.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-LightItalic.ttf) format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Light.eot);
    src: local("Gotham Pro Light"), local("GothamPro-Light"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Light.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Light.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Black.eot);
    src: local("Gotham Pro Black"), local("GothamPro-Black"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Black.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Black.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-Black.ttf) format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro.eot);
    src: local("Gotham Pro"), local("GothamPro"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-MediumItalic.eot);
    src: local("Gotham Pro Medium Italic"), local("GothamPro-MediumItalic"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-MediumItalic.eot?#iefix) format("embedded-opentype"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-MediumItalic.woff) format("woff"),
        url(/wp-content/themes/wp-bootstrap-4/assets/fonts/GothamPro-MediumItalic.ttf) format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

.intro-image {
    display: block;
}

.intro-image--ooo {
    width: 100%;
    max-width: 410px;
    margin: auto;
}

.intro--ooo {
    background-position: 85% 27%;
    background-size: 35%;
    padding-top: 45px;
    padding-bottom: 200px;
}

.free-list__picture>img {
    width: 100%;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

.free {
    overflow: hidden;
    background: url(/wp-content/uploads/new-version/bgr-free.png);
    background-position: 10% 20%;
    background-repeat: no-repeat;
    padding-bottom: 170px;
}

.free .custom__list {
    margin-left: 30px;
}

.free__title {
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .free__title {
        margin-bottom: 40px;
    }

    .intro--ooo {
        background-position: 85% 67%;
        background-size: 50%;
    }

    .intro--ooo .intro-text__subtitile {
        margin-bottom: 200px;
    }

    .intro-devices--ooo {
        top: 330px;
        max-width: 190px;
        z-index: 0;
    }

    .intro .intro-text__subtitile {
        max-width: 220px;
        font-size: 14px;
    }
}

body {
    position: relative;
    font-family: "Gotham Pro";
}

body.overflow-hide {
    overflow: hidden;
    height: 100vh;
    padding-right: 15px;
}

/* ol,
ul {
    list-style: none;
    padding: 0
} */

a:hover {
    color: unset;
    text-decoration: none;
}

p {
    /* margin: 0 */
}

.vissually-hidden {
    position: absolute !important;
    visibility: hidden !important;
    pointer-events: none !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(100%) !important;
    clip-path: inset(100%) !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    text-indent: -9999px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.btn-style:focus {
    border: none;
    outline: 0;
}

.btn-style {
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 44px;
    padding-right: 44px;
    min-height: 72px;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(var(--main-gradient-from)),
            to(var(--main-gradient-to)));
    background: -o-linear-gradient(left,
            var(--main-gradient-from),
            var(--main-gradient-to));
    background: linear-gradient(to right,
            var(--main-gradient-from),
            var(--main-gradient-to));
    -webkit-box-shadow: 0 19px 18px rgba(232, 117, 48, 0.33);
    box-shadow: 0 19px 18px rgba(232, 117, 48, 0.33);
    color: #fff !important;
    text-align: center;
    border-radius: 45px;
    text-shadow: 0 1px 0 #a2572a;
    z-index: 1;
    /*font-family: "Gotham Pro", "Open Sans", "sans-serif";*/
    text-decoration: none;
}

.btn-style:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 45px;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(var(--main-gradient-from)),
            to(var(--main-gradient-to)));
    background: -o-linear-gradient(top,
            var(--main-gradient-from),
            var(--main-gradient-to));
    background: linear-gradient(to bottom,
            var(--main-gradient-from),
            var(--main-gradient-to));
    -webkit-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
    z-index: 2;
    opacity: 0;
}

.btn-style:hover {
    color: #fff;
}

.btn-style--brand {
    background: var(--brand-color);
}

.btn-style--brand .btn-text {
    text-shadow: none;
}

.btn-style--brand::after {
    content: none;
}

.btn-style:hover::after {
    opacity: 1;
}

.btn-style:hover .key,
.btn-style:hover .arrow-right {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    width: 29px;
    margin-left: 20px;
}

.btn-text {
    position: relative;
    z-index: 3;
}

.key {
    content: "";
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    z-index: 4;
    display: inline-block;
    width: 0;
    height: 30px;
    background: url(/wp-content/uploads/new-version/Key.png);
    background-repeat: no-repeat;
}

.arrow-right {
    content: "";
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    z-index: 4;
    display: inline-block;
    width: 0;
    height: 30px;
    background: url(/wp-content/uploads/right-arrow.png);
    background-repeat: no-repeat;
    background-size: 29px 29px;
}

.sm_slider-inner {
    overflow: visible !important;
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.badge-hit {
    position: absolute;
    top: 16px;
    right: -27px;
    z-index: 50;
    width: 112px;
    line-height: 30px;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #59dd83;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    padding-left: 8px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.develop-by__text {
    font-size: 14px;
    font-weight: 500;
}

.develop-by__link {
    font-size: 12px;
    font-weight: 500;
    color: #7c7c7c;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.develop-by__link:hover {
    color: var(--primary-color);
}

.modal-custom {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    padding: 15px;
    border-radius: 20px;
}

.modal-custom .btn-style {
    margin: auto;
    width: 100%;
    min-height: 54px;
}

.modal-custom__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 10px;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-custom__close {
    position: absolute;
    right: 18px;
    top: 8px;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 0 1px 0 #fff;
    background: initial;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.modal-custom__close:focus {
    border: none;
    outline: 0;
}

.modal-custom__close:hover {
    color: #c77442;
}

.modal-custom__body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-custom__title {
    text-align: center;
    margin-bottom: 14px;
}

.modal-custom__input {
    border-radius: 50px;
    padding: 14px 20px 14px 30px;
    width: 100%;
    border: 1px solid #a2a2a2;
}

.modal-custom__input:focus {
    outline: 0;
}

.modal-custom .input-wrapper {
    max-width: 325px;
    margin: auto;
    margin-bottom: 20px;
}

.modal-custom .image-wrapper {
    padding: 40px 45px 0 45px;
}

.modal-custom .image-wrapper img {
    width: 100%;
}

.modal-custom .form-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: #7c7c7c;
}

.modal-custom .form-link:hover {
    color: var(--primary-color);
}

.visually-hidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    margin: -1px;
}

.tg-section .custom-link {
    color: #000;
}

.tg-section .custom-link:hover {
    color: #979797;
}

@media (max-width: 768px) {
    .btn-style {
        font-size: 12px;
        padding-left: 30px;
        padding-right: 30px;
        min-height: 52px;
        margin: auto;
    }

    .btn-style .key,
    .btn-style .arrow-right {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        width: 29px;
        margin-left: 20px;
        height: 26px;
        background-size: contain;
        background-position: center;
    }

    .modal-custom {
        padding: 10px;
    }

    .modal-custom__input {
        padding: 10px 0;
        padding-left: 30px;
        padding-right: 20px;
    }

    .modal-custom__input::-webkit-input-placeholder {
        font-size: 14px;
    }

    .modal-custom__input::-moz-placeholder {
        font-size: 14px;
    }

    .modal-custom__input:-ms-input-placeholder {
        font-size: 14px;
    }

    .modal-custom__input::-ms-input-placeholder {
        font-size: 14px;
    }

    .modal-custom__input::placeholder {
        font-size: 14px;
    }

    .modal-custom .btn-style {
        min-height: 46px;
    }

    .modal-custom__title {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0;
    }

    .modal-custom__header {
        padding: 10px 5px 10px 8px;
    }

    .modal-custom .input-wrapper {
        margin-bottom: 20px;
    }

    .modal-custom .image-wrapper {
        max-width: 240px;
    }

    .modal-custom .form-link {
        font-size: 12px;
        font-weight: 500;
    }
}

.social-list {
    display: flex;
}

.social-item {
    max-width: 30px;
    margin-right: 10px;
}

.social-link {
    background: #a95e31;
    border-radius: 50%;
    padding: 6px !important;
}

.social-item svg {
    display: block;
    width: 100%;
    fill: var(--primary-color);
}

.contacts__callback {
    position: relative;
    display: flex;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(var(--main-gradient-from)),
            to(var(--main-gradient-to)));
    background: -o-linear-gradient(left,
            var(--main-gradient-from),
            var(--main-gradient-to));
    background: linear-gradient(to right,
            var(--main-gradient-from),
            var(--main-gradient-to));
    border-radius: 50%;
    -webkit-box-shadow: 0 19px 18px rgb(232 117 48 / 33%);
    box-shadow: 0 19px 18px rgb(232 117 48 / 33%);
    cursor: pointer;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}

.contacts__callback--shake img {
    animation-name: phone-shake;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
}

.contacts__callback:hover {
    color: #fff;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-box-shadow: 0 12px 8px rgb(232 117 48 / 33%);
    box-shadow: 0 12px 8px rgb(232 117 48 / 33%);
}

.round-btn {
    position: relative;
    display: flex;
    border-radius: 50%;
    padding: 8px;
    width: 46px;
    height: 46px;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(var(--main-gradient-from)),
            to(var(--main-gradient-to)));
    background: -o-linear-gradient(left,
            var(--main-gradient-from),
            var(--main-gradient-to));
    background: linear-gradient(to right,
            var(--main-gradient-from),
            var(--main-gradient-to));
    border-radius: 50%;
    -webkit-box-shadow: 0 19px 18px rgb(232 117 48 / 33%);
    box-shadow: 0 19px 18px rgb(232 117 48 / 33%);
    cursor: pointer;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}


.round-btn:hover {
    color: #fff;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-box-shadow: 0 12px 8px rgb(232 117 48 / 33%);
    box-shadow: 0 12px 8px rgb(232 117 48 / 33%);
}

.contacts__callback img {
    margin: auto;
    width: 55%;
}

@keyframes phone-shake {
    0% {
        transform: rotate(0deg);
    }

    35% {
        transform: rotate(0deg);
    }

    40% {
        transform: rotate(20deg);
    }

    45% {
        transform: rotate(-20deg);
    }

    50% {
        transform: rotate(20deg);
    }

    55% {
        transform: rotate(-20deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.header-fixed .header {
    background-color: #fff;
    box-shadow: 0 2px 9px rgba(179, 179, 179, 0.2);
    z-index: 10;
    width: 100%;
    position: fixed;
    opacity: 0.95;
}

.header-fixed .page {
    padding-top: 162px !important;
}

.custom-modal .modal-content {
    border: none;
}

.custom-modal .modal-header {
    border-bottom: none;
}

.custom-input input,
.custom-input textarea {
    width: 100%;
    border: 1px solid #c7c7c7;
    padding: 8px 15px;
    border-radius: 16px;
}

.custom-modal .modal-title {
    font-size: 32px;
    font-weight: 900;
}

.custom-modal--owl .modal-content {
    border-radius: 18px;
}

.br-6 {
    border-radius: 6px;
}

.company-logo {
    margin-bottom: 20px;
    max-width: 180px;
    margin: auto;
    display: block;
    margin-bottom: 12px;
}

.page-id-6062 .burger-menu {
    display: none;
}

.dark-bgr {
    background-color: var(--main-wrapper-dark-bgr);
    color: #fff;
}

.dark-bgr p,
.dark-bgr h1,
.dark-bgr h2,
.dark-bgr h3,
.dark-bgr a,
.dark-bgr .new-logo__text {
    color: var(--main-wrapper-dark-text);
}

.dark-bgr.header {
    background-color: var(--main-wrapper-dark-bgr);
}

.dark-bgr .intro-text__title {
    color: var(--main-wrapper-dark-text) !important;
}

:root {
    --brand-color: #232641;
    --primary-color: #e63f23;
    --main-gradient-from: #fd8674;
    --main-gradient-to: #e63f23;
    --main-gradient-from-hover: #fd8674;
    --main-gradient-to-hover: #e63f23;

    --main-wrapper-dark-bgr: #000217;
    --main-wrapper-dark-text: #fff;
}

.promo-banner {
    margin-top: -50px;
    margin-bottom: 30px;
}

.promo-banner-desktop,
.promo-banner-tablet,
.promo-banner-mobile {
    display: none;
}

@media (min-width: 1024px) {
    .promo-banner-desktop {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .promo-banner-tablet {
        display: block;
    }
}

@media (max-width: 768px) {
    .promo-banner-mobile {
        display: block;
    }
}

.dropdown-menu-content {
    display: none;
}

.menu-dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.footer__apps__list {
    display: flex;
}

.footer__apps__item {
    margin-left: 15px;
    max-width: 35px;
    margin-right: 15px;
}

.footer__apps__item a {
    padding: 0 !important;
}

.footer__apps__item img {
    width: 100%;
}

@media (max-width: 525px) {
    .section-box .btn.btn-light {
        margin: 10px auto 0 auto;
    }
}

@media (min-width: 1399px) {
    .hide-up-xl {
        display: none !important;
    }
}