/*==============================================================================
    HERO
==============================================================================*/

.pm-dc-hero{
    position:relative;

    overflow:hidden;

    min-height:900px;

    background:#0A0A0A;
    color:#FAFAFA;
}
/*==============================================================================
    BACKGROUND
==============================================================================*/

.pm-dc-hero__media{
    position:absolute;
    inset:0;

    z-index:0;
}

.pm-dc-hero__poster,
.pm-dc-hero__video{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}
.pm-industries__button--tablet{

    display:none;
}
.pm-dc-hero__overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.69);
}

/*==============================================================================
    CONTAINER
==============================================================================*/

.pm-dc-hero__container{

    position:relative;
    z-index:2;

    width:100%;
    max-width:1800px;
    margin:0 auto;
    padding:0 60px;
    box-sizing:border-box;
    min-height:900px;
}

/*==============================================================================
    CENTER
==============================================================================*/

.pm-dc-hero__center{

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    min-height:900px;

    padding:48px 0;
}

/*==============================================================================
    HERO BOTTOM
==============================================================================*/

.pm-dc-hero__bottom{

    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    gap:120px;

    flex:1;
}

/*==============================================================================
    LEFT
==============================================================================*/

.pm-dc-hero__left{

    display:flex;
    flex-direction:column;

    width:100%;
    max-width:1002px;
}
.pm-dc-hero__title-wrap{

    display:flex;
    flex-direction:column;

    gap:12px;
}
.pm-dc-hero__title{

    margin:0;

    font-family:Gilroy,sans-serif;
    font-size:64px;
    font-weight:600;
    line-height:72px;
    letter-spacing:-0.02em;

    color:#FFFFFF;
}

.pm-dc-hero__title span{

    display:block;
}

.pm-dc-hero__subtitle{

    margin:0;
    
    max-width:650px;

    font-family:Gilroy,sans-serif;
    font-size:20px;
    font-weight:500;
    line-height:32px;

    color:rgba(255,255,255,.88);
}

/*==============================================================================
    ACTIONS
==============================================================================*/

.pm-dc-hero__actions{

    margin-top:40px;
}

.pm-dc-hero__button{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:230px;
    height:56px;

    border-radius:12px;

    background:#5369E0;

    color:#FFFFFF;

    font-family:Gilroy,sans-serif;
    font-size:16px;
    font-weight:600;

    text-decoration:none;

    transition:.25s ease;
}

.pm-dc-hero__button:hover{

    background:#4258D5;
}

/*==============================================================================
    RIGHT
==============================================================================*/

.pm-dc-hero__right{

    width:410px;
    flex-shrink:0;

    display:flex;
    flex-direction:column;

    gap:24px;
}

/*==============================================================================
    NAVIGATION
==============================================================================*/

.pm-dc-hero__nav{

    display:flex;
    justify-content:flex-end;

    gap:12px;
}

.pm-dc-prev,
.pm-dc-next{

    width:40px;
    height:40px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.16);

    cursor:pointer;

    transition:.2s;
}

/*==============================================================================
    CASES
==============================================================================*/

.pm-dc-cases{

    position:relative;

    width:100%;
}

.pm-dc-card{

    display:none;

    text-decoration:none;

    color:inherit;
}

.pm-dc-card.active{

    display:block;

    animation:pmDcFade .35s ease;
}

@keyframes pmDcFade{

    from{

        opacity:0;
        transform:translateY(12px);
    }

    to{

        opacity:1;
        transform:none;
    }
}

/*==============================================================================
    IMAGE
==============================================================================*/

.pm-dc-card__image{

    width:100%;
    height:204px;

    overflow:hidden;

    border-radius:16px;

    background:#1C1C1C;
}

.pm-dc-card__image img{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .4s ease;
}

.pm-dc-card:hover .pm-dc-card__image img{

    transform:scale(1.04);
}

/*==============================================================================
    FOOTER
==============================================================================*/

.pm-dc-card__footer{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-top:18px;
}

.pm-dc-card__city{

    font-family:Gilroy,sans-serif;
    font-size:18px;
    font-weight:600;
    line-height:24px;

    color:#FFFFFF;
}

.pm-dc-card__year{

    font-family:Gilroy,sans-serif;
    font-size:18px;
    font-weight:500;
    line-height:24px;

    color:rgba(255,255,255,.72);
}

/*==============================================================================
    NAV BUTTON ICONS
==============================================================================*/

.pm-dc-prev,
.pm-dc-next{

    position:relative;

    width:40px;
    height:40px;

    border:none;
    border-radius:50%;

    background-color:rgba(255,255,255,.16);

    background-repeat:no-repeat;
    background-position:center;
    background-size:20px 20px;

    cursor:pointer;

    transition:none;
}

.pm-dc-next{

    background-image:url("/local/templates/new-template/img/icons/arrow-right1.svg");
}

.pm-dc-prev{

    background-image:url("/local/templates/new-template/img/icons/arrow-right1.svg");

    transform:rotate(180deg);
}


/* убираем любые изменения при наведении */

.pm-dc-prev:hover,
.pm-dc-next:hover{

    background-color:rgba(255,255,255,.16);

    background-image:url("/local/templates/new-template/img/icons/arrow-right1.svg");
}


/* убираем изменение при клике */

.pm-dc-prev:active,
.pm-dc-next:active{

    transform:none;
}

.pm-dc-prev:active{

    transform:rotate(180deg);
}
/*==============================================================================
    STATES
==============================================================================*/

.pm-dc-prev:hover,
.pm-dc-next:hover{

    background-color: rgba(255,255,255,.24);
}


.pm-dc-prev:focus-visible,
.pm-dc-next:focus-visible,
.pm-dc-hero__button:focus-visible{

    outline:2px solid #FFFFFF;
    outline-offset:2px;
}
/*==============================================================================
    BREADCRUMBS
==============================================================================*/

.pm-dc-hero__breadcrumbs{
    position:relative;
    z-index:20;

    margin-top:84px;
    margin-bottom:350px;
}

.pm-breadcrumbs{
    display:flex;
    align-items:center;
    gap:8px;
}

.pm-breadcrumbs svg{
    flex-shrink:0;
}

.pm-breadcrumbs__link{

    color:rgba(255,255,255,.72);

    font-family:Gilroy,sans-serif;
    font-size:16px;
    font-weight:500;
    line-height:24px;

    text-decoration:none;

    transition:.3s;
}

.pm-breadcrumbs__link:hover{
    color:#FFF;
}

.pm-breadcrumbs__current{

    color:#FFF;

    font-family:Gilroy,sans-serif;
    font-size:16px;
    font-weight:500;
    line-height:24px;
}
/*==============================================================================
    SOLUTIONS
==============================================================================*/

.pm-solutions{

    padding:90px 0;

    background:#0A0A0A;
}

/*==============================================================================
    HEADER
==============================================================================*/

.pm-solutions__header{

    display:flex;
    flex-direction:column;

    gap:16px;

    margin-bottom:72px;
}

.pm-solutions__title{

    margin:0;

    font-family:Gilroy,sans-serif;
    font-size:48px;
    font-weight:600;
    line-height:56px;

    color:#FAFAFA;
}

/*==============================================================================
    GRID
==============================================================================*/

.pm-solutions__grid{

    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:16px;
}

/*==============================================================================
    CARD
==============================================================================*/

.pm-solution-card{

    display:flex;
    flex-direction:column;

    gap:32px;
}

/*==============================================================================
    IMAGE
==============================================================================*/

.pm-solution-card__image{

    position:relative;

    overflow:hidden;

    height:500px;

    border-radius:16px;
}

.pm-solution-card__image img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}

.pm-solution-card__image::after{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 65%,
        rgba(0,0,0,.8) 100%
    );
}

