@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Medium.ttf") format("truetype");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "HelveticaNeue";
    src: url("../fonts/HelveticaNeueLight.otf") format("truetype");
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: "HelveticaNeue";
    src: url("../fonts/HelveticaNeueRoman.otf") format("truetype");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "HelveticaNeue";
    src: url("../fonts/HelveticaNeueMedium.otf") format("truetype");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "HelveticaNeue";
    src: url("../fonts/HelveticaNeueBold.otf") format("truetype");
    font-weight: 700;
    font-display: swap;
}

html {
    --container: 1800px;
    --negative-margins: calc((1816px - 100vw) / 2 );
    --content-margins-container: calc((100vw - 1800px) / 2 );
    scroll-behavior:smooth;
    -moz-scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Gilroy", sans-serif, arial;
    font-size: 18px;
    color: #111116;
}

p, h1, h2, h3, ul, li {
    margin: 0;
    box-sizing: border-box;
}

ul {
    list-style-type: none;
    padding: 0;
}

div, input {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #111116;
}

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

.preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom;
    z-index: 111111;
    transition: opacity 0.5s ease-in-out;
}

.preloader .black_wall {
    height: 100%;
    background-color: #fff;
    transform-origin: top;
    animation: preloader_slide 0.5s ease-in-out 0s 1 normal both;
}

.preloader .loader {
    width: 100%;
    height: 3px;
    position: absolute;
    border-radius: 2px;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #e2e5f1;
    transform-origin: left;
    animation: loader_running 3s ease-in-out 1s infinite normal both;
}

.preloader.off {
    opacity: 0;
    pointer-events: none;
}


ol {
    list-style-type: none;
}

.faq-block__text ol {
    list-style-type: decimal;
}

.faq-block__text ol li, .faq-block__text ul li{
    padding-bottom: 10px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
}

.red {
    color: #FC0000;
}

.mobil-img {
    display: none;
}

.header-circle {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: calc(50% - 175px);
    left: -130px;
    width: 276px;
    height: 276px;
    border-radius: 50%;
    background-color: #FC0000;
    color: #fff;
}

article .header-circle {
    top: 50px;
    right: 50px;
    left: auto;
}

.header-circle-title {
    font-size: 72px;
    font-weight: 700;
}

.header-circle-text {
    margin-top: 4px;
    text-align: center;
    line-height: 24px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.list-lozenge {
    width: 850px;
    margin-left: 200px;
    padding: 50px 0 30px;
}

.list-lozenge li {
    position: relative;
    padding-bottom: 20px;
}

.list-lozenge li::before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    top: 12px;
    left: -40px;
    background: #000;
    transform: rotate(45deg);
}

/* breadcrumb */

.breadcrumb {
    padding: 40px 0 50px;
    color: #736f74;
    font-size: 16px;
    font-weight: 700;
}
.breadcrumb a{
    color: #252126;
}


/* scrollbar */

/* WebKit (Chrome, Safari) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #111116;
}

/* Firefox */
::-moz-scrollbar {
    width: 6px;
    height: 6px;
}

::-moz-scrollbar-thumb {
    background-color: #111116;
}

/* hover styles*/

.header-nav {
    display: flex;
    align-items: center;
    margin-right: 50px;
}

.nav {
    margin-right: 90px;
    position: relative;
}

.nav__list a:after,
.cases__list--link::before {
    content: "";
    position: absolute;
    bottom: -8px;
    display: block;
    height: 1px;
    width: calc(100% - 35px);
    background-color: #fff;
    transition: transform .3s;
    transform: scale(0);
    transform-origin: left;
}

.nav__list a:hover:after,
.cases__list--link:hover:before {
    transform: scale(1);
}

.nav__list .current-menu-item a:hover:after,
.nav__list li .sub-menu a:hover:after  {
    transform: scale(0);
}

.nav__list.nav__list-mobile {
    display: none;
}

.cases__list--link::before {
    width: 100%;
}

/* btn */

.btn {
    border: none;
    background: none;
    background-size: 200% 100%;
    box-sizing: border-box;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: background-position 0.5s;
}

.wpcf7-spinner {
    display: none;
}

.btn:hover {
    background-position: -100% 0;
    color: #fff;
}

.btn-arrow {
    position: relative;
    color: #fff;
    width: 350px;
    white-space: nowrap;
}

.btn-arrow::before {
    content: url('../img/ico/arrow.svg');
    position: absolute;
    width: 34px;
    height: 14px;
    top: 20px;
    right: 35px;
    z-index: 1;
}

