@charset "UTF-8";

.news-card__tag{
    cursor: pointer;
}
.news-card__tag.active{
    text-decoration: underline;
}
.grecaptcha-badge{
    display: none;
}

.case-card__info-subtitle-white{
    color: #fff;
}

.case-card__info-subtitle-black{
    color: var(--c-second);
}
.s-article a[href] {
    color: var(--c-darkmain);
}
@media (hover: hover) {
    .header-l div.header__logo:hover {
        opacity: inherit;
    }
}

.s-hero__bot {
    overflow: hidden;
}

.s-hero__marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.s-hero__track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    will-change: transform;
    --marquee-duration: 30s;
    -webkit-animation: hero-marquee var(--marquee-duration, 30s) linear infinite;
    animation: hero-marquee var(--marquee-duration, 30s) linear infinite;
}

.s-hero__logo-list {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.s-hero__logo-item { flex: 0 0 auto; }
.s-hero__logo-img  {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
}

@-webkit-keyframes hero-marquee {
    from { -webkit-transform: translateX(0); transform: translateX(0); }
    to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes hero-marquee {
    from { -webkit-transform: translateX(0); transform: translateX(0); }
    to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

.s-hero__marquee:hover .s-hero__track {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .s-hero__track {
        -webkit-animation: none !important;
        animation: none !important;
    }
}

@media (max-width: 1200px) {
    .s-hero__track { --marquee-duration: 24s; }
}

/* планшеты/малые ноуты */
@media (max-width: 992px) {
    .s-hero__track { --marquee-duration: 20s; }
}

/* стандартные мобильные */
@media (max-width: 768px) {
    .s-hero__track { --marquee-duration: 16s; }
}

/* компактные мобильные */
@media (max-width: 480px) {
    .s-hero__track { --marquee-duration: 13s; }
}

/* совсем маленькие экраны */
@media (max-width: 360px) {
    .s-hero__track { --marquee-duration: 11s; }
}

/* на тач-устройствах можно ускорить ещё чуть-чуть */
@media (hover: none) and (pointer: coarse) {
    .s-hero__track { --marquee-duration: 12s; }
}

@media (max-width: 480px) {
    .s-hero__logo-img { height: 40px; }
}
@media (max-width: 360px) {
    .s-hero__logo-img { height: 36px; }
}

/* Блок 404 — изолированные стили под ваш UI */
.page-404 {
    padding: clamp(32px, 4vw, 64px) 0 72px;
    color: #0d1b22;
}
.page-404__wrap {
    max-width: 1120px;
    margin: 0 auto;
}
.page-404__code {
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.03em;
    font-size: clamp(72px, 16vw, 200px);
    background: linear-gradient(135deg, #4cc0e8 0%, #2b95c4 50%, #187aa8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}
.page-404__title {
    font-size: clamp(24px, 3.4vw, 40px);
    margin: 0 0 12px;
    font-weight: 700;
}
.page-404__text {
    margin: 0 0 24px;
    opacity: 0.9;
}
.page-404__search {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 20px 0 28px;
}
.page-404__search input[type="search"] {
    flex: 1 1 auto;
    min-width: 220px;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #dfe5e8;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    outline: none;
}
.page-404__search input[type="search"]:focus {
    border-color: #2b95c4;
    box-shadow: 0 0 0 3px rgba(43,149,196,0.15);
}
.page-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    transition: .2s ease;
    cursor: pointer;
    height: 44px;
}
.btn--primary {
    background: #2b95c4;
    color: #fff;
}
.btn--primary:hover { filter: brightness(0.95); }
.btn--ghost {
    background: transparent;
    color: #2b95c4;
    border-color: #2b95c4;
}
.btn--ghost:hover { background: rgba(43,149,196,0.08); }

.page-404__links {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 10px 20px;
    padding: 0;
    list-style: none;
}
.page-404__links a {
    text-decoration: none;
    border-bottom: 1px dashed rgba(13,27,34,0.25);
    padding-bottom: 2px;
}
.page-404__links a:hover { color: #2b95c4; border-bottom-color: #2b95c4; }

/* Вспомогательное */
.visually-hidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

.conference-popup * {
    padding: 0;
    margin: 0;
    border: 0;
}

.conference-popup *,
.conference-popup *:before,
.conference-popup *:after {
    box-sizing: border-box;
}


.conference-popup button {
    cursor: pointer;
}

.conference-popup button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.conference-popup a,
.conference-popup a:visited {
    text-decoration: none;
}

.conference-popup a:hover {
    text-decoration: none;
}

.conference-popup ul li {
    list-style: none;
}

.conference-popup img {
    vertical-align: top;
}

.conference-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    font-family: ProximaNovaRegular, Arial, sans-serif;
    background: rgba(21, 18, 24, 0.5);
    display: none;
    grid-template-columns: 1fr;
    align-items: center;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 2147483648;
    transition-behavior: allow-discrete;
    opacity: 0;
    transition-duration: 0.5s;
}

.conference-popup.opened {
    display: grid;
    opacity: 1;
}

@starting-style {
    .conference-popup.opened {
        opacity: 0;
    }
}

.conference-popup__body {
    margin: 40px 0;
    width: min(100% - 40px, 800px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "members info" "members buttons" "members bottom";
    border-radius: 17px;
    background: rgb(255, 255, 255);
    overflow: hidden;
    position: relative;
    z-index: 2147483648;
}

.conference-popup__info {
    grid-area: info;
    padding: 40px;
}

.conference-popup__branding {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 100%;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.conference-popup__logo {
    max-width: 58px;
}

.conference-popup__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.conference-popup__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    color: #000;
    max-width: 400px;
    text-transform: uppercase;
}

.conference-popup__title {
    font-size: 48px;
    font-weight: 750;
    line-height: 59px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(113, 61, 158) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.conference-popup__subtitle {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

.conference-popup__subtitle + .conference-popup__subtitle {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}



.conference-popup__theme {
    border-radius: 10px 10px 10px 0px;
    background: rgb(242, 242, 242);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;

    max-width: 100%;
    width: fit-content;
    box-sizing: border-box;
}

.conference-popup__list {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    max-width: 287px;
}

.conference-popup__list li {
    position: relative;
    padding-left: 25px;
}

.conference-popup__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    font-size: 20px;
}

.conference-popup__list li:not(:last-child) {
    margin-bottom: 5px;
}


.conference-popup__members {
    grid-area: members;
    padding: 40px;
    background: linear-gradient(180deg, rgb(39, 22, 56), rgb(18, 17, 19) 100%);
    width: 267px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.conference-popup__member {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14.68px;
    font-weight: 400;
    line-height: 110%;
}

.conference-popup__member:not(:last-child) {
    margin-bottom: 15px;
}

.conference-popup__member img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 50% 100%;
    object-position: 50% 100%;
    background: rgb(239, 239, 239);
}

@media (max-width: 767px) {
    .conference-popup__member img {
        width: 40px;
        height: 40px;
    }
}

.conference-popup__member p {
    font-size: inherit;
    line-height: normal;
    letter-spacing: normal;
}

.conference-popup__bottom {
    grid-area: bottom;
}

.conference-popup__buttons {
    display: flex;
    padding: 27px 40px 30px 40px;
    gap: 14px;
    max-width: 340px;
}

.conference-popup__button {
    padding: 10px 30px;
    border-radius: 50px;
    color: rgb(255, 255, 255)!important;
    text-decoration: none!important;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    background: rgb(113, 61, 158);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 42px;
    white-space: nowrap;
    transition: all 0.3s ease 0s;
}

@media (hover: hover) {
    .conference-popup__button:hover {
        background: rgb(79, 35, 117);
    }
}

.conference-popup__button:nth-child(2) {
    border-color: #000;
    background: #fff;
    color: #000!important;
}

@media (hover: hover) {
    .conference-popup__button:nth-child(2):hover {
        background: rgb(242, 242, 242);
        border-color: rgb(242, 242, 242);
        color: rgb(79, 35, 117);
    }
}

.conference-popup__button:active {
    transform: scale(0.9);
}

.conference-popup__close {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 24px;
    right: 24px;
    background: transparent;
    transition: all 0.3s ease 0s;
}

@media (hover: hover) {
    .conference-popup__close:hover {
        transform: rotate(-90deg);
    }
}

.conference-popup__bg {
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(50%, -50%);
    z-index: -1;
}

.conference-popup__bg svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.conference-popup__cities-wrapper {
    position: relative;
    overflow: hidden;
    height: 40px;
    background: #fff;
    width: 100%;
}

.conference-popup__cities-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.conference-popup__cities-track {
    display: flex;
    gap: 32px;
    will-change: transform;
}

.cities-loop {
    display: flex;
    gap: 32px;
    white-space: nowrap;
}

.cities-loop span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.cities-loop img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}

@keyframes scroll-cities {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .conference-popup__branding {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .conference-popup__text {
        max-width: 75%;
        font-size: 16px;
    }

    .conference-popup__subtitle {
        font-size: 24px;
    }

    .conference-popup__subtitle + .conference-popup__subtitle {
        font-size: 18px;
    }
}

.bounce-animation {
    display: inline-block;
    animation: bounce 6s infinite 2s;
    transform-origin: center bottom;
}

.rotating-animation {
    animation: rotating 150s linear infinite;
    transform-origin: center;
}

.p-case-main .p-case-main__desc img {
    max-width: 720px;
}

@keyframes bounce {

    0%,
    10% {
        transform: translateY(0) scale(1, 1);
    }

    2% {
        transform: translateY(-15px) scale(0.9, 1.1);
    }

    5% {
        transform: translateY(0) scale(1.1, 0.9);
    }

    8% {
        transform: translateY(-4px) scale(0.94, 1.07);
    }

    9% {
        transform: translateY(-2px) scale(0.98, 1.02);
    }
}

@keyframes rotating {
    0% {
        rotate: 0;
        scale: 1;
    }

    50% {
        rotate: 180deg;
        scale: 0.8;
    }

    100% {
        rotate: 360deg;
        scale: 1;
    }
}

@media (max-width: 767px) {
    .mobile-hide {
        display: none;
    }

    .s-trust-r .s-trust-info-marquee {
        margin-bottom: 20px;
    }

    .p-case-main .p-case-main__desc img {
        max-width: 100%;
        height: 100%;
    }

    .conference-popup__body {
        grid-template-areas: "info" "members" "buttons" "bottom";
    }

    .conference-popup__info {
        padding: 30px 24px 0 24px;
    }

    .conference-popup__logo {
        display: none;
    }

    .conference-popup__title {
        font-size: 33px;
    }

    .conference-popup__theme {
        max-width: 100%;
        font-size: 14px;
    }

    .conference-popup__list {
        font-size: 15px;
    }

    .conference-popup__members {
        background: transparent;
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: unset;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 430px;
        margin: 0;
        justify-content: start;
    }

    .conference-popup__members {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
        justify-content: center;  /* центрирует треки грида внутри контейнера */
        width: fit-content;       /* контейнер сужается до контента */
        margin-inline: auto;      /* центрирует контейнер в родителе */
        background: transparent;
        padding: 30px 18px;
    }

    .conference-popup__member {
        display: inline;
        width: 40px;
        height: 40px;
    }

    .conference-popup__member p {
        display: none;
    }

    .conference-popup__member:not(:last-child) {
        margin-bottom: 0;
    }

    .conference-popup__bg {
        top: 15%;
        transform: translate(25%, 0);
        max-width: 220px;
    }
}

@media (max-width: 550px) {
    .conference-popup__subtitle {
        max-width: 217px;
    }

    .conference-popup__members {
        margin-inline: auto;
        padding: 30px 18px;
        justify-content: center;
    }

    .conference-popup__buttons {
        width: 100%;
        flex-direction: column-reverse;
        max-width: 100%;
        align-items: center;
        padding: 0 40px 33px 40px;
    }

    .conference-popup__bg {
        transform: translate(35%, 0);
    }
}

@media (max-width: 390px) {
    .conference-popup__info {
        padding: 30px 20px 0 20px;
    }

    .conference-popup__bg {
        transform: translate(50%, 0);
        max-width: 200px;
    }
}

/* Кнопка на банере */

.s-hero-c {
    padding-top: 135px;
}

.s-hero__img {
    object-position: 50% 100%; /* или: bottom center */
}

.s-hero__img-c {
    height: 100%;
}

.btn-def.up-design {
    margin-top: 60px;
    height: inherit;
    width: inherit;
}

.p-service-main__btn-wrap .btn-def.up-design {
    margin-top: 20px;
}

.btn-def.up-design span {
    margin: 14px 20px;
    font-size: 23px;
    min-width: 220px;
}
 .onecolumn-s-services .s-services__info-item-btn {
            order:1;
        }
        .s-services__info-item-btn-l {
            font-size: 18px;
            font-weight: 600;
        }
        .onecolumn-s-services .svg-icon-link-arrow-right {
            transform: rotate(-90deg);
        }
        .onecolumn-s-services .js--accordion-toggler.active a{
            pointer-events: inherit;
        }
        .onecolumn-s-services .js--accordion-toggler a{
            
            pointer-events: none;
        }
        
        .onecolumn-s-services .js--accordion-toggler.active .svg-icon-link-arrow-right {
            transform: rotate(360deg) !important;
        }

        .onecolumn-s-services .s-services__info-item-flex {
            display: flex;
            align-items: center;
            justify-content: right;
            padding: 25px 20px 10px;
            gap: 20px;
        }

        .onecolumn-s-services .s-services-accordion-item-btn {
            color: #fff !important;
        }

        @media (max-width: 968px) {
            .onecolumn-s-services .s-services__info-item-flex {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
            }

            .onecolumn-s-services .s-services__info-item-flex .s-services__info-item-btn-price, .onecolumn-s-services .s-services__info-item-flex .s-services-accordion-item-btn {
                width: 100%;
            }
        }
@media (max-width: 767px) {

    .s-hero__top {
        margin-bottom: 40px;
    }

    .btn-def.up-design {
        width: 100%;
        margin-top: 40px;
    }

    .btn-def.up-design span {
        margin: 10px 20px;
    }
}