.pm-solution-card__title{

    position:absolute;

    left:24px;
    right:24px;
    bottom:24px;

    z-index:2;

    margin:0;

    font-family:Gilroy,sans-serif;
    font-size:24px;
    font-weight:600;
    line-height:30px;

    color:#FAFAFA;
}

/*==============================================================================
    LIST
==============================================================================*/

.pm-solution-card__list{

    display:flex;
    flex-direction:column;

    gap:16px;
}

/*==============================================================================
    ITEM
==============================================================================*/

.pm-solution-item{

    display:flex;
    align-items:center;

    gap:0;
}

.pm-solution-item__icon{

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    width:36px;
    height:30px;

    border-radius:32px 0 0 32px;

    background:linear-gradient(
        90deg,
        rgba(34,197,94,.5) 0%,
        rgba(34,197,94,0) 100%
    );
}

.pm-solution-item__text{

    flex:1;

    margin-left:12px;

    font-family:Gilroy,sans-serif;
    font-size:18px;
    font-weight:600;
    line-height:22px;

    color:#FAFAFA;
}
.pm-solutions .pm-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    width:fit-content;

    margin:0;
    padding:0;

    justify-content:flex-start;

    align-self:flex-start;
}

.pm-solutions .pm-badge__rectangle{

    width:8px;
    height:8px;

    flex-shrink:0;
}

.pm-solutions .pm-badge-text{

    font-family:Gilroy,sans-serif;
    font-size:18px;
    font-weight:600;
    line-height:22px;

    color:#7086FC;
}
/*==============================================================================
    INDUSTRIES
==============================================================================*/

.pm-industries{

    padding:90px 0;

    background:#0A0A0A;
}

/*==============================================================================
    HEADER
==============================================================================*/

.pm-industries__header{

    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    gap:48px;

    margin-bottom:72px;
}

.pm-industries__content{

    display:flex;
    flex-direction:column;

    flex:1;

    gap:16px;
}

.pm-industries .pm-badge{

    width:fit-content;
}

.pm-industries__title{

    margin:0;

    font-family:Gilroy,sans-serif;
    font-size:48px;
    font-weight:600;
    line-height:56px;

    color:#FAFAFA;
}

.pm-industries__subtitle{

    margin:0;

    font-family:Gilroy,sans-serif;
    font-size:18px;
    font-weight:500;
    line-height:22px;

    color:#A3A3A3;
}

.pm-industries__button{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:187px;
    height:48px;

    flex-shrink:0;

    border-radius:12px;

    background:#5369E0;

    color:#FFFFFF;

    font-family:Gilroy,sans-serif;
    font-size:16px;
    font-weight:600;
    line-height:20px;

    text-decoration:none;

    transition:.25s ease;
}

.pm-industries__button:hover{

    background:#4258D5;
}

/*==============================================================================
    GRID
==============================================================================*/

.pm-industries__grid{

    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:16px;
}

/*==============================================================================
    CARD
==============================================================================*/

.pm-industry-card{

    position:relative;

    height:284px;

    overflow:hidden;

    border-radius:16px;
}

.pm-industry-card img{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;
}

.pm-industry-card__overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 65%,
        rgba(0,0,0,.8) 100%
    );
}

.pm-industry-card__title{

    position:absolute;

    left:24px;
    right:24px;
    bottom:24px;

    margin:0;

    z-index:2;

    font-family:Gilroy,sans-serif;
    font-size:24px;
    font-weight:600;
    line-height:30px;

    color:#FAFAFA;
}
.pm-industries__button--tablet{
    display:none;
}
.pm-dc-projects{
    padding:90px 0;
    background:#0A0A0A;
}

.pm-dc-projects__header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:48px;
    margin-bottom:72px;
}

.pm-dc-projects__title{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    flex:1;
}

.pm-dc-projects__title .pm-badge{
    width:fit-content;
    margin:0;
    align-self:flex-start;
}
.pm-dc-projects__heading{
    margin:0;

    font-family:Gilroy,sans-serif;
    font-size:48px;
    font-weight:600;
    line-height:56px;
    color:#FAFAFA;
}

.pm-dc-projects__actions{
    display:flex;
    align-items:center;
    gap:24px;
}

.pm-dc-projects__nav{
    display:flex;
    gap:8px;
}

.pm-dc-projects__prev,
.pm-dc-projects__next{
    width:40px;
    height:40px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.16);

    background-repeat:no-repeat;
    background-position:center;
    background-size:20px;

    cursor:pointer;
    transition:.25s;
}

.pm-dc-projects__prev{
    background-image:url("/local/templates/new-template/img/icons/arrow-right1.svg");
    transform:rotate(180deg);
}

.pm-dc-projects__next{
    background-image:url("/local/templates/new-template/img/icons/arrow-right1.svg");
}

.pm-dc-projects__prev:hover,
.pm-dc-projects__next:hover{
    background-color:rgba(255,255,255,.24);
}

.pm-dc-projects__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:158px;
    height:48px;

    border-radius:12px;

    background:#5369E0;
    color:#FFF;

    font-family:Gilroy,sans-serif;
    font-size:16px;
    font-weight:600;

    text-decoration:none;

    transition:.25s;
}

.pm-dc-projects__button:hover{
    background:#4258D5;
}

.pm-dc-projects__slider{
    display:flex;
    gap:16px;
    overflow:hidden;
}

.pm-dc-project{
    display:block;
    flex:0 0 calc(50% - 8px);
    max-width:calc(50% - 8px);

    color:inherit;
    text-decoration:none;
}
.pm-dc-project__image{
    position:relative;

    overflow:hidden;

    height:447px;

    border-radius:16px;
}

.pm-dc-project__image img{
    width:100%;
    height:100%;

    display:block;
    object-fit:cover;
    transition:transform .4s ease;
}

.pm-dc-project:hover img{
    transform:scale(1.03);
}

.pm-dc-project__image::after{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,.64) 0%,
        rgba(0,0,0,0) 35%
    );
}

.pm-dc-project__city{
    position:absolute;

    top:24px;
    left:24px;

    display:flex;
    align-items:center;
    gap:12px;

    z-index:2;

    font-family:Gilroy,sans-serif;
    font-size:24px;
    font-weight:600;
    line-height:30px;
    color:#FFF;
}

.pm-dc-project__city span{
    width:8px;
    height:8px;

    border-radius:2px;

    background:#FFF;
}

.pm-dc-project__power{
    position:absolute;

    left:24px;
    bottom:24px;

    display:flex;
    gap:4px;

    z-index:2;
}

.pm-dc-project__label{
    display:flex;
    align-items:center;

    height:54px;
    padding:0 16px;

    background:#FFF;

    border-radius:16px 4px 4px 16px;

    font-family:Gilroy,sans-serif;
    font-size:14px;
    font-weight:600;
    line-height:18px;
    color:#A3A3A3;
}

.pm-dc-project__value{
    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:12px 16px;

    min-width:132px;

    background:#FFF;

    border-radius:4px 16px 16px 4px;
}

.pm-dc-project__value span{
    margin-bottom:4px;

    font-family:Gilroy,sans-serif;
    font-size:16px;
    font-weight:600;
    line-height:20px;
    color:#000;
}

.pm-dc-project__scale{
    display:flex;
    gap:2px;
}

.pm-dc-project__scale i{
    display:block;

    width:24px;
    height:3px;

    border-radius:24px;

    background:rgba(0,0,0,.16);
}

.pm-dc-project__scale i.active{
    background:#5369E0;
}
/*==============================================================================
    DC STAGES DESKTOP
==============================================================================*/

.pm-dc-stages{

    background:#0A0A0A;

    padding:90px 0;

}