.form__btn {
    position: relative;
    width: 350px;
    padding: 18px 30px 18px 18px;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(to right, #FC0000 0%, #FC0000 50%, #AB0000 50%, #AB0000 100%);
}

.contacts-form__right .btn-arrow {
    margin-top: 50px;
    display: block;
}

.about__btn {
    padding: 15px 70px 15px 2px;
    background-image: linear-gradient(to right, transparent 0%, transparent 50%, #FC0000 50%, #FC0000 100%);
}

.work-stages__btn, .connect-form__block .wpcf7-submit, .header__button {
    background-image: linear-gradient(to right, #FC0000 0%, #FC0000 50%, #AB0000 50%, #AB0000 100%);
}

.about__btn .btn-arrow {
    color: #111116;
}

.about__btn .btn-arrow::before {
    top: 0;
    right: -55px;
    content: url('../img/ico/arrow-black.svg');
}

.about__btn:hover .btn-arrow {
    color: #fff;
}

.about__btn:hover .btn-arrow::before {
    content: url('../img/ico/arrow.svg');
}

.about__img {
    width: 40%;
    max-width: 100%;
}
.about__img video,.about__img iframe {
    max-width: 100%;
}

.better__btn {
    padding: 18px 65px 18px 18px;
    display: block;
    width: max-content;
    margin-top: 30px;
    background-image: linear-gradient(to right, #FC0000 0%, #FC0000 50%, #AB0000 50%, #AB0000 100%);
}

.better__btn .btn-arrow::before {
    top: 2px;
    right: -52px;
}

.working__btn {
    padding: 18px 65px 18px 18px;
    display: block;
    width: fit-content;
    margin: 50px auto 0;
    background-image: linear-gradient(to right, #FC0000 0%, #FC0000 50%, #AB0000 50%, #AB0000 100%);
}

.working__btn .btn-arrow::before {
    top: 0;
    right: -50px;
}

.call-up__btn {
    display: block;
    width: max-content;
    padding: 18px 90px 18px 50px;
    background-image: linear-gradient(to right, #FC0000 0%, #FC0000 50%, #AB0000 50%, #AB0000 100%);
}

.form__btn:active,
.about__btn:active,
.work-stages__btn:active,
.better__btn:active,
.call-up__btn:active,
.header__button:active,
.about__btn:active {
    background-image: linear-gradient(to right, #FC0000 0%, #FC0000 50%, #750000 50%, #750000 100%);
    transition-duration: 1s;
    background-position: -100% 0;
}

.call-up__btn .btn-arrow::before {
    top: 2px;
    right: -55px;
}

/* link arrow */

.link-arrow {
    position: relative;
    color: #111116;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    margin-top: auto;
}

.link-arrow::after {
    content: url(../img/ico/arrow-black.svg);
    position: absolute;
    width: 34px;
    height: 14px;
    top: 2px;
    right: -55px;
}

/* title */

.title-block {
    font-size: 62px;
    line-height: 76px;
    font-weight: 700;
}
.title-block > span {
    white-space: nowrap;
}

.header__container a[title="Russian"] {
    text-transform: lowercase;
    cursor: pointer;
}

img::before {
    content: none;
}

/* header */

/* .menu__toggle {
    opacity: 0;
} */

.menu__btn {
    display: none;
    align-items: center;
    position: relative;
    margin-right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
.menu__btn > span::before {
    content: '';
    top: -8px;
}
.menu__btn > span::after {
    content: '';
    top: 8px;
}

.nav__list > .menu-item {
    transition: .3s;
}

.nav__list > .menu-item > .sub-menu {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    width: 100vw;
    background-image: url('../img/Animation-svg.svg');
    background-repeat: no-repeat;
    background-size: 240px;
    background-position: right 10% bottom 50px;
    padding: 50px 15% 50px 5%;
    column-gap: 10%;
    justify-content: flex-start;
    display: flex;
    z-index: 12;
    overflow-y: auto;
    transition: .3s;
    background-color: #fff;
}

.nav__list:not(.nav__list-mobile) > .menu-item > .sub-menu {
    display: none;
}

.nav__list > #menu-item-36.menu-item > .sub-menu {
    background-position: right 10% bottom -50px;
}

.header__container .nav__list > .menu-item > .sub-menu li a {
    color: #111116;
}

.nav__list > .menu-item:hover > .sub-menu {
    visibility: visible;
    transition: .3s;
}

.nav__list:not(.nav__list-mobile) > .menu-item:hover > .sub-menu {
    display: flex;
    box-shadow: 0 100px 100px 0 rgba(0, 0, 0, .4);
}

.nav__list > #menu-item-36.menu-item:hover > .sub-menu {
    column-gap: 18%;
}

.nav__list > .menu-item::before {
    position: absolute;
    content: '';
    width: 120%;
    height: 55px;
    top: 27px;
    left: -10px;
}

.nav__list > li > .sub-menu > li > a {
    font-size: 24px;
    font-weight: 700;
}

.nav__list > li > .sub-menu > li > .sub-menu > li > a {
    font-size: 16px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.nav__list > li > .sub-menu > li > .sub-menu > li {
    padding-top: 20px;
}

.header__wrapper-menu {
    height: 120px;
}

.header {
    background: #111116;
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header__container {
    position: relative;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.header__container a {
    color: #fff;
    font-size: 18px;
    transition: all 0.4s;
}

.header__container .menu-item a:hover {
    color: #e7e6e6;
}

.nav__list {
    display: flex;
    align-items: center;
    column-gap: 95px;
    padding: 0;
}

.nav__list > li {
    position: relative;
}

.nav__list > li { 
    padding: 6px 30px 6px 10px;
}
.nav__list > li.menu-item-118, .nav__list > li.menu-item-36 {
    padding: 6px 38px 6px 10px;
}

.nav__list > li:last-child {
    padding: 6px 30px 6px 10px;
}
.trp-ls-shortcode-language::-webkit-scrollbar { width: 0 !important }

.header-nav .nav__list > .current_page_item, .header-nav .nav__list > .current-menu-item {
    background-color: #FC0000;
}

.header-nav .current-menu-item::after {
    content: '\2022';
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: inline-block;
}
.header-nav .menu-item-118::after, .header-nav .menu-item-118.current-menu-item::after,
.header-nav .menu-item-36::after, .header-nav .menu-item-36.current-menu-item::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 11px;
    top: 10px;
    right: 8px;
    background-image: url('../img/ico/arrow-down.png');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: top right;
    background-color: transparent;
    cursor: pointer;
    transition: 250ms 50ms;
}

.header-nav .menu-item-118:hover::after, .header-nav .menu-item-36:hover::after {
    transform: rotate(-180deg);
}

li .trp-language-switcher {
    width: 50px;
    height: 36px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.trp-language-switcher .trp-ls-shortcode-current-language, li .trp-language-switcher:hover .trp-ls-shortcode-language {
    width: 100% !important;
    top:7px;
}

li .trp-language-switcher > div {
    width: 35px;
    font-family: "Gilroy", sans-serif, arial;
    background-image: url('../img/ico/arrow-down.png');
    background-size: 16px 11px;
    background-position: top 5px right;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    border: none;
}

li .trp-language-switcher > div > a:hover {
    background: transparent;
}

li  .trp-language-switcher:hover .trp-ls-shortcode-language {
    padding: 0;
    overflow: hidden;
}

.trp-language-switcher:focus .trp-ls-shortcode-language,
.trp-language-switcher:hover .trp-ls-shortcode-language {
    max-height: 250px;
}

.trp-language-switcher > div > a {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.trp-ls-shortcode-language > a:last-child {
    padding-top: 5px;
}

.header__button {
    display: block;
    font-weight: 700;
    padding: 14px 30px;
    text-align: center;
    width: 223px;
    box-sizing: border-box;
}

.header__block .wpcf7-form {
    margin-top: 50px;
}

.wpcf7-form {
    display: flex !important;
}
.utm-input {
    display: none;
}

.header__content {
    padding: 100px 60px;
    background-repeat: no-repeat;
    background-position: right 60px bottom 10px;
    background-color: #fff;
}

.header__block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header__text-container {
    width: 60%;
}

.header__title {
    font-size: 72px;
    font-weight: 700;
}

.header__text,.header__text-bottom {
    width: 100%;
    margin-top: 24px;
    font-size: 32px;
    font-weight: 500;
}

/* Form */

.discuss-form__block .wpcf7-form {
    position: relative;
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.form__input {
    width: 90%;
    margin-right: 20px;
    padding-bottom: 20px;
    border: none;
    border-bottom: 2px solid #B4B8C8;
    font-size: 24px;
    line-height: 36px;
    color: #ACB0C2;
    font-family: "HelveticaNeue", sans-serif, arial;
}

input:focus, select:active, select:focus, select:focus-visible, option:focus, option:active {
    outline: none;
}

.wpcf7-form-control-wrap input {
    color: #111116;
}

.application .wpcf7-form-control-wrap input {
    color: #fff;
}

.wpcf7 form .wpcf7-response-output {
    margin: 10px 0;
}

.application .wpcf7 form .wpcf7-response-output {
    color: #fff;
}

/* header__partner */

.header__partner-block {
    display: flex;
}

.header__partner-block > div {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 170px 0 0;
}

.header__partner-img {
    height: 152px;
}

.partner__img-mobile, .language-mobil {
    display: none;
    position: relative;
    height: 26px;
}
.partner__img-mobile img {
    position: absolute;
    z-index: 2;
}

.partner__img {
    width: 550px;
    height: 835px;
    position: relative;
}

.partner__img  img {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
}

.partner__img::after,  .partner__img-mobile::after {
    position: absolute;
    content: url('../img/Animation-svg.svg');
    width: 295px;
    height: 295px;
    left: -20%;
    bottom: 0;
}

/* trust */

.trust__content .splide__list {
    align-items: center;
    justify-content: space-between;
}

.trust__content img {
    max-width: 300px;
    height: auto;
}

.trust__text {
    margin-bottom: 50px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

/* about */

.about {
    margin: 267px 0 167px;
}

.about__block {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.about__text-item {
    width: 50%;
    margin-left: 10%;
}

.about__description {
    margin-top: 10px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.about__text {
    margin: 70px 0;
    font-size: 28px;
    font-family: "HelveticaNeue", sans-serif, arial;
    line-height: 33.4px;
}

.about__text p {
    margin-bottom: 15px;
}

.about__text a {
    text-decoration: underline;
}

.about__text p:last-child {
    margin-bottom: 0;
}

/* number */

.container__number {
    position: relative;
    background-repeat: no-repeat;
    background-position: bottom -250px right 45%;
}

.number__group {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 100px 0 700px;
}

.number__item {
    text-align: center;
}

.number__num {
    font-size: 5.5rem;
    font-weight: 700;
}

.number__text {
    font-size: 24px;
    font-weight: 700;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.number__circle-block {
    position: absolute;
    bottom: 200px;
    right: 21%;
    width: 275px;
    height: 275px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 45px;
    background: #FC0000;
    border-radius: 50%;
    color: #fff;
}

.number__percent {
    font-size: 72px;
    font-weight: 700;
}

.number__percent-text {
    font-size: 18px;
    text-align: center;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.splide-number__animated {
    background-color: #111116;
    padding: 25px 0;
}

.splide-number__animated .splide__slide {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 75px;
    font-weight: 700;
    color: #fff;
}

.splide-number__animated .splide__slide img, .splide-number__animated .splide__slide p {
    margin: 0 10px;
    white-space: nowrap;
}

.number__content-block {
    display: flex;
}

.number__content-img {
    margin: auto 20px;
}

/* services */

.services {
    padding: 150px 0 100px;
}

.services .splide__track {
    margin-right: -20px;
}

.services__title-block {
    display: flex;
    align-items: center;
}

.services__link {
    position: relative;
    display: block;
    margin-left: 64px;
    color: #111116;
    font-weight: 700;
}

.services__link::after {
    position: absolute;
    content: url('../img/ico/arrow-black.svg');
    width: 32px;
    height: 12px;
    top: 2px;
    right: -52px;
}

#splideScroll {
    margin-top: 50px;
}

.services__block {
    display: flex;
    max-width: 100%;
    padding: 0 0 80px 0;
    margin: 100px 0 0;
}

@-moz-document url-prefix() {
    .services__block, .working__block {
        scrollbar-color: #111116 #D0D4E2;
    }
}

.services__item {
    position: relative;
    min-width: 480px;
    width: 480px;
    min-height: 490px;
    display: inline-block;
    vertical-align: top;
    padding: 74px 30px 50px;
    transition: all 0.4s;
    background-color: rgba(238, 241, 244, 0.4);
}

.services__card-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 28px;
    font-weight: 500;
    color: #ACB0C2;
}

.services__item-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services__list-title {
    font-size: 42px;
    line-height: 52px;
}

.services__list-description {
    margin-bottom: 10px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.services__list-link {
    position: relative;
    display: block;
    width: fit-content;
    font-size: 18px;
    font-weight: 700;
    color: #111116;
}

.services__list-link::after {
    position: absolute;
    content: url(../img/ico/arrow-black.svg);
    width: 32px;
    height: 12px;
    top: 2px;
    right: -52px;
}

.services__equivalent-text {
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: 700;
}

.services__equivalent-text span {
    font-size: 42px;
}

.services__item:hover {
    background-color: #FC0000;
    color: #fff;
}
.services__item:hover .services__list-link, .services__item:hover a, .services__item:hover .services__card-number, 
.services__item:hover .services__list-title a, .description-services__item:hover a {
    color: #fff;
}

.services__item:hover .services__list-link::after, .link-arrow__block:hover .services__list-link::after {
    content: url(../img/ico/arrow.svg);
}

/* better */

.better {
  background-color: rgba(229, 232, 244, 0.5);
  padding: 100px 0;
}

.better__container {
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 650px;
}

.better__block {
    max-width: 1050px;
}

.better__text {
    width: 885px;
    margin: 50px 0;
    font-size: 28px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.better__text p:first-child {
    margin-bottom: 20px;
}

.better__slogan {
    font-size: 32px;
    font-weight: 700;
}

/* discuss */

.discuss-form {
    background-color: #111116;
    padding: 50px 0;
}

.discuss-form__container {
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding: 50px 0;
}

.discuss-form__img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 275px;
    height: 275px;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 275px;
}

.discuss-form__img img{
    width: 114px;
    height: 128px;
}

.discuss-form__title {
    /* max-width: 560px; */
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}
.discuss-form__title span{
    color: #FC0000;
}

.discuss-form__block input.wpcf7-text, .wpcf7-form-control.wpcf7-intl_tel,
.intl-tel-input.allow-dropdown input, .intl-tel-input.allow-dropdown input[type=tel] {
    max-width: 100%;
    padding-bottom: 20px;
    margin-right: 30px;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 24px;
    color: #fff;
}

.discuss-form__block .wpcf7-form-control-wrap {
    width: 30%;
    flex: 1;
}

.discuss-form__block .wpcf7-response-output {
    flex-basis: 100%;
    color: #fff;
}

/* working */

.working {
    padding: 100px 0 210px;
}

.working__block {
    display: flex;
    max-width: 100%;
    padding: 0 0 80px 0;
    margin: 100px 0 0;
}

.working .splide {
    margin: 100px 0 0 -20px;
}

.working__item {
    position: relative;
    min-width: 480px;
    height: 510px;
    display: inline-block;
    vertical-align: top;
    padding: 195px 30px 30px;
    background-color: rgba(238, 241, 244, 0.4);
    transition: all 0.4s;
}

.working__item-wripper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.working-img {
    position: absolute;
    top: 30px;
    right: 30px;
}

.working__block-title {
    font-size: 28px;
    font-weight: 700;
}

.working__block-text {
    margin: 30px 0;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.working__block-bigtitle {
    font-size: 42px;
    font-weight: 700;
    height: auto;
    margin-top: auto;
}

.working__item:hover {
    background-color: #FC0000;
    color: #fff;
}

.working__item:hover .working-img {
    filter: invert(1);
}

/* call-up */

.call-up {
    background-color: #111116;
    padding: 50px 0 0;
    color: #fff;
}

.call-up__container {
    display: flex;
    align-items: end;
}

.call-up__block {
    display: flex;
    flex-direction: column;
    width: 67%;
    padding-bottom: 50px;
}

.call-up__block-img {
    position: relative;
    width: 550px;
    height: 755px;
}

.call-up__photo {
    position: absolute;
    z-index: 1;
    right: 80px;
    bottom: 0;
}

.call-up__spin {
    position: absolute;
    background-repeat: no-repeat;
    width: 295px;
    height: 295px;
    bottom: 35%;
    right: 0;
}

.call-up__title {
    color: #fff;
}

.call-up__text {
    width: 580px;
    margin: 50px 0;
    font-weight: 300;
    line-height: 24px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.call-up__name-block {
    margin-top: 120px;
    margin-left: auto;
    padding-right: 100px;
}

.call-up__name {
    font-size: 42px;
}

.call-up__position {
    padding-top: 10px;
    color: #FC0000;
    font-size: 24px;
    font-weight: 700;
}

/* cases */

.cases {
    padding: 98px 0 94px;
}

.cases__list {
    counter-reset: cases-counter;
    margin: 50px 0;
    padding: 0;
}

.cases__list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.cases__list .cases__img-block img {
    object-position: top right;
}

.cases__item {
    height: 165px;
    display: flex;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    border-top: 2px solid #B4B8C8;
    counter-increment: cases-counter;
    transition: all 0.5s ease-out;
}

.cases__item:last-child {
    border-bottom: 2px solid #B4B8C8;
}

.cases__item::before {
    content: counter(cases-counter, decimal-leading-zero);
    position: absolute;
    top: calc(74px - 12px);
    left: 0;
    font-size: 28px;
    font-weight: 500;
    color: #ACB0C2;
}
.cases__item::after {
    content: '';
    position: absolute;
    top: calc(74px - 14px);
    right: 0;
    width: 32px;
    height: 33px;
    background-image: url(../img/arrow-down-black.png);
    background-repeat: no-repeat;
    background-size: 32px;
    transition: all 0.5s ease-out;
}
.cases__item.expanded::after {
    filter: invert(1);
    transform: rotate(180deg);
    right: 60px;
}
.cases__item.expanded::before {
    top: 63px;
}

.cases__item.expanded {
    background-color: #111116;
    height: auto;
    color: #fff;
    margin: 0 var(--negative-margins);
    transition: all 0.5s ease-in;
}

.cases__item.expanded::before{
    left: var(--content-margins-container);
}

.cases__item-left {
    width: 45%;
    min-width: 45%;
    display: flex;
    align-items: flex-start;
    margin-left: var(--content-margins-container);
    justify-content: space-between;
    padding-top: 150px;
    column-gap: 20px;
}

.cases__item-left div {
    text-align: center;
}

.cases__item-block {
    width: 55%;
    padding: 0 50px 0 35px;
    margin-left: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.cases__list-text {
    font-family: "HelveticaNeue", sans-serif, arial;
    color: #fff;
}

.cases__list-title {
    margin-bottom: 50px;
    font-size: 82px;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
}

.cases__item.expanded .cases__list-title{
    line-height: 95px;
}

.cases__list--link {
    position: relative;
    display: block;
    width: fit-content;
    margin-top: 50px;
    color: #fff;
    transition: all 0.4s;
    font-weight: 700;
    padding: 10px 70px 10px 2px;
    background-image: linear-gradient(to right, transparent 0%, transparent 50%, #FC0000 50%, #FC0000 100%);
    background-size: 200% 100%;
    cursor: pointer;
    transition: background-position 0.5s;
}

.cases__list--link::after {
    content: url(../img/ico/arrow.svg);
    position: absolute;
    width: 34px;
    height: 14px;
    top: 10px;
    right: 5px;
}

.cases__list--link:hover {
    background-position: -100% 0;
}

.cases__item-block .cases__list--link::before {
    content: none;
}

.cases__num-poi {
    font-size: 72px;
    font-weight: 700;
    color: #FC0000;
    white-space: nowrap;
    margin-bottom: 6px;
}

.cases__num-block {
    display: flex;
    justify-content: flex-start;
    gap: 20px 60px;
    padding: 50px 0;
    margin-top: auto;
}

.cases__num-name {
    margin-bottom: 8px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.cases__num-num {
    font-size: 48px;
    font-weight: 700;
}

.cases__text-poi {
    font-family: "HelveticaNeue", sans-serif, arial;
}

.cases__link {
    text-align: center;
    font-weight: 700;
    margin: 0 auto;
}

.cases__img-block {
    overflow: hidden;
    width: 430px;
    height: 310px;
}

#filtered-posts .post-thumbnail > img {
    visibility: visible;
    object-position: top right;
}

/* response */

.response {
    padding: 100px 0 77px;
}

.response__block {
    display: flex;
    justify-content: space-between;
    height: 515px;
    margin-top: 50px;
}

.response__item-left {
    width: 43%;
    overflow: hidden;
    overflow-y: scroll;
    padding-top: 60px;
}

.response__item-block {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    color: #ACB0C2;
    cursor: pointer;
}

.response__compani-branch, .response__compani-text {
    font-family: "HelveticaNeue", sans-serif, arial;
}

.response__item-block img {
    filter: invert(0.3);
    opacity: 0.6;
}

.response__item-block.active {
    color: #111116;
}

.response__item-block.active img {
    filter: none;
    opacity: 1;
}

.response__item-right {
    width: 62%;
    padding: 0 170px 0 200px;
}

.response__item-block-right {
    display: none;
}

.response__item-block-right.active {
    display: flex;
    flex-direction: column;
    min-height: 415px;
}

.response__compani-logo {
    width: 122px;
    height: 122px;
    border-radius: 50%;
    margin: 0 30px 0 5px;
    /* box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.4); */
}

.response__compani-name {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
}

.response__compani-title {
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 700;
}

.response__stars {
    width: 160px;
    height: 24px;
}

.response__compani-text {
    margin: 50px 0;
    font-size: 24px;
}
.response__mobile {
    display: none;
}

.response__position {
    padding-bottom: 20px;
}

/* application */

.application {
    background-color: #111116;
    padding: 50px 0;
}

.application__container {
    display: flex;
    align-items: start;
    justify-content: center;
    margin-left: 300px;
}

.application__block {
    width: 885px;
}

.application__img {
    width: 315px;
    height: 335px;
    position: relative;
}

.application__img img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.application__img::after {
    position: absolute;
    content: url('../img/Animation-svg.svg');
    width: 270px;
    height: 270px;
    left: 45px;
    bottom: -15px;
}

.application__title {
    width: 840px;
    max-width: 100%;
    text-align: center;
    font-size: 48px;
    color: #fff;
}

.application__block form {
    flex-direction: column;
}

.application__block .wpcf7-form-control-wrap,
.application__url,
.application__text,
.application__name,
.application__phone,
.application__email {
    width: 100%;
}

.application__url,
.application__text,
.application__name,
.application__phone,
.application__email {
    margin-top: 10px;
    padding: 20px 0;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 24px;
    color: #EEF1F4;
}

.application .application__btn {
    margin: 30px auto 0;
}

/* blog */

.blog {
    padding: 80px 0 100px;
}

.blog a {
    color: #111116;
}

.blog__title-block {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 15px;
    margin-bottom: 45px;
}

.blog__title-block .link-arrow{
    margin-top: 0;
}

.blog__title-block .title-block {
    margin-right: 85px;
}

.blog__block {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.blog__item {
    width: 32%;
    display: flex;
    flex-direction: column;
}
.blog__item-img {
  height: 475px;
  overflow: hidden;
}
.blog__img-block {
    height: 375px;
    overflow: hidden;
}
.blog__item-img img, .blog__img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.link-arrow__block {
    width: fit-content;
    margin-top: auto;
    padding: 10px 70px 10px 2px;
    background-image: linear-gradient(to right, transparent 0%, transparent 50%, #FC0000 50%, #FC0000 100%);
    background-size: 200% 100%;
    cursor: pointer;
    transition: background-position 0.5s;
}

.link-arrow__block:hover {
    background-position: -100% 0;
}

.link-arrow__block:hover a {
    color: #fff;
}

.link-arrow__block:hover .link-arrow::after {
    content: url(../img/ico/arrow.svg);
}

.blog__category-link, .similar-posts__category-link {
    margin: 50px 0 10px;
    font-weight: 700;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.blog__title-post {
    font-size: 32px;
     font-weight: 700;
}

.blog__description {
    margin: 32px 0 74px;
    font-size: 20px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

/* faq */

.faq {
    padding: 100px 0;
    background-color: #111116;
}

.faq__container {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.faq__block {
    width: 885px;
}

.faq__text {
    margin-top: 50px;
    font-size: 20px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.faq__btn {
    position: relative;
    display: block;
    width: 270px;
    box-sizing: border-box;
    margin-top: auto;
    margin-right: 155px;
    padding: 18px 33px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 700;
}

.faq__btn::before {
    content: url('../img/ico/arrow.svg');
    position: absolute;
    width: 34px;
    height: 14px;
    top: 20px;
    right: 35px;
}

/* contacts-form */

.wpcf7-form input {
    border-radius: 0;
}
.wpcf7-form input::placeholder, .wpcf7-form-control-wrap input::placeholder {
    color: #ACB0C2;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.contacts-form {
    background: linear-gradient(to right, #111116 50%, #fff 50%);
}

.contacts-form__container {
    display: flex;
}

.contacts-form__left {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 104px 74px 74px 0;
    color: #fff;
    font-size: 82px;
    font-weight: 700;
}

.contacts-form__right {
    width: 60%;
    height: auto;
    padding: 0 0 0 183px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.square {
    width: 262px;
    height: 262px;
    background-color: #D9D9D9;
    margin: 23px 0 20px auto;
}

.contacts-form__text-down {
    text-align: right;
}

.contacts-form__form-block {
    width: 885px;
}

.contacts-form__form-block h3 {
    max-width: 860px;
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
}

.contacts-form__form-block .contacts-form__title {
    max-width: 860px;
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
}

.contacts-form__right .wpcf7-form {
    flex-direction: column;
}

.contacts-form__right .wpcf7-form-control-wrap {
    width: 100%;
}

.contacts-form__right .application__url, .contacts-form__right .application__text,
.contacts-form__right .application__name, .contacts-form__right .application__phone,
.contacts-form__right .application__email {   
    border-bottom-color: #ACB0C2;
    font-family: "HelveticaNeue", sans-serif, arial;
}

/* marketing */

.marketing {
    background-color: rgba(229, 232, 244, 0.5);
    padding: 125px 0;
}

.marketing__container {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.marketing-img__item, .marketing__block {
    width: 49%;
}

.marketing-img__block {
    position: relative;
    padding-top: 100px;
}

.marketing__img {
    position: relative;
    z-index: 1; 
}

.marketing-img__block::after {
    position: absolute;
    content: '330%';
    top: -100px;
    left: 30px;
    font-size: 280px;
    font-weight: 700;
    color: #FC0000;
}

.marketing__block {
    max-width: 770px;
    margin: 0 auto;
}

.marketing__text {
    font-size: 28px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.marketing__text p {
    margin-top: 25px;
}

.marketing__roi {
    margin-top: 28px;
}

/* faq-block */

.faq-block {
    padding: 100px 0;
}

.faq-block__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.faq-block__block {
    width: 82%;
}

.faq-block__title {
    font-size: 32px;
    font-weight: 700;
}

.faq-block__item {
    position: relative;
    border-bottom: 1px solid rgba(172, 176, 194, 1);
    padding: 30px 0 30px 55px;
    cursor: pointer;
}

.faq-block__item::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 40px;
    left: 0;
    background-image: url(../img/ico/plus.svg);
    background-size: 24px;
    background-repeat: no-repeat;
}

.faq-block__item.active::before {
    background-image: url(../img/ico/minus.svg);
    top: 50px;
}

.faq-block__text {
    max-height: 0;
    margin-left: 70px;
    overflow: hidden;
    padding-left: 30px;
    border-left: 1px solid #FC0000;
    transition: 0.3s;
}

.faq-block__text p {
    margin-bottom: 20px;
}

.faq-block__text p:last-child {
    margin-bottom: 0;
}

.faq-block__text ul {
    list-style-type: disc;
    margin-bottom: 20px;
    margin-left: 30px;
}

.faq-block__item.active .faq-block__text {
    max-height: 100%;
    margin-top: 30px;
}

/* footer */

.footer {
    background-color: #E5E8F4;
    padding: 100px 0 105px;
}

.footer__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__item > div {
    width: 50%;
}

.footer__phone {
    display: block;
    margin-bottom: 30px;
    font-size: 62px;
    font-weight: 700;
}

.footer__social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 70px;
    margin: 20px 0 ;
}

.footer__social-ico {
    display: block;
}

.footer__item--center {
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 290px;
    padding: 70px 0;
}

.footer__email {
    display: block;
    margin-bottom: 30px;
    font-size: 62px;
    font-weight: 700;
}

.footer__address {
    font-size: 24px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.footer__nav-block {
    display: flex;
    align-items: start;
    column-gap: 50px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.footer__nav-list-title {
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
}

.footer__nav-list li {
    margin-bottom: 16px;
}

.footer__nav-list li:last-child {
    margin-bottom: 0;
}

.footer__link-block {
    display: flex;
    justify-content: flex-start;
    column-gap: 25px;
    margin-top: 150px;
}

.footer__link-block a {
    display: block;
}

.footer-bottom {
    padding: 50px 0;
}

.footer__social-blosk {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
}

.footer-bottom__container {
    display: flex; 
    justify-content: flex-start;
    column-gap: 14%;
    font-size: 16px;
    color: #ACB0C2;
}

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

.footer-bottom__item p:last-child {
    margin-bottom: 0;
}

/* popup-languages */

.popup-languages {
	display: none;
	position: fixed;
    width: 100vw;
    height: 100vh;
	top: 0;
	left: 0;
    background-color: rgba(17, 17, 22, 0.5);
	z-index: 101;
}
.popup-content {
	position: absolute;
    width: 640px;
    top: 30%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
	text-align: center;
	background: #fff;
	padding: 45px 30px 30px;
}
.popup-languages .popup-close {
	position: absolute;
	top: 20px;
    right: 20px;
    font-size: 30px;
    line-height: 20px;
    color: #acb0c2;
	cursor: pointer;
	transition: 0.3s;
}
.popup-close:hover {
	opacity: 0.8;
}
.popup-title {
	font-size: 32px;
    line-height: 40px;
    font-weight: 700;
	margin: 0;
}

.popup-btn {
   width: 335px;
   max-width: 100%;
   display: block;
   margin-top: 30px;
   padding: 18px 18px 18px 0;
   text-align: center;
   border: 1px solid #111116;
   font-weight: 700;
}

.popup-btn span{
    position: relative;
}

.popup-btn span::after {
    content: url(../img/ico/arrow-black.svg);
    position: absolute;
    width: 34px;
    height: 14px;
    top: 2px;
    right: -52px;
} 

.popup--link-uk {
   border-color: #FC0000;
   color: #FC0000;
}

.popup--link-uk span::after {
    content: url(../img/ico/arrow-red.png);
    right: -48px;
}

/* connect-form */

input:-webkit-autofill {
    transition: all 5000s ease-in-out 0s;
}

.form__input {
    color: #111116;
}

.connect-form {
	position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
	left: 0;
    background-color: rgba(17, 17, 22, 0);
    pointer-events: none;
	z-index: 1000000;
    transition: background-color 0.6s ease-in;
}

.connect-form__content{
    position: absolute;
    width: 945px;
    top: 0;
    right: -945px;
    background-image: url('../img/http-gray-circle.png');
    background-repeat: no-repeat;
    background-position: top 145px right 0;
    padding: 50px 0 110px;
    background-color: #111116;
    color: #fff;
    height: 100vh;
    overflow-y: auto;
    transition: right 0.6s ease-in-out;
}

.connect-form.active .connect-form__content{
    right: 0;
}

.connect-form.active {
    background-color: rgba(17, 17, 22, 0.5);
    pointer-events: auto;
}

.connect-form__block {
    width: 575px;
    margin: 0 auto;
}

.connect-form .popup-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 26px;
    cursor: pointer;
    transition: 0.3s;
}
.popup-close:hover {
    opacity: 0.8;
}

.connect-form__block .wpcf7-form {
    flex-direction: column;
    margin: 0;
}

.connect-form__block .wpcf7-form-control-wrap, .intl-tel-input.allow-dropdown {
    width: 100%;
}

.connect-form__block .wpcf7-url,
.connect-form__block .wpcf7-text,
.connect-form__block .wpcf7-email,
.connect-form__block .wpcf7-tel,
.wpcf7-intl_tel {
    width: 100%;
    margin-bottom: 5px;
    padding: 20px 0;
    border: none;
    border-bottom: 2px solid #707073;
    background-color: transparent;
    color: #fff;
    font-size: 24px;
}
.discuss-form .wpcf7-intl_tel {
    color: #fff;
}
.iti-mobile .intl-tel-input.iti-container {
    z-index: 9999999999999;
}

.connect-form__title {
    font-size: 32px;
    font-weight: 700;
}

.connect-form__text {
    margin: 30px 0;
    font-size: 24px;
    font-weight: 500;
}

.connect-form__block .wpcf7-list-item-label {
    font-size: 14px;
}

.connect-form__block .wpcf7-list-item label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.connect-form__block .wpcf7-list-item {
    position: relative;
    padding-left: 20px;
    margin-top: 20px;
}

.connect-form__block .wpcf7-list-item-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #B4B8C8;
    position: absolute;
    left: -16px;
    top: 0;
}

.connect-form__block .wpcf7-list-item-label.checked::before {
    background: #fc0000 url(../img/ico/checked-ico.png);
    background-repeat: no-repeat;
    background-position: top 4px left 3px;
    border-color: #fc0000;
    background-size: 15px;
}

.connect-form__block .wpcf7-list-item .wpcf7-list-item-label {
    order: 5;
}

.connect-form__block .wpcf7-submit {
    width: 100%;
    margin-top: 53px;
    padding: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* icons footer */

#icons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 50;
}

.icon {
    width: 100px;
    height: 100px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background-size: cover;
    cursor: pointer;
}

#telegram-icon {
    background-image: url('../img/ico/telegram-icon.png');
}

#viber-icon {
    background-image: url('../img/ico/viber-icon.png');
}

/* form-quiz */

.form-quiz {
    padding: 150px 0;
    display: none;
    background: linear-gradient(to right, #fff 50%, #FC0000 50%);
}

.form-quiz__block .wpcf7.js {
    width: 750px;
    max-width: 100%;
}

.form-quiz__block .wpcf7-form {
    flex-direction: column;
    height: auto;
}

.form-quiz__block {
    display: flex;
    justify-content: space-between;
}

.form-quiz__block .wpcf7-form fieldset {
    padding: 0;
    margin: 0;
}

.form-quiz__block .wpcf7-form .wpcf7-list-item {
    display: block;
    margin: 0;
}

.form-quiz__block .wpcf7-form-control-wrap {
    display: block;
}

.form-quiz__block .form-quiz-name,
.form-quiz__block .form-quiz-email,
.form-quiz__block .form-quiz-linkvc,
.form-quiz__block .form-quiz-phone {
    width: 100%;
    border: none;
    padding: 15px 0;
    margin-bottom: 20px;;
    border-bottom: 2px solid #B4B8C8;
    font-size: 24px;
    color: #111116;
}

.form-quiz__textVC {
    font-size: 24px;
    color: #111116;
}

.form-quiz__textor {
    width: 100%;
    margin: 10px 0;
    text-align: center;
}

.form-quiz__block .wpcf7-form .form-quiz-radio label{
    flex-direction: row-reverse;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
    color: #14191F;
}

.form-quiz__block .wpcf7-form .wpcf7-list-item input[type="radio"] {
   opacity: 0;
}

.form-quiz__block  .wpcf7-list-item-label {
    position: relative;
    width: 100%;
}

.form-quiz__block .wpcf7-list-item-label::after {
    position: absolute;
    content: '';
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    border: 3px solid #B4B8C8;
    border-radius: 50%;
    top: 0;
    right: 0;
}
.form-quiz__block .wpcf7-list-item-label::before {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: transparent;
}

.form-quiz__block .wpcf7-form .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::after{
    border-color: #FC0000;
}

.form-quiz__block .wpcf7-form .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::before{
    background-color: #FC0000;
}

.form-quiz__block .wpcf7-form .fieldset-cf7mls .cf7mls_next {
    float: left;
}

.form-quiz__note {
    margin-top: 45px;
    text-transform: uppercase;
}

.form-quiz-title {
    margin: 50px 0;
    font-size: 62px;
    font-weight: 700;
    color: #FC0000;
}

/* vakansyy */

.header-vakansyy .team-page__header-item{
    width: 65%;
}

.vacancies {
    padding: 100px 0;
}

.vacancies__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    list-style-type: none;
    padding: 0;
}

.vacancies__item {
    width: 48%;
    max-width: 885px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 680px;
    padding: 50px 30px 60px;
    gap: 2%;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-color: rgba(229, 232, 244, 0.5);
}

.vacancies__item:nth-child(3n-2) {
    background-image: url(../img/vacancies-img.png);
    background-size: 300px;
}

.vacancies__item:nth-child(3n-1) {
    background-image: url(../img/vacancies-img2.png);
    background-size: 395px;
}

.vacancies__item:nth-child(3n) {
    background-image: url(../img/vacancies-img3.png);
}

h3.vacancies__title {
    font-size: 42px;
    font-weight: 700;
    margin-right: 0;
}
.vacancies .splide__slide {
    padding: 50px 30px;
    height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vacancies__terms {
    display: flex;
    padding: 20px 0 50px;
}

.vacancies__salary {
    font-size: 32px;
    font-weight: 700;
    color: #FC0000;
}

.vacancies__type-work {
    margin-left: 80px;
    color: #707073;
    font-size: 32px;
    font-weight: 500;
}

.vacancies__text {
    font-size: 24px;
}

.vacancies__link, .form-quiz__block .wpcf7-form .cf7mls_next,
.form-quiz__block .wpcf7-form .cf7mls_back,
#form-quiz_text-btn {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 275px;
    margin: 0;
    border: 2px solid #111116;
    padding: 18px 64px;
    font-weight: 700;
    min-width: fit-content;
}

.vacancies__link::after, .form-quiz__block .wpcf7-form .cf7mls_next::after,
.form-quiz__block .wpcf7-form .cf7mls_back::after,
#form-quiz_text-btn::after {
    position: absolute;
    content: url(../img/ico/arrow-black.svg);
    width: 34px;
    height: 15px;
    top: 20px;
    right: 60px;
}

.load-more-btn {
    position: relative;
    margin: 50px auto 0;
    display: block;
    width: fit-content;
    font-weight: 700;
}

.load-more-btn::after {
    position: absolute;
    content: url(../img/more-down.png);
    width: 14px;
    height: 13px;
    top: 2px;
    right: -25px;
}

.form-quiz__block .wpcf7-form .cf7mls_next,
.form-quiz__block .wpcf7-form .cf7mls_back,
#form-quiz_text-btn {
    height: 55px;
    background-color: transparent;
    color: #111116;
    text-align: left;
}

.form-quiz__block .wpcf7-form .cf7mls_next:active {
    padding: 18px 64px;
}

.form-quiz__block .wpcf7-form .cf7mls_next::after {
    right: 80px;
}

.form-quiz__block .wpcf7-form .cf7mls_back {
    width: fit-content;
    padding: 18px 64px 18px 75px;
}
.cf7mls-btns .cf7mls_next.action-button, .cf7mls-btns .cf7mls_back.action-button {
    margin:0 !important;
    padding: 18px 64px 18px 75px !important;
}

.form-quiz__block .wpcf7-form .cf7mls_back::after {
    top: 17px;
    right: 0;
    transform: rotate(180deg);
    left: 20px;
}

.form-quiz__block form.cf7mls input.wpcf7-form-control.wpcf7-submit {
    border: 2px solid #111116;
    border-radius: 0;
    padding: 18px 40px;
    margin: 0;
    cursor: pointer;
}

.left-block-quiz__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 120px;
}

.left-block-quiz__item {
    width: 580px;
    max-width: 100%;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
}

.form-quiz__title {
    font-size: 32px;
    font-weight: 700;
    margin: 30px 0 10px;
}

.form-quiz__text {
    font-size: 16px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.custom-file-upload {
    margin-top: 15px;
    background-color: #fff;
    color: #8798AD;
    padding: 20px;
    border: 1px solid #E5E7EE;
    text-align: center;
    cursor: pointer;
}

#upload-link {
    text-decoration: underline;
    color: #0080FF;
}
  
.file-label {
    font-size: 16px;
}
  
.form-quiz-file {
    display: none;
}

.wpcf7 form .wpcf7-response-output {
    bottom: -10px;
}

.form-quiz__send-block {
    position: relative;
    max-width: 50%;
    padding-right: 30px;
}
.message-sent {
    position: relative;
    background-repeat: no-repeat;
    background-position: bottom right;
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 110%;
    max-width: 100%;
    height: 100%;
    background-color: #fff;
}

.message-sent__block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.message-sent__block::after {
    position: absolute;
    content: url('../img/Animation-svg.svg');
    bottom: 40px;
    right: 150px;
    width: 290px;
    height: 290px;
}


.form-quiz__block #form-quiz_text-btn {
    display: block;
    padding: 14px 70px 14px 28px;
    margin-bottom: 50px;
    cursor: pointer;
}

.form-quiz__block #form-quiz_text-btn::after {
    top: 17px;
    right: 22px;
}

.contacts-form-img {
    position: relative;
    width: 332px;
    height: 270px;
    margin-left: auto;
}

.contacts-form-img img {
    position: absolute;
    top: -20px;
}

/* cases */
.cases-in-services .similar-posts .splide__pagination {
    display: block !important;
}

.cases-in-services .similar-posts__thumbnail {
    height: 400px;
    overflow: hidden;
}

.cases-in-services .similar-posts__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.cases-in-services .similar-posts__item {
    padding: 0 20px;
    height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* .cases__num-block.cases-block__list .cases__num-item{
    text-align: center;
} */

.cases__num-block.cases-block__list .cases__num-num {
    font-size: 28px;
}

.not-found {
    padding: 100px 0 150px;
}

/* similar-posts */

.similar-posts {
    margin: 100px 0;
}
.similar-posts__title-block {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.similar-posts h3, .cases-single .similar-posts h3{
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
}

.cases-block__compani-case {
    margin: 20px 0;
}

.cases-in-services .similar-posts > h3 {
    margin: 30px 0;
    height: 80px;
}

.similar-posts__link-all {
    position: relative;
    font-weight: 700;
    margin: 5px 0 0 40px;
}

.similar-posts__link-all::after {
    position: absolute;
    content: url(../img/ico/arrow-black.svg);
    width: 34px;
    height: 15px;
    top: 2px;
    right: -60px;
}

.similar-posts__item {
    margin: 0;
}

.similar-posts__post-link:not(.similar-posts__post-link) {
    margin-top: 50px;
}

.cases-block__compani-text, .cases-block__compani-name {
    font-family: "HelveticaNeue", sans-serif, arial;
}

.splide__item-text {
    padding: 0 20px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: auto;
    height: 500px;
}

.cases-block__compani-name {
    margin-top: 50px;
    text-transform: uppercase;
}

/* slider */

.similar-posts .splide__track, .services .splide__track, .working .splide__track {
    padding-bottom: 100px;
}

.similar-posts .splide__arrow--next, .similar-posts .splide__arrow--prev,
.services .splide__arrow--next, .services .splide__arrow--prev,
.working .splide__arrow--next, .working .splide__arrow--prev {
    top: auto;
    transform: none;
    bottom: 5px;
}

.similar-posts .splide__pagination, .services .splide__pagination, .working .splide__pagination {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.similar-posts .splide__arrow, .services .splide__arrow, .working .splide__arrow {
    background: transparent;
    opacity: 1;
}

.similar-posts  .splide__arrow:hover, .services .splide__arrow:hover, .working .splide__arrow:hover {
    opacity: 0.7;
}

.similar-posts  .splide__arrow svg, .services .splide__arrow svg, .working .splide__arrow svg {
    display: none;
}

.similar-posts .splide__arrow--next::after, .similar-posts .splide__arrow--prev::after,
.services .splide__arrow--next::after, .services .splide__arrow--prev::after,
.working .splide__arrow--next::after, .working .splide__arrow--prev::after {
    position: absolute;
    content: '';
    background-image: url(../img/ico/arrow-slider.png);
    background-repeat: no-repeat;
    background-size: 30px;
    width: 42px;
    height: 21px;
    background-position: top right;
    top: 5px;
}

.similar-posts .splide__arrow--prev::after, .services .splide__arrow--prev::after, .working .splide__arrow--prev::after {
    transform: rotate(180deg);
    top: 0;
}

.similar-posts .splide__pagination__page.is-active, 
.services .splide__pagination__page.is-active, 
.working .splide__pagination__page.is-active {
    background: #333;
    transform: none;
}

.similar-posts .splide__pagination__page,
.services .splide__pagination__page,
.working .splide__pagination__page {
    width: 10px;
    height: 10px;
    opacity: 1;
}

/* single case*/

#breadcrumbs {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.cases-header, .cases-header a, .cases-header .breadcrumb #breadcrumbs {
    color: #fff;
}

.cases-header .breadcrumb #breadcrumbs > span {
  color: #e1e0e0;
}

.cases-header{
  position: relative;
}

.cases-header::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,22,.3), rgba(17,17,22,.3));
  pointer-events: none;
  z-index: 0;
}
.cases-header > *{
  position: relative;
  z-index: 1;
}

#breadcrumbs img {
    width: 8px;
    height: 12px;
}

#breadcrumbs:not(.cases-header #breadcrumbs) img {
    filter: invert(1);
}

.cases-header__wrapper {
    height: 80vh;
    display: flex;
    justify-content: space-between;
    margin: 0 42px 0 8px;
}
.cases-header .entry-title {
    font-size: 24px;
    line-height: 28px;
    width: 50%;
    margin-top: 18vh;
}
.cases-header .entry-title > p {
    font-size: 62px;
    line-height: 75px;
    margin-top: 40px;
}
.cases-header .entry-title .entry-title-heading {
    font-size: 62px;
    line-height: 75px;
}

.cases-header .entry-title .entry-subtitle {
    margin-top: 40px;
}

.cases-header__wrapper .header-circle {
    position: relative;
    top: 0;
    left: 0;
}

.customer-descrip {
    background-color: #111116;
    padding: 100px 0;
    color: #fff;
}

.customer-descrip__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.customer-descrip__item {
    width: 23%;
    text-align: center;
}

.customer-descrip-china .customer-descrip__item {
  width: 31%;
}
.customer-descrip__item:first-child {
  min-width: fit-content;
}

.customer-descrip__title {
    font-size: 52px;
    line-height: 78px;
    font-weight: 700;
}

.customer-descrip__text {
    margin-top: 30px;
    font-size: 24px;
    line-height: 27px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

/* work-descrip__wrapper */

.work-descrip__wrapper {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
}

.stages-work-lisoform .work-descrip__wrapper {
    padding: 100px 0 30px;
}

.work-descrip__wrapper.work-descrip__wrapper1-lisoform {
    padding: 0 0 50px;
}
.work-descrip__wrapper.work-descrip__wrapper2-lisoform {
    padding: 0;
}

.work-descrip__wrapper > h3, .dynamics__wrapper-lisoform h3 {
    font-size: 42px;
    line-height: 72px;
}

.dynamics__wrapper-lisoform h3 {
    padding: 100px 0 30px;
}

.work-descrip__wrapper p {
    margin: 30px 0 50px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.img__wrapper {
    overflow: hidden;
    box-shadow: 0px 8px 16px 0px rgba(37, 71, 126, 0.25);
    border-radius: 20px;
}

.work-descrip__wrapper .img__wrapper{
    width: 885px;
    height: 460px;
    margin: 100px auto;
}

.img__wrapper.response-img__wrapper {
    height: auto;
}

.img__wrapper  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 0 0;
}

/* tasks-project */

.tasks-project {
    padding: 100px 0;
    background-color: rgba(229, 232, 244, 0.5);
}

.tasks-project__wrapper {
    display: flex;
    justify-content: space-between;
}

.tasks-project__list-block {
    width: 50%;
    margin-left: auto;
}

.tasks-project__img {
    position: relative;
    width: 580px;
}

.tasks-project__img::after {
    position: absolute;
    content: url('../img/Animation-svg.svg');
    width: 295px;
    height: 295px;
    right: 0;
    top: 0;
    z-index: 1;
}

.tasks-project__img img {
    position: relative;
    z-index: 2;
}

.cases-page__title {
    min-width: fit-content;
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
}

.tasks-project__item {
    padding-top: 30px;
    font-size: 32px;
    font-family: "HelveticaNeue", sans-serif, arial;
    line-height: 42px;
}

.tasks-project__num {
    font-weight: 300;
}

.tasks-project__name {
    font-weight: 700;
    padding-top: 10px;
    max-width: 700px;
}

/* stages-work */

.stages-work {
    padding: 100px 0;
}

.stages-work__list:not(.stages-work__list-lisoform) {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    gap: 30px;
    list-style: none;
    margin: 43px 0 0;
    padding: 0;
    counter-reset: my-counter;
}

.stages-work__list:not(.stages-work__list-lisoform) .stages-picture {
    grid-column: span 1;
    grid-row: span 2; 
}

.stages-work__list:not(.stages-work__list-lisoform) li:nth-child(2),
.stages-work__list:not(.stages-work__list-lisoform) li:nth-child(3) {
    grid-column: span 1;
}

.stages-work__list:not(.stages-work__list-lisoform) li:nth-child(4),
.stages-work__list:not(.stages-work__list-lisoform) li:nth-child(5) {
    grid-column: span 1;
}

.stages-work__list-lisoform {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin: 50px 0 0;
    padding: 0;
    counter-reset: my-counter;
}

.stages-work__list > li {
    position: relative;
    max-width: 580px;
    padding: 74px 20px 40px;
    background-color: #F8F9FB;
    counter-increment: my-counter;
}

.stages-work__list > li::before {
    content: counter(my-counter, decimal-leading-zero);
    position: absolute;
    top: 30px;
    right: 20px;
    font-size: 28px;
    font-weight: 500;
    color: #ACB0C2;
}

.stages-work__num {
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
}

.stages-work__name {
    font-size: 32px;
    line-height: 52px;
    font-weight: 700;
}

.stages-work__descrip > p {
    margin: 30px 0;
}

.stages-work__descrip > ul, .dynamics ul, .description-services__item ul  {
    list-style-type: disc;
    margin: 30px 0 0 20px;
}

.stages-work__descrip > ul li:not(:last-child), .description-services__item > ul li {
    margin-bottom: 20px;
}

.stages-work__list .stages-picture, .smart-world.stages-work__list > li:nth-child(3) {
    background-image: url('../img/http-text-img.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 400px;
}

/* tools-cases */

.tools-cases {
    padding: 100px 0;
    background-color: #111116;
    color: #fff;
}

.tools-cases__title {
    margin-bottom: 30px;
    text-align: center;
}

.tools-cases__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.tools-cases__item {
    width: 24%;
}

.tools-cases__text {
    max-width: 300px;
    margin: 0 auto;
}

/* results-cases */

.results-cases {
    padding: 100px 0 0;
}

.results-cases__title {
    max-width: 800px;
}

.results-cases__syngle-text {
    margin-top: 30px;
}

.results-cases__list {
    padding: 50px 0 0;
}

.results-cases__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 50px 0;
    border-bottom: 2px solid #D0D4E2;
}

.results-cases__item:last-child {
    border: none;
    padding-bottom: 0;
}

.results-cases__item ol {
    list-style-type: auto;
}

.results-cases__item ol li:not(:last-child) {
    padding-bottom: 10px;
}

.results-cases__left {
    position: relative;
    width: 580px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 74px 30px 50px;
    background-color: #111116;
    color: #fff;
    margin-bottom: 50px;
}

.results-cases__num {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 28px;
    line-height: 33px;
    font-weight: 500;
    color: #ACB0C2;
}

.results-cases__text, .results-cases__befor, .results-cases__after {
    font-size: 28px;
    line-height: 33px;
    font-weight: 500;
}

.results-cases__text, .results-cases__title {
  margin-bottom: 20px;
}

.results-cases__befor {
    padding-bottom: 20px;
}

.results-cases__percent {
    font-size: 52px;
    line-height: 63px;
    font-weight: 700;
    padding-bottom: 8px;
}

.results-cases__text-percent {
    font-size: 18px;
    line-height: 24px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.results-cases__indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-cases__circle {
    width: 275px;
    min-width: 275px;
    height: 275px;
    border-radius: 50%;
    background-color: #FC0000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left-none {
    width: 580px;
    height: 660px;
}

.results-cases__right {
    width: calc(100% - 660px);
    background-color: #F8F9FB;
}

.results-cases__right .img__wrapper {
    max-height: 570px;
    width: fit-content;
}

.results-cases__title, .results-cases__title-right {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
}

.results-cases__title-right {
    margin-bottom: 30px;
}

.results-cases__results_text {
    margin: 75px 0 0;
    font-size: 18px;
    line-height: 20px;
    font-family: "HelveticaNeue", sans-serif, arial;
    font-weight: 400;
}

.results-cases__syngle .results-cases__results_text {
    margin: 40px 0 10px;
}

/* next */

.next {
    padding: 100px 0;
    background-color: #111116;
    color: #fff;
    text-align: center;
}

.next.next-cases__syngle {
  margin-top: 50px;
}

.next__text {
    max-width: 67%;
    padding: 40px 0 100px;
    font-size: 24px;
    line-height: 33px;
    font-family: "HelveticaNeue", sans-serif, arial;
    font-weight: 700;
    margin: 0 auto;
}

.next .discuss-form__img {
    max-width: 275px;
    margin: 0 auto;
}

/* case-team */

.case-team {
    padding: 100px 0;
    border-bottom: 2px solid #D0D4E2;
}

.case-team-lisoform {
    border-top: 2px solid #D0D4E2;
}

.case-team__container {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.case-team__list {
    width: 75%;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.case-team .case-team__item, .case-team__single .case-team__item  {
    width: auto;
}

.case-team__list .case-team__item:not(.splide__slide) .case-team__img {
    width: 430px;
    height: 430px;
}

.case-team__img {
    overflow: hidden;
    height: 430px;
}

.case-team__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.case-team__name {
    font-size: 42px;
    line-height: 63px;
    font-weight: 700;
    padding: 50px 0 10px;
}

.case-team__job {
    font-size: 20px;
    line-height: 30px;
    font-family: "HelveticaNeue", sans-serif, arial;
    font-weight: 700;
}

/* regions */

.regions {
    padding: 100px 0;
}

.regions__text {
    margin: 30px 0 50px;
    font-size: 28px;
}

.regions .description-services__item {
    height: 480px;
    position: relative;
    padding: 74px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.regions .image-container {
    position: absolute;
    bottom: -5px;
    right: 24px;
}

.image-container img {
    width: 185px;
}

.description-services__item:hover .image-container img {
    filter: brightness(0) invert(1);
}

.description-services__item:hover .regions__link {
    filter: brightness(0) invert(1);
}

.single-services .number__group {
    padding: 100px 0;
}

.work-stages__region .description-services__block-title {
    font-size: 36px;
}

.tariff-column__title span {
    margin-top: 20px;
    display: block;
}
.description-services__list {
    display: flex;
    column-gap: 30px;
    max-width: 100%;
    padding: 0 0 50px 0;
    overflow: hidden;
    overflow-x: scroll;
    margin: 100px 0 0;
    counter-reset: my-counter;
}
.description-services__item::before {
    content: counter(my-counter, decimal-leading-zero);
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 28px;
    font-weight: 500;
    color: #ACB0C2;
}
.description-services__item {
    position: relative;
    min-width: 480px;
    width: 480px;
    height: auto;
    display: inline-block;
    vertical-align: top;
    padding: 74px 30px 80px;
    background-color: rgba(238, 241, 244, 0.4);
    counter-increment: my-counter;
    transition: all 0.4s;
}
.description-services__item:hover {
    background-color: #FC0000;
    color: #fff;
}
.description-services__item:hover::before, .description-services__item:hover .description-services__block-title a {
    color: #fff;
}
.entry-content__single {
    padding: 50px 0;
}
.oferta__wrapper, .oferta__wrapper iframe {
    max-width: 100%;
}

/* comparison */

.comparison {
    background-color: rgba(229, 232, 244, 0.5);
    padding: 100px 0;
}

.comparison-table {
    padding: 0 150px;
    margin: 0 auto;
}

.tariff-title-min .comparison-table {
    padding: 0;
}

.comparison-columns__list {
    display: flex;
    justify-content: space-between;
    padding-top: 120px;
}

.comparison-columns__zero {
    width: 32%;
}

.comparison-column__title {
    width: 32%;
    padding: 20px 0;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
}
.tariff-services-seo .comparison-column__title {
    font-size: 32px;
}

.comparison-text {
    padding: 40px 0;
    font-size: 20px;
    font-family: "HelveticaNeue", sans-serif, arial;
}

.line-description__list, .line-description__list2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    border-top: 2px solid #B4B8C8;
    padding: 20px 0;
    font-size: 24px;
    font-weight: 700;
}

.line-description__list :first-child, .line-description__list2 > div:first-child {
    width: 30%;
}
.line-description__list :not(:first-child), .line-description__list2 :not(:first-child) {
    width: 32%;
    text-align: center;
}

.line-description__list:last-child {
    border-bottom: 2px solid #B4B8C8;
}
.line-description__list2:last-child {
    border-bottom: 2px solid #B4B8C8;
}

.description-addition {
    padding: 20px 0;
    font-size: 42px;
    font-weight: 700;
}

.services-kp__tariffs.services-tariffs-mibile {
    display: none;
    border: none;
}
.tariffs__list li::before {
    position: absolute;
    content: '';
    background-image: url(../img/check-mark.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 16px;
    top: 8px;
    left: -50px;
}
.tariffs__list li.negativ::before {
    width: 19px;
    height: 3px;
    top: 12px;
    left: -50px;
    background-color: #A8ADBE;
    background-image: none;
}

.table {
    width: 100%;
    border-collapse: collapse; 
    margin-bottom: 20px; 
}

.table th {
    background-color: #f2f2f2;
    font-weight: bold; 
    padding: 24px 15px;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
}

.table td {
    padding: 20px 15px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}

.table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.quote-case__block {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
}

.quote-case__block {
    padding: 50px 0 0;
}

.mark-wrapper, .quote-case__wrapper {
  position: relative;
  padding: 50px;
  background-color: #111116;
  color: #fff;
  font-family: "HelveticaNeue", sans-serif, arial;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.mark-wrapper::before, .quote-case__wrapper::before {
  position: absolute;
  content: '';
  background-image: url(../img/quotes-img.png);
  background-repeat: no-repeat;
  width: 85px;
  height: 85px;
  top: -60px;
  left: 50px;
  z-index: 2;
}

.quote-text {
    font-size: 42px;
    line-height: 62px;
}

.quote-text2 {
    font-size: 32px;
    line-height: 42px;
}

.quote-name {
    margin-top: 20px;
    text-align: right;
}

.aligncenter,
.entry-content--wrapper.entry-content-blog img.aligncenter{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/* клікабельні картинки- Оверлей на весь екран */
img.zoom-img {
  cursor: zoom-in;
}
#popup-image-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.88);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

#popup-image-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  animation: fadeInPopup .15s ease-out;
}

@keyframes fadeInPopup {
  from {
    opacity: 0;
    transform: scale(.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-image-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;       
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-image-overlay__close::before,
.popup-image-overlay__close::after {
  content: "";
  position: absolute;
  width: 26px;         
  height: 2.4px;       
  background-color: rgba(255,255,255,.9);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .18s ease, background-color .18s ease;
}

.popup-image-overlay__close::before {
  transform: rotate(45deg);
}

.popup-image-overlay__close::after {
  transform: rotate(-45deg);
}

.popup-image-overlay__close:hover::before,
.popup-image-overlay__close:hover::after {
  background-color: rgba(255,255,255,1);
}

.popup-image-overlay__close {
  touch-action: manipulation;
}

@media (max-width: 600px) {
  .popup-image-overlay__close {
    width: 56px;
    height: 56px;
    top: 12px;
    right: 12px;
  }
  .popup-image-overlay__close::before,
  .popup-image-overlay__close::after {
    width: 32px;
    height: 3px;
  }
}

.popup-image-overlay__close:hover::before,
.popup-image-overlay__close:hover::after {
  transform: scale(1.15) rotate(45deg);
}
.popup-image-overlay__close:hover::after {
  transform: scale(1.15) rotate(-45deg);
}



body.zoom-open {
  overflow: hidden;
}

.wp-caption{
  max-width: 100%;
}