.pm-dc-stages__wrapper{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:40px;

}


/* LEFT */

.pm-dc-stages__left{

    width:55%;

    position:sticky;

    top:120px;

    height:max-content;

}


.pm-dc-stages__label{

    display:flex;

    align-items:center;

    gap:8px;

    margin-bottom:16px;

    color:#FAFAFA;

    font-size:18px;

    line-height:22px;

    font-weight:600;

}


.pm-dc-stages__label-dot{

    width:8px;

    height:8px;

    background:#5369E0;

}


.pm-dc-stages__title{

    max-width:760px;

    margin:0;

    color:#FAFAFA;

    font-size:48px;

    line-height:56px;

    font-weight:600;

}


.pm-dc-stages__cta{

    display:flex;

    align-items:center;

    gap:16px;

    margin-top:48px;

}


.pm-dc-stages__btn{

    height:48px;

    padding:0 20px;

    border:none;

    border-radius:12px;

    background:#5369E0;

    color:#fff;

    font-size:18px;

    line-height:22px;

    font-weight:600;

    cursor:pointer;

}


.pm-dc-stages__term{

    display:flex;

    flex-direction:column;

    gap:4px;

}


.pm-dc-stages__term-label{

    color:rgba(255,255,255,.48);

    font-size:16px;

    line-height:20px;

}


.pm-dc-stages__term-value{

    color:#FAFAFA;

    font-size:18px;

    line-height:22px;

    font-weight:600;

}


/* RIGHT */

.pm-dc-stages__right{

    width:50%;

    display:flex;

    flex-direction:column;

    gap:4px;

}


/* CARD */

.pm-dc-stages__step{

    background:#171717;

    border-radius:16px;

    padding:24px 20px;

    min-height:190px;

}


/* HEADER */

.pm-dc-stages__step-header{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:24px;

}


.pm-dc-stages__step-num{

    display:flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.16);

    color:#FAFAFA;

    font-size:18px;

    line-height:22px;

}


/* ICON */

.pm-dc-stages__step-icon{

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    gap:2px;

    height:32px;

}


.pm-dc-stages__step-icon i{

    display:block;

    width:20px;

    height:5px;

    border-radius:4px;

    background:rgba(255,255,255,.24);

}


.pm-dc-stages__step-icon i.active{

    background:#5369E0;

}


/* TEXT */

.pm-dc-stages__step-title{

    margin:0 0 8px;

    color:#FAFAFA;

    font-size:24px;

    line-height:30px;

    font-weight:600;

}


.pm-dc-stages__step-text{

    margin:0;

    color:rgba(255,255,255,.48);

    font-size:16px;

    line-height:20px;

    font-weight:500;

}


/* TAGS */

.pm-dc-stages__step-tags{

    display:flex;

    gap:8px;

    margin-top:20px;

}


.pm-dc-stages__step-tag{

    display:inline-flex;

    align-items:center;

    height:24px;

    padding:0 8px;

    border-radius:6px;

    background:#5369E0;

    color:#fff;

    font-size:14px;

    line-height:18px;

    font-weight:600;

}


/* mobile кнопка пока скрыта */

.pm-dc-stages__cta.mobile{

    display:none;

}
.pm-dc-stages__tag-desktop{
    display:none;
}

.pm-dc-stages__tag-mobile{
    display:inline-flex;
}
/*============================================================================== 
    GLOBAL TAGS
==============================================================================*/

.pm-badge,
.pm-gas-stages__label,
.pm-dc-stages__label,
.pm-section-label{

    display:flex;
    align-items:center;
    gap:8px;

}

.pm-badge-text,
.pm-gas-stages__label,
.pm-dc-stages__label,
.pm-section-label
{

    font-family:Gilroy, sans-serif !important;
    font-size:18px !important;
    line-height:22px !important;
    font-weight:600 !important;

    color:#FFFFFF !important;

}


.pm-badge__rectangle,
.pm-gas-stages__label-dot,
.pm-dc-stages__label-dot{

    width:8px;
    height:8px;

    background:#5369E0;

    flex:none;

}
/*==============================================================================
    BENEFITS DESKTOP
==============================================================================*/

.pm-dc-benefits{

    padding:120px 0;

    background:#171717;

}


.pm-dc-benefits__wrapper{

    display:flex;
    flex-direction:column;

}


.pm-dc-benefits .pm-badge{

    margin-bottom:16px;

}


/* заголовок */

.pm-dc-benefits .pm-solutions__title{

    margin:0 0 48px;

    max-width:900px;

}



/* основной контент */

.pm-dc-benefits__content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:16px;

    align-items:stretch;

}


/*==============================================================================
    GALLERY
==============================================================================*/


.pm-dc-benefits__gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    grid-template-rows:repeat(2,1fr);

    gap:16px;

    height:100%;

}

.pm-dc-benefits__image{

    overflow:hidden;

    border-radius:16px;

    min-height:0;

}

.pm-dc-benefits__image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}




/*==============================================================================
    LIST
==============================================================================*/


.pm-dc-benefits__list{

    display:flex;

    flex-direction:column;

    gap:8px;

}



.pm-dc-benefits__item{

    min-height:112px;

    padding:24px;

    display:flex;

    align-items:center;

    gap:24px;

    background:#262626;

    border-radius:4px;

}



.pm-dc-benefits__icon{

    width:64px;
    height:64px;

    flex:none;

    border-radius:50%;

    background:#111111;

    display:flex;
    align-items:center;
    justify-content:center;

}
.pm-dc-benefits__icon svg{

    width:32px;
    height:32px;

    display:block;

}

.pm-dc-benefits__text h3{

    margin:0 0 8px;

    font-family:Gilroy,sans-serif;

    font-size:20px;

    line-height:24px;

    font-weight:600;

    color:#FFFFFF;

}

.pm-dc-benefits__text p{

    margin:0;

    font-family:Gilroy,sans-serif;
    font-size:12px;
    line-height:16px;
    font-weight:500;

    color:#A3A3A3;

}
.pm-dc-benefits__wrapper{

    align-items:flex-start;

}
.pm-dc-benefits__icon{
    position:relative;
}


.pm-dc-benefits__icon-extra{

    position:absolute;

    right:-8px;
    bottom:-8px;

    width:32px;
    height:32px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#262626;

    border-radius:50%;

}

.pm-dc-benefits__icon-extra svg{

    width:24px;
    height:24px;

}
.pm-dc-hero__title span{
    display:inline;
}

.pm-dc-hero__title .pm-br-mobile{
    display:none;
}
/*==============================================================================
    ABOUT
==============================================================================*/

.pm-about{

    padding:90px 0 32px;

    background:#0A0A0A;

}


/*==============================================================================*/

.pm-about__wrapper{

    display:flex;
    flex-direction:column;

}


/*==============================================================================
    TOP
==============================================================================*/
.pm-about__top{

    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    gap:120px;

    margin-bottom:18px;

}

.pm-about__left{

    width:980px;
    flex-shrink:0;

}

.pm-about__right{

    flex:1;

    display:flex;
    justify-content:flex-end;
    align-items:flex-end;

}

.pm-about__description{

    margin:0;

    max-width:600px;

    font-family:Gilroy,sans-serif;
    font-size:18px;
    line-height:22px;
    font-weight:500;

    color:#A3A3A3;

}

.pm-about .pm-badge{

    margin-bottom:16px;

}

.pm-about .pm-solutions__title{

    margin:0;

    max-width:820px;

}


/*==============================================================================
    IMAGE
==============================================================================*/

.pm-about__image{

    width:100vw;

    margin-left:calc(50% - 50vw);

    margin-top:0;
    margin-bottom:0;

    padding:8px 0;

}

.pm-about__image img{

    display:block;

    width:100%;
    height:584px;

    object-fit:cover;

    border-radius:16px;

}

/*==============================================================================
    STATS
==============================================================================*/

.pm-about__stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:8px;

    margin-top:16px;

}


.pm-about__card{

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    min-height:256px;

    padding:20px;

    border-radius:16px;

    background:#171717;

}


.pm-about__card-top{

    display:flex;
    align-items:flex-end;

    gap:8px;

}


.pm-about__number{

    font-family:Gilroy,sans-serif;
    font-size:56px;
    line-height:64px;
    font-weight:600;

    color:#FAFAFA;

}


.pm-about__unit{

    margin-bottom:8px;

    font-family:Gilroy,sans-serif;
    font-size:24px;
    line-height:30px;
    font-weight:600;

    color:#A3A3A3;

} 


.pm-about__caption{

    margin:0;

    font-family:Gilroy,sans-serif;
    font-size:18px;
    line-height:22px;
    font-weight:500;

    color:#A3A3A3;

}
.pm-about__top{
    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:flex-end !important;
}

.pm-about__left{
    width:50% !important;
}

.pm-about__right{
    width:50% !important;
    display:flex !important;
    justify-content:flex-end !important;
}
.pm-logo-video{

    height:100vh;
    background:#0A0A0A;
    overflow:hidden;

}

.pm-logo-video__wrapper{

    position:sticky;
    top:0;

    width:100%;
    height:100vh;

    overflow:hidden;

}

.pm-logo-video__video{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.pm-logo-video__zoom{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

}

.pm-logo-video__mask{

    width:100%;
    height:100%;
    display:block;

}


/* По умолчанию показываем desktop */

.pm-logo-video__logo{
    display:none;
}

.pm-logo-video__logo--desktop{
    display:block;
}


/* Laptop */
html {
    overflow: visible !important;
}
    .pm-dc-stages .pm-badge{

        margin-bottom:16px;

    }

@media (max-width:1439px){

    .pm-logo-video__logo{
        display:none;
    }

    .pm-logo-video__logo--laptop{
        display:block;
    }

}


/* Tablet */

@media (max-width:1023px){

    .pm-logo-video__logo{
        display:none;
    }

    .pm-logo-video__logo--tablet{
        display:block;
    }

}


/* Mobile */

@media (max-width:767px){

    .pm-logo-video__logo{
        display:none;
    }

    .pm-logo-video__logo--mobile{
        display:block;
    }

}
@media (max-width:1599px){

    .pm-dc-hero__breadcrumbs{
        margin-bottom:350px;
    }

}

@media (max-width:991px){

    .pm-dc-hero__breadcrumbs{
        margin-bottom:350px;
    }

}

@media (max-width:700px){

    .pm-dc-hero__breadcrumbs{
        margin-bottom:350px;
    }

    .pm-breadcrumbs{
        display:flex;
        align-items:center;
        flex-wrap:nowrap;
        overflow:hidden;
    }

    .pm-breadcrumbs svg{
        flex-shrink:0;
    }

    .pm-breadcrumbs__link{
        flex-shrink:0;
        white-space:nowrap;
    }

    .pm-breadcrumbs__current{

        min-width:0;

        overflow:hidden;
        white-space:nowrap;
        text-overflow:ellipsis;

        font-size:14px;
        line-height:20px;
    }

    .pm-breadcrumbs__link{
        font-size:14px;
        line-height:20px;
    }

}

@media (max-width:1300px){

    .pm-dc-hero{
        min-height:700px;
    }

    .pm-dc-hero__container{
        max-width:1160px;
        min-height:700px;
        padding:0;
    }
    .pm-dc-hero__center{
        min-height:700px;
    }

    .pm-dc-hero__breadcrumbs{
        margin-top:48px;
        margin-bottom:190px;
    }

    .pm-dc-hero__bottom{
        gap:48px;
    }

    .pm-dc-hero__left{
        max-width:702px;
    }

    .pm-dc-hero__title{
        font-size:48px;
        line-height:56px;
    }

    .pm-dc-hero__subtitle{
        max-width:702px;
        font-size:20px;
        line-height:24px;
        white-space:normal;
    }

    .pm-dc-hero__title-wrap{
        gap:16px;
    }

    .pm-dc-hero__actions{
        margin-top:48px;
    }

    .pm-dc-hero__button{
        width:230px;
        height:56px;
        font-size:18px;
        line-height:22px;
    }

    .pm-dc-hero__right{
        width:410px;
        gap:18px;
    }

    .pm-dc-card__image{
        height:202px;
    }

    .pm-dc-card__footer{
        margin-top:16px;
    }
/*==============================================================================
    SOLUTIONS 1280
==============================================================================*/

    .pm-solutions{

        padding:60px 0;
    }

    .pm-solutions__header{

        margin-bottom:48px;
    }

    .pm-solutions__badge-text{

        font-size:14px;
        line-height:18px;
    }

    .pm-solutions__title{

        font-size:32px;
        line-height:38px;
    }

    .pm-solutions__grid{

        gap:16px;
    }

    .pm-solution-card{

        gap:32px;
    }

    .pm-solution-card__image{

        height:500px;
    }

    .pm-solution-card__title{

        left:24px;
        right:24px;
        bottom:24px;

        font-size:24px;
        line-height:30px;
    }

    .pm-solution-card__list{

        gap:16px;
    }

    .pm-solution-item__text{

        font-size:18px;
        line-height:22px;
    }
    .pm-industries{

        padding:60px 0;
    }

    .pm-industries__header{

        margin-bottom:48px;
    }

    .pm-industries__content{

        gap:16px;
    }

    .pm-industries .pm-badge-text{

        font-size:14px;
        line-height:18px;
    }

    .pm-industries__title{

        font-size:32px;
        line-height:38px;
    }

    .pm-industries__subtitle{

        font-size:16px;
        line-height:20px;
    }

    .pm-industries__grid{

        gap:16px;
    }

    .pm-industry-card{

        height:284px;
    }

    .pm-industry-card__title{

        left:24px;
        right:24px;
        bottom:24px;

        font-size:24px;
        line-height:30px;
    }
/*==============================================================================
    PROJECTS 1280
==============================================================================*/

     .pm-dc-projects{
        padding:60px 0;
    }


    .pm-dc-projects__header{

        display:flex;
        align-items:flex-start;
        justify-content:space-between;

        gap:32px;
        margin-bottom:48px;

    }


    .pm-dc-projects__title{

        flex:1;
        min-width:0;

    }


    .pm-dc-projects__heading{

        margin:0;

        width:100%;
        max-width:none;

        font-size:32px;
        line-height:38px;

    }


    .pm-dc-projects__actions{

        flex-shrink:0;

        display:flex;
        align-items:center;

        gap:16px;

        padding-top:40px;

    }


    .pm-dc-projects__slider{

        gap:16px;

    }


    .pm-dc-project{

        flex:0 0 calc(50% - 8px);
        max-width:calc(50% - 8px);

    }


    .pm-dc-project__image{

        height:346px;

    }


    .pm-dc-project__city{

        top:8px;
        left:8px;

        padding:16px;

    }


    .pm-dc-project__power{

        left:8px;
        bottom:8px;

    }


    .pm-dc-project__label{

        width:192px;

        height:54px;

        padding:16px;

    }


    .pm-dc-project__value{

        width:132px;
        min-width:132px;

        height:54px;

        padding:12px 16px;

    }
.pm-dc-stages{

    padding:60px 0;

}


.pm-dc-stages__wrapper{

    gap:32px;

}


/* LEFT */

.pm-dc-stages__left{

    width:50%;

}


.pm-dc-stages__title{

    max-width:520px;

    font-size:32px;

    line-height:38px;

}


.pm-dc-stages__label{

    font-size:14px;

    line-height:18px;

}


.pm-dc-stages__cta{

    margin-top:32px;

}


.pm-dc-stages__btn{

    height:48px;

    font-size:16px;

}


/* RIGHT */

.pm-dc-stages__right{

    width:50%;

}


.pm-dc-stages__step{

    padding:20px;

    min-height:160px;

}


.pm-dc-stages__step-header{

    margin-bottom:16px;

}


.pm-dc-stages__step-num{

    width:36px;

    height:36px;

    font-size:16px;

}


.pm-dc-stages__step-title{

    font-size:20px;

    line-height:24px;

}


.pm-dc-stages__step-text{

    font-size:14px;

    line-height:18px;

}


.pm-dc-stages__step-tags{

    margin-top:16px;

}


.pm-dc-stages__step-tag{

    font-size:12px;

}
    .pm-dc-stages__tag-desktop{
        display:inline-flex;
    }

    .pm-dc-stages__tag-mobile{
        display:none;
    }
.pm-dc-benefits{
    padding:80px 0;
    background:#171717;
}

    .pm-dc-benefits__wrapper{

        display:flex;
        flex-direction:column;
        
        gap:0;

        align-items:flex-start;

    }
    .pm-dc-stages .pm-badge{

        margin-bottom:16px;

    }

    /* badge */

    .pm-dc-benefits .pm-badge{

        margin:0 0 16px 0;

    }


    /* title */

    .pm-dc-benefits .pm-solutions__title{

        margin:0 0 48px 0;

        max-width:700px;

    }


    /* content */

    .pm-dc-benefits__content{

        display:grid;

        grid-template-columns:508px 1fr;

        gap:16px;

        align-items:stretch;

    }


    /* gallery */

    .pm-dc-benefits__gallery{

        height:472px;

        grid-template-columns:repeat(3,1fr);

        grid-template-rows:repeat(2,1fr);

        gap:8px;

    }


    .pm-dc-benefits__image{

        border-radius:16px;

    }



    /* right list */

    .pm-dc-benefits__list{

        height:472px;

        gap:8px;

    }


    .pm-dc-benefits__item{

        min-height:112px;

        padding:24px;

    }
.pm-about{
    padding:60px 0 32px;
}

.pm-about__top{

    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:flex-end !important;

    gap:16px;

    margin-bottom:18px;

}

.pm-about__left{

    width:572px !important;
    flex:0 0 572px;

}

.pm-about__right{

    width:572px !important;
    flex:0 0 572px;

    display:flex;
    justify-content:flex-end;
    align-items:flex-end;

}

.pm-about .pm-badge{

    margin-bottom:16px;

}

.pm-about .pm-solutions__title{

    max-width:572px;
    font-size:32px;
    line-height:38px;

}

.pm-about__description{

    max-width:572px;

    font-size:16px;
    line-height:20px;

}
.pm-about__stats{

    gap:8px;

}

.pm-about__card{

    min-height:196px;
    padding:20px;

}

.pm-about__number{

    font-size:40px;
    line-height:48px;

}

.pm-about__unit{

    margin-bottom:6px;

    font-size:18px;
    line-height:22px;

}

.pm-about__caption{

    font-size:14px;
    line-height:18px;

}
}
/*==============================================================================
    TABLET 768
==============================================================================*/

@media (max-width:991px){

    /*==============================================================================
        HERO
    ==============================================================================*/

    .pm-dc-hero{
        min-height:700px;
    }

    .pm-dc-hero__container{

        width:100%;
        max-width:none;

        min-height:700px;

        padding:0 16px;

        box-sizing:border-box;
    }

.pm-dc-hero__center{
    min-height:700px;
    padding:48px 0 24px;
}
    /*==============================================================================
        BREADCRUMBS
    ==============================================================================*/

.pm-dc-hero__breadcrumbs{
    margin-top:48px;
    margin-bottom:90px;
}
    .pm-breadcrumbs__link,
    .pm-breadcrumbs__current{

        font-size:14px;
        line-height:18px;
    }

    /*==============================================================================
        CONTENT
    ==============================================================================*/

    .pm-dc-hero__bottom{

        display:flex;
        flex-direction:column;

        align-items:stretch;

        gap:48px;
    }

    .pm-dc-hero__left{

        width:100%;
        max-width:600px;
    }

    .pm-dc-hero__right{

        width:100%;
        max-width:none;
    }

    /*==============================================================================
        TITLE
    ==============================================================================*/

    .pm-dc-hero__title{

        font-size:32px;
        line-height:38px;
    }

    .pm-dc-hero__title-wrap{

        gap:16px;
    }

.pm-dc-hero__subtitle{
    width:540px;
    max-width:100%;

    font-size:16px;
    font-weight:500;
    line-height:20px;

    white-space:normal;
}
    /*==============================================================================
        BUTTON
    ==============================================================================*/

    .pm-dc-hero__actions{

        margin-top:48px;
    }

    .pm-dc-hero__button{

        display:flex;

        width:100%;
        height:56px;

        font-size:18px;
        line-height:22px;
    }

    /*==============================================================================
        NAVIGATION
    ==============================================================================*/

    .pm-dc-hero__nav{

        display:none;
    }

    /*==============================================================================
        SLIDER
    ==============================================================================*/

    .pm-dc-cases{

        display:flex;

        gap:16px;

        width:calc(100% + 16px);

        overflow-x:auto;
        overflow-y:hidden;

        padding-bottom:8px;

        scroll-snap-type:x mandatory;

        -webkit-overflow-scrolling:touch;

        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .pm-dc-cases::-webkit-scrollbar{

        display:none;
    }

    /*==============================================================================
        CARD
    ==============================================================================*/

    .pm-dc-card{

        display:flex !important;

        flex-direction:column;

        flex:0 0 280px;

        scroll-snap-align:start;

        animation:none;
    }

    .pm-dc-card.active{

        display:flex;
    }

    .pm-dc-card__image{

        width:280px;
        height:150px;
    }

    .pm-dc-card__footer{

        margin-top:8px;

        width:280px;
    }

    .pm-dc-card__city{

        font-size:16px;
        line-height:20px;
    }

    .pm-dc-card__year{

        font-size:16px;
        line-height:20px;
    }
/*==============================================================================
    SOLUTIONS TABLET
==============================================================================*/

    .pm-solutions{

        padding:48px 0;
    }

    .pm-solutions__header{

        gap:8px;
        margin-bottom:32px;
    }

    .pm-solutions__title{

        font-size:24px;
        line-height:30px;
    }

    .pm-solutions__grid{

        grid-template-columns:1fr;
        gap:32px;
    }

    .pm-solution-card{

        gap:24px;
    }

    .pm-solution-card__image{

        height:250px;
    }

    .pm-solution-card__title{

        left:16px;
        right:16px;
        bottom:16px;

        font-size:18px;
        line-height:22px;
    }

    .pm-solution-item__icon{

        width:33px;
        height:25px;
    }

    .pm-solution-item__icon svg{

        width:17px;
        height:11px;
    }

    .pm-solution-item__text{

        margin-left:8px;

        font-size:16px;
        line-height:20px;
    }
    .pm-industries{

        padding:24px 0 48px;
    }

    .pm-industries__header{

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        gap:32px;

        margin-bottom:32px;
    }

    .pm-industries__content{

        width:100%;

        gap:16px;
    }

    .pm-industries__title{

        font-size:24px;
        line-height:30px;
    }

    .pm-industries__subtitle{

        font-size:14px;
        line-height:18px;
    }

    .pm-industries__button{

        width:100%;
        height:56px;

        font-size:18px;
        line-height:22px;
    }

    .pm-industries__grid{

        grid-template-columns:repeat(2,minmax(0,1fr));

        gap:16px;
    }

    .pm-industry-card{

        height:284px;
    }

    .pm-industry-card__title{

        left:16px;
        right:16px;
        bottom:16px;

        font-size:18px;
        line-height:22px;
    }
.pm-industries__button--desktop{

    display:none;
}

.pm-industries__button--tablet{

    display:flex;

    width:100%;
    height:56px;

    margin-top:32px;

    font-size:18px;
    line-height:22px;
}
/*==============================================================================
    PROJECTS TABLET
==============================================================================*/



    .pm-dc-projects{
        padding:4px;
        background:#0A0A0A;
    }


.pm-dc-projects__header{

    display:flex;
    flex-direction:column;

    align-items:flex-start;

    padding:48px 0 0;

    gap:32px;

    margin-bottom:32px;

}

    .pm-dc-projects__title{

        width:100%;

        gap:8px;

    }


    .pm-dc-projects__heading{

        font-size:24px;
        line-height:30px;

    }


    /* убираем стрелки и кнопку */
    .pm-dc-projects__actions{

        display:none;

    }


    /* горизонтальный скролл */
    .pm-dc-projects__slider{

    display:flex;

    gap:16px;

    padding:0 0 48px;

    overflow-x:auto;

        overflow-y:hidden;

        scroll-snap-type:x mandatory;

        -webkit-overflow-scrolling:touch;

        scrollbar-width:none;

    }


    .pm-dc-projects__slider::-webkit-scrollbar{

        display:none;

    }


    .pm-dc-project{

        flex:0 0 380px;

        max-width:380px;

        scroll-snap-align:start;

    }


    .pm-dc-project__image{

        height:256px;

        border-radius:16px;

    }


    .pm-dc-project__city{

        top:8px;
        left:8px;

        padding:16px;

        font-size:24px;
        line-height:30px;

    }


    .pm-dc-project__power{

        left:8px;
        bottom:8px;

    }

.pm-dc-stages{

    padding:60px 0;

}


/* вся секция становится вертикальной */

.pm-dc-stages__wrapper{

    display:flex;

    flex-direction:column;

    gap:32px;

}



/* верхний блок */

.pm-dc-stages__left{

    width:100%;

    position:static;

}


.pm-dc-stages__title{

    max-width:none;

    font-size:32px;

    line-height:38px;

}





/* кнопку переносим вниз */

.pm-dc-stages__left .pm-dc-stages__cta{
    display:none;
}
.pm-dc-stages__cta.mobile{

    display:flex;

    flex-direction:column;

    gap:24px;

    margin-top:48px;

}

    .pm-dc-stages__cta.mobile .pm-dc-stages__btn{

        width:100%;

        height:56px;

    }


    .pm-dc-stages__cta.mobile .pm-dc-stages__term{

        display:flex;

        flex-direction:row;

        justify-content:center;

        align-items:center;

        gap:4px;

    }

/* список */

.pm-dc-stages__right{

    width:100%;

    gap:8px;

}



/* карточки */

.pm-dc-stages__step{

    min-height:auto;

    padding:16px;

    border-radius:4px;

}


/* заголовок карточки */

.pm-dc-stages__step{

    display:flex;
    flex-direction:column;

    gap:16px;

    min-height:auto;

    padding:16px;

    border-radius:4px;

}


.pm-dc-stages__step-header{

    margin-bottom:0;

}


.pm-dc-stages__step-title{

    font-size:18px;
    line-height:22px;

    margin:0;

}


.pm-dc-stages__step-text{

    font-size:12px;
    line-height:16px;

    margin:0;

}


/* теги */

.pm-dc-stages__step-tags{

    margin-top:0;

    flex-wrap:wrap;

}


/* мобильная кнопка после списка */

.pm-dc-stages__cta.mobile{

    display:flex;

    flex-direction:column;

    gap:24px;

    margin-top:32px;

}


.pm-dc-stages__btn{

    width:100%;

    height:56px;

}


.pm-dc-stages__term{

    align-items:center;

}
.pm-container{
    padding-left:16px !important;
    padding-right:16px !important;
}
/*============================================================================== 
    TAG TABLET
==============================================================================*/

.pm-badge,
.pm-gas-stages__label,
.pm-dc-stages__label,
.pm-section-label,
[class*="__label"]{

    gap:8px;

}


.pm-badge-text,
.pm-gas-stages__label,
.pm-dc-stages__label,
.pm-section-label,
[class*="__label"]{

    font-family:Gilroy, sans-serif !important;

    font-size:14px !important;
    line-height:18px !important;
    font-weight:600 !important;

    color:#FFFFFF !important;

}


.pm-badge__rectangle,
.pm-gas-stages__label-dot,
.pm-dc-stages__label-dot{

    width:8px !important;
    height:8px !important;

    background:#5369E0 !important;

}
.pm-solutions__header,
.pm-industries__content,
.pm-dc-projects__title,
.pm-dc-stages__left{

    gap:16px;
}
.pm-dc-stages__left{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
}
.pm-dc-benefits{

    padding:64px 0;
    background:#171717;

}


.pm-dc-benefits__wrapper{

    padding:0;

    background:none;

    border-radius:0;

    gap:0;

    align-items:flex-start;

}


/* badge */

.pm-dc-benefits .pm-badge{

    margin-bottom:16px;

}


/* title */

.pm-dc-benefits .pm-solutions__title{

    margin:0 0 32px;

    font-size:24px;

    line-height:30px;

}


/* CONTENT */

.pm-dc-benefits__content{

    display:flex;

    flex-direction:column;

    gap:16px;

}



/* GALLERY */

.pm-dc-benefits__gallery{

    width:100%;

    height:250px;

    grid-template-columns:repeat(3,1fr);

    grid-template-rows:repeat(2,121px);

    gap:8px;

}


.pm-dc-benefits__image{

    height:auto;

}



/* LIST */

.pm-dc-benefits__list{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:8px;

    width:100%;

    height:auto;

}



/* ITEM */

.pm-dc-benefits__item{

    height:216px;

    min-height:216px;

    padding:16px;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    justify-content:flex-start;

    gap:16px;

    background:#262626;

    border-radius:4px;

}


/* ICON */

.pm-dc-benefits__icon{

    width:56px;

    height:56px;

}


/* TEXT */

.pm-dc-benefits__text h3{

    font-size:16px;

    line-height:20px;

    margin:0 0 4px;

}


.pm-dc-benefits__text p{

    font-size:12px;

    line-height:16px;

}
    .pm-dc-stages__left .pm-solutions__title{
        margin-top:0 !important;
    }

    .pm-dc-stages__left .pm-badge{
        margin-bottom:0 !important;
    }

.pm-about{
    padding:24px 0;
}

.pm-about__top{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;

    gap:8px;
    margin-bottom:16px;
}
.pm-about__left{
    width:100% !important;
    flex:none !important;
}

.pm-about__right{
    width:100% !important;
    flex:none !important;

    display:block !important;
}
.pm-about__description{
    width:100%;
    max-width:736px;

    font-size:14px;
    line-height:18px;

    margin:0;
}
.pm-about .pm-badge{

    margin-bottom:8px;

}

.pm-about .pm-solutions__title{

    max-width:none;

    white-space:nowrap;

    font-size:24px;
    line-height:30px;

}
    .pm-about .pm-solutions__title br{
        display:none;
    }
.pm-about__image{

    padding:4px 0;

}

.pm-about__image img{

    height:251px;

}

.pm-about__stats{

    grid-template-columns:repeat(2,1fr);

    gap:8px;

    margin-top:24px;

}

.pm-about__card{

    min-height:128px;

    padding:16px;

}

.pm-about__card-top{

    gap:8px;

}

.pm-about__number{

    font-size:24px;
    line-height:30px;

}

.pm-about__unit{

    margin-bottom:2px;

    font-size:24px;
    line-height:30px;

}

.pm-about__caption{

    font-size:12px;
    line-height:16px;

}
}
/*==============================================================================
    MOBILE 375
==============================================================================*/

@media (max-width:767px){

    /*==============================================================================
        HERO
    ==============================================================================*/

.pm-dc-hero{
    min-height:730px;
}
.pm-dc-hero__container{
    width:100%;
    max-width:none;
    min-height:700px;
    padding:56px 16px 24px;
    box-sizing:border-box;
}
.pm-dc-hero__center{
    display:flex;
    flex-direction:column;

    min-height:auto;
    height:auto;

    padding:24px 0;
}
    /*==============================================================================
        BREADCRUMBS
    ==============================================================================*/

    .pm-dc-hero__breadcrumbs{
        margin:0 0 32px;
    }

    .pm-breadcrumbs{
        gap:8px;
        flex-wrap:nowrap;
        overflow:hidden;
    }

    .pm-breadcrumbs__link,
    .pm-breadcrumbs__current{
        font-size:14px;
        line-height:18px;
        font-weight:600;
    }

    .pm-breadcrumbs__link{
        flex-shrink:0;
        color:rgba(255,255,255,.48);
    }

    .pm-breadcrumbs__current{
        overflow:hidden;
        white-space:nowrap;
        text-overflow:ellipsis;
    }

    /*==============================================================================
        CONTENT
    ==============================================================================*/

.pm-dc-hero__bottom{
    display:flex;
    flex-direction:column;
    align-items:stretch;

    gap:32px;

    flex:none;

    transform:translateY(80px);
}
    .pm-dc-hero__left,
    .pm-dc-hero__right{
        width:100%;
        max-width:none;
    }

    /*==============================================================================
        TITLE
    ==============================================================================*/

    .pm-dc-hero__title-wrap{
        gap:12px;
    }

    .pm-dc-hero__title{
        font-size:32px;
        line-height:38px;
        font-weight:600;
    }

    .pm-dc-hero__subtitle{
        width:100%;
        max-width:343px;

        font-size:14px;
        line-height:18px;
        font-weight:500;

        white-space:normal;
    }

    /*==============================================================================
        BUTTON
    ==============================================================================*/

    .pm-dc-hero__actions{
        margin-top:32px;
    }

    .pm-dc-hero__button{
        width:100%;
        height:56px;

        font-size:16px;
        line-height:20px;
        font-weight:600;
    }

    /*==============================================================================
        NAV
    ==============================================================================*/

    .pm-dc-hero__nav{
        display:none;
    }

    /*==============================================================================
        SLIDER
    ==============================================================================*/

    .pm-dc-cases{

        display:flex;
        gap:16px;

        width:calc(100% + 16px);

        overflow-x:auto;
        overflow-y:hidden;

        padding-bottom:8px;

        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;

        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .pm-dc-cases::-webkit-scrollbar{
        display:none;
    }

    /*==============================================================================
        CARD
    ==============================================================================*/

    .pm-dc-card{
        display:flex !important;
        flex-direction:column;

        flex:0 0 280px;

        scroll-snap-align:start;

        animation:none;
    }

    .pm-dc-card.active{
        display:flex;
    }

    .pm-dc-card__image{
        width:280px;
        height:150px;
        border-radius:16px;
    }

    .pm-dc-card__footer{
        width:280px;
        margin-top:8px;
    }

    .pm-dc-card__city{
        font-size:16px;
        line-height:20px;
        font-weight:600;
    }

    .pm-dc-card__year{
        font-size:16px;
        line-height:20px;
        font-weight:600;
    }
    .pm-br-mobile{
        display:block;
    }
    .pm-dc-hero__title span{
        display:inline;
    }
    .pm-solutions{

        padding:32px 0;
    }

    .pm-solutions__header{

        gap:8px;
        margin-bottom:32px;
    }

    .pm-solutions__title{

        font-size:24px;
        line-height:30px;
    }

    .pm-solutions__grid{

        gap:32px;
    }

    .pm-solution-card{

        gap:20px;
    }

    .pm-solution-card__image{

        height:250px;
    }

    .pm-solution-card__title{

        left:16px;
        right:16px;
        bottom:16px;

        font-size:18px;
        line-height:22px;
    }

    .pm-solution-card__list{

        gap:16px;
    }

    .pm-solution-item{

        align-items:flex-start;
    }

    .pm-solution-item__icon{

        width:33px;
        height:25px;

        margin-top:2px;
    }

    .pm-solution-item__icon svg{

        width:17px;
        height:11px;
    }

    .pm-solution-item__text{

        margin-left:8px;

        font-size:16px;
        line-height:20px;
    }
/*==============================================================================
    INDUSTRIES MOBILE
==============================================================================*/

.pm-industries{

    padding:32px 0;
}

.pm-industries__header{

    margin-bottom:32px;
}

.pm-industries__content{

    gap:16px;
}

.pm-industries__title{

    font-size:24px;
    line-height:30px;
}

.pm-industries__subtitle{

    font-size:14px;
    line-height:18px;
}

.pm-industries__grid{

    display:grid;

    grid-template-columns:1fr;

    gap:16px;
}

.pm-industry-card{

    height:284px;
}

.pm-industry-card__title{

    left:16px;
    right:16px;
    bottom:16px;

    font-size:18px;
    line-height:22px;
}

.pm-industries__header .pm-industries__button{

    display:none;
}

.pm-industries__grid + .pm-industries__button{

    display:flex;

    width:100%;
    height:56px;

    margin-top:32px;

    font-size:16px;
    line-height:20px;
}
    .pm-dc-projects{

        padding:4px;

        background:#0A0A0A;

    }


    .pm-dc-projects__header{

        padding:32px 16px 0;

        margin-bottom:32px;

        gap:32px;

    }


    .pm-dc-projects__title{

        width:100%;

        gap:8px;

    }


    .pm-dc-projects__heading{

        font-size:24px;

        line-height:30px;

    }


    .pm-dc-projects__actions{

        display:none;

    }



.pm-dc-projects__slider{

    display:flex !important;

    flex-wrap:nowrap;

    gap:8px;

    width:auto;

    margin-left:16px;

    padding:0 0 32px 0 !important;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-snap-type:x mandatory;

    scrollbar-width:none;

    -webkit-overflow-scrolling:touch;

}

    .pm-dc-projects__slider::-webkit-scrollbar{

        display:none;

    }



    .pm-dc-project{


        display:block !important;


        flex:0 0 300px !important;

        width:300px !important;

        max-width:300px !important;


        scroll-snap-align:start;

    }



    .pm-dc-project__image{


        height:256px;


        border-radius:16px;


    }



    .pm-dc-project__city{


        top:8px;

        left:8px;


        padding:16px;


        font-size:18px;

        line-height:22px;


        gap:12px;

    }



    .pm-dc-project__city span{

        width:8px;

        height:8px;

    }



    .pm-dc-project__power{


        left:8px;

        bottom:8px;


        gap:4px;

    }



    .pm-dc-project__label{


        width:122px;

        height:54px;

        padding:16px;


        font-size:14px;

        line-height:18px;


    }



    .pm-dc-project__value{


        width:132px;

        min-width:132px;

        height:54px;

        padding:12px 16px;


    }
    .pm-dc-projects .pm-container{

        padding-left:0 !important;
        padding-right:0 !important;

    }


    .pm-dc-projects__header{

        padding:32px 16px 0 !important;

        margin-bottom:32px;

    }
.pm-dc-stages{

    padding:32px 16px;

}


/* контейнер */

.pm-dc-stages__wrapper{

    gap:32px;

}


/* заголовок */

.pm-dc-stages__title{

    font-size:24px;

    line-height:30px;

}


/* список */

.pm-dc-stages__right{

    gap:4px;

}


/* карточки */

.pm-dc-stages__step{

    display:flex;
    flex-direction:column;

    padding:16px;

    border-radius:16px;

    min-height:0;

}



/* верх с номером */

.pm-dc-stages__step-header{

    gap:12px;

    margin-bottom:16px;

}

/* круг */

.pm-dc-stages__step-num{

    width:48px;
    height:48px;

}

/* заголовки */

.pm-dc-stages__step-title{

    font-size:18px;

    line-height:22px;

}



/* текст */

.pm-dc-stages__step-text{

    font-size:12px;

    line-height:16px;

}



/* теги */

.pm-dc-stages__step-tags{

    display:flex;
    flex-wrap:wrap;

    gap:8px;

    margin-top:16px;

}


.pm-dc-stages__step-tag{

    font-size:14px;
    line-height:18px;

    padding:4px 8px;

    border-radius:8px;

}


/* кнопка */

.pm-dc-stages__cta.mobile{

    gap:16px;

    margin-top:32;

}


.pm-dc-stages__btn{

    height:56px;

    width:100%;

    border-radius:12px;

}



/* срок */

.pm-dc-stages__term{

    justify-content:center;

    width:100%;

    gap:4px;

}


.pm-dc-stages__term-text{

    font-size:14px;

    line-height:18px;

}


.pm-dc-stages__term-value{

    font-size:16px;

    line-height:20px;

}
/*==============================================================================
    TAG MOBILE
==============================================================================*/

.pm-badge,
.pm-gas-stages__label,
.pm-dc-stages__label,
.pm-section-label,
[class*="__label"]{

    gap:8px;

}


.pm-badge-text,
.pm-gas-stages__label,
.pm-dc-stages__label,
.pm-section-label,
[class*="__label"]{

    font-family:Gilroy, sans-serif !important;

    font-size:14px !important;
    line-height:18px !important;
    font-weight:600 !important;

    color:#FFFFFF !important;

}


.pm-badge__rectangle,
.pm-gas-stages__label-dot,
.pm-dc-stages__label-dot{

    width:8px !important;
    height:8px !important;

    background:#5369E0 !important;

}
.pm-dc-stages{
    padding:32px 16px;
}


/* заголовок блока */
.pm-dc-stages__left{
    gap:8px;
}


.pm-solutions__title{
    font-size:24px;
    line-height:30px;
}


/* список карточек */
.pm-dc-stages__right{

    gap:4px;

}



/* карточка */

.pm-dc-stages__step{

    padding:16px;

    gap:16px;

    border-radius:4px;

}



/* шапка карточки */

.pm-dc-stages__step-header{

    margin-bottom:0;

}


/* заголовок карточки */

.pm-dc-stages__step-title{

    margin:0;

    font-size:18px;
    line-height:22px;

}



/* описание */

.pm-dc-stages__step-text{

    margin:0;

    font-size:12px;
    line-height:16px;

}


/* теги */

.pm-dc-stages__step-tags{

    margin-top:0;

    gap:8px;

}
    .pm-dc-hero__title span{
        display:inline;
    }

    .pm-dc-hero__title .pm-br-mobile{
        display:block;
    }
    .pm-about{
        padding:32px 0 24px;
    }

    .pm-about__top{

        display:flex;
        flex-direction:column;

        align-items:flex-start;

        gap:8px;

        margin-bottom:16px;

    }

    .pm-about__left,
    .pm-about__right{

        width:100% !important;
        flex:none;

    }

    .pm-about__right{
        display:block;
    }

    .pm-about .pm-badge{
        margin-bottom:8px;
    }

    .pm-about .pm-solutions__title{

        max-width:none;

        font-size:24px;
        line-height:30px;

    }

    .pm-about__description{

        max-width:none;

        font-size:14px;
        line-height:18px;

    }

.pm-about__image{
    width:100vw;
    margin-left:calc(50% - 50vw);
    padding:4px 0;
}
    .pm-about__image img{

        width:100%;
        height:251px;

        object-fit:cover;

    }
    .pm-about .pm-solutions__title br{
        display:inline;
    }
    .pm-about__stats{

        display:grid;

        grid-template-columns:repeat(2,minmax(0,1fr));

        gap:8px;

        margin-top:32px;

    }

    .pm-about__card{

        display:flex;
        flex-direction:column;
        justify-content:space-between;

        min-height:128px;

        padding:16px;

        border-radius:16px;

        background:#171717;

    }

    .pm-about__card-top{

        display:block;

    }

    .pm-about__number{

        display:inline;

        font-size:20px;
        line-height:24px;

    }

    .pm-about__unit{

        display:inline;

        margin-left:6px;

        font-size:20px;
        line-height:24px;

    }

    /* Только "специалистов" переносим */
    .pm-about__stats .pm-about__card:nth-child(3) .pm-about__unit{

        display:block;

        margin:4px 0 0;

    }

    .pm-about__caption{

        margin:0;

        font-size:12px;
        line-height:16px;

    }
}
.pm-footer__dec-part {
    background: #0A0A0A !important;
}
/* По умолчанию */
.pm-dc-stages__tag-desktop{
    display:inline-flex;
    background:#5369E0;
    color:#fff;
}


.pm-dc-stages__tag-mobile{
    display:none;
}



/* Планшет и мобильный */
@media (max-width:1279px){

    .pm-dc-stages__tag-desktop{
        display:none;
    }


    .pm-dc-stages__tag-mobile{
        display:inline-flex;

        background:rgba(255,255,255,.08);
        color:#FAFAFA;
    }

}
.pm-dc-benefits__text h3{
    margin-bottom:8px !important;
}
@media (max-width:767px){

    section.pm-dc-benefits{
        display:none !important;
    }
}
.pm-dc-project__label{
    color:#A3A3A3 !important;
}

.pm-dc-project__value span{
    color:#000 !important;
}
/* Текст меню */
.pm-page-dark .pm-header__link,
.pm-page-dark .pm-header__link span {
    color: #fff;
}

/* Поиск и корзина */
.pm-page-dark .pm-header__search-button {
    color: #fff;
}

.pm-page-dark .pm-header__search-button svg,
.pm-page-dark .pm-header__search-button svg path {
    fill: #fff;
    color: #fff;
}

/* Телефон */
.pm-page-dark .pm-phone-btn {
    color: #fff;
}

.pm-page-dark .pm-phone-btn span {
    color: #fff;
}

/* Логотип */
.pm-page-dark .pm-logo-img--default {
    display: none;
}

.pm-page-dark .pm-logo-img--color-dark {
    display: block;
}

.pm-page-dark .pm-logo-img--color {
    display: none;
}

/* Иконки */
.pm-page-dark .pm-header__link svg path,
.pm-page-dark .pm-header__cart-icon path {
    fill: #fff;
}
/* Кнопка поиска */
.pm-page-dark .pm-header__search-button {
    color: #fff;
}

.pm-page-dark .pm-header__search-button svg path {
    fill: #fff !important;
}

/* Телефон */
.pm-page-dark .pm-phone-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.pm-page-dark .pm-phone-btn span {
    color: #fff !important;
}

.pm-page-dark .pm-phone-btn .btn-icon path {
    fill: #fff !important;
}

/* Если иконка телефона использует currentColor */
.pm-page-dark .pm-phone-btn .btn-icon {
    color: #fff;
}