/* Шапка */

.header,
.header * {
    box-sizing: border-box;
}

ul {
    list-style: none;
    /*padding: 0 !important;
    margin: 0 !important;*/
}

.header {
    font-family: 'Roboto';
    border-bottom: 1px solid #E0E0E0;
    font-size: 16px;
    line-height: 20px;
    z-index: 99;
    position: relative;
}

.header,
.header a {
    color: #221F1F !important;
    text-decoration: none;
    outline: none;
}

.header__container {
    width: 100%;
    max-width: 1780px;
    height: 100px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 0 15px;
}

.header__logo {
    display: block;
    margin: 0 60px 0 15px;
    cursor: pointer;
}

.header__logo--index,
.header--index .header__logo {
    display: none;
}

.header--index .header__logo--index {
    display: block;
}

.header--index {
    border-bottom: 1px solid #333333;
    background: #172430;
}

.header--index,
.header--index a {
    color: #fff !important;
}

.navigation {
    margin: 0 60px 0 auto;
}

.menu {
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}

.menu__link {
    display: block;
    height: 100%;
    padding: 0 15px;
}

.menu__link {
    transition: 0.2s;
}

.menu__item:hover .menu__link,
.menu__link--active {
    color: #D32336 !important;
    transition: 0.2s;
}

.menu span {
    display: inline-flex;
    align-items: center;
    height: 100px;
    transition: 0.3s;
    white-space: nowrap;
    position: relative;
}

.menu span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: 0.3s;
}

.menu__item:hover span::after,
.menu__item--active span::after {
    background-color: #D32336;
    transition: 0.3s;
}

.lang {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}

a.lang__item {
    width: 41px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D32336;
    color: #D32336 !important;
    margin: 0 5px;
    cursor: pointer;
    text-transform: uppercase;
}

a.lang__item--active {
    background: #D32336;
    color: #fff !important;
}

.top-contacts {
    display: flex;
    align-items: center;
}

.top-contacts__link {
    cursor: pointer;
    display: block;
    position: relative;
}

.top-contacts__drop {
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -152px !important;
    width: 304px;
    border: 1px solid #eee;
    padding: 20px !important;
    background-color: #fff;
}

.top-contacts__item--mail .top-contacts__drop {
    margin-left: -190px !important;
}

.top-contacts__picture {
    padding: 15px 30px;
    cursor: pointer;
}

.top-contacts__region {
    color: #828282;
    margin: 0 0 15px 0;
}

.top-contacts__container {
    margin: 0 0 15px 0;
}

.top-contacts__item:last-child .top-contacts__container {
    margin: 0;
}

.top-contacts__container {
    display: flex;
    align-items: center;
}

.top-contacts__text {
    color: #221F1F;
}

.top-contacts__icon {
    display: block;
}

.top-contacts__drop .top-contacts__icon {
    margin: 0 20px 0 0;
}

.top-contacts-mobile {
    display: none;
}

.top-contacts__list {
    font-family: "Roboto";
    padding: 20px !important;
}

.top-contacts__list .top-contacts__icon {
    margin: 0 20px 0 0;
}

@media screen and (max-width: 1780px) {
    .header__logo {
        margin: 0 30px 0 15px;
    }

    .header .navigation {
        margin: 0 30px 0 auto;
    }

    .menu__link {
        padding: 0 10px;
    }

    .lang {
        margin: 0 15px 0 0;
    }

    .top-contacts__picture {
        padding: 15px;
    }

    .top-contacts__link {
        position: unset;
    }

    .top-contacts__drop {
        left: unset;
        right: 15px;
        top: 80px;
        margin-left: unset !important;
    }
}

.header__hamburger {
    display: none;
}

.mobile-menu {
    display: none;
}

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

    .lang {
        margin: 0 15px 0 auto;
    }
    
    .top-contacts {
        margin: 0 0 0 auto !important;
    }

    .body--scroll {
        overflow-y: hidden;
        max-height: 100vh;
    }

    .mobile-menu.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .mobile-menu .lang {
        display: none;
    }

    .header .navigation {
        width: 100%;
        flex-direction: column;
    }

    .header .navigation .menu {
        display: block;
        border-bottom: 1px solid #E0E0E0;
    }

    .header--index .navigation .menu {
        border-bottom: 1px solid #333;
    }

    .header .menu__link {
        width: 100%;
        height: auto;
        text-align: center;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top: 1px solid #E0E0E0;
    }

    .header--index .menu__link {
        border-top: 1px solid #333;
    }

    .header .menu span {
        height: unset;
    }

    .header__hamburger {
        order: -1;
        flex-shrink: 0;
        display: block;
        width: 60px;
        height: 60px;
        padding: 5px 15px;
        background-color: transparent;
        border: 0;
        border-radius: 0;
        cursor: pointer;
        outline: none;
        margin: 0;
    }

    .header__hamburger span {
        width: 100%;
        background-color: #172430;
        height: 2px;
        display: block;
        position: relative;
    }

    .header__hamburger span:after,
    .header__hamburger span:before {
        content: "";
        position: absolute;
        display: block;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #172430;
    }

    .header--index .header__hamburger span,
    .header--index .header__hamburger span:after,
    .header--index .header__hamburger span:before {
        background-color: #fff;
    }

    .header__hamburger span:after {
        width: 50%;
    }

    .header__hamburger span:before {
        top: -9px;
    }

    .header__hamburger span:after {
        bottom: -9px;
    }

    .header__hamburger.open span {
        background: transparent;
    }

    .header__hamburger.open span:before,
    .header__hamburger.open span:after {
        transition-duration: 0.2s, 0.2s;
        transition-delay: 0.2s, 0s;
    }

    .header__hamburger.open span:before {
        transition-property: top, transform;
    }

    .header__hamburger.open span:after {
        transition-property: bottom, transform;
    }

    .header__hamburger.open span:before {
        top: 0;
        transform: rotate(45deg);
    }

    .header__hamburger.open span:after {
        bottom: 0;
        transform: rotate(-45deg);
        width: 100%;
    }

    .header__hamburger.open span:before,
    .header__hamburger.open span:after {
        transition-delay: 0s, 0.2s;
    }
}

@media (max-width: 780px) {
    .header__text {
        display: none;
    }
}

@media (max-width: 600px) {
    .lang {
        display: none;
    }

    .mobile-menu .lang {
        display: flex;
    }

    .header__container {
        justify-content: space-between;
    }

    .header__logo {
        margin: 0;
    }

    .top-contacts__item--phone {
        display: none;
    }

    .top-contacts {
        display: none;
    }

    .top-contacts-mobile {
        display: block;
        padding: 15px;
    }

    .top-contacts-mobile__icon {
        display: block;
        fill: #D32336;
    }

    .header--index .top-contacts-mobile__icon {
        fill: #EDEDED;
    }

    .lang {
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .header__logo {
        margin: 10px;
    }
    
    .header__logo img {
        max-width: 100%;
    }
}

/* Подвал */

.footer,
.footer * {
    box-sizing: border-box;
}

.footer {
    font-family: 'Roboto';
    font-size: 16px;
    line-height: 20px;
    background: #172430;
    padding: 20px 0 0 0;
}

.footer,
.footer a {
    color: #F7F7F7 !important;
    text-decoration: none;
    outline: none;
}

.footer__container {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer__top {
    height: 100px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333333;
}

.footer .navigation {
    margin: 0 10px 0 0;
}

.footer .menu__item:first-child .menu__link {
    padding-left: 0;
}

.footer .socials {
    display: flex;
    align-items: center;
    margin: 0 50px 0 auto !important;
}

.socials__link {
    padding: 10px;
}

.footer__list {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 60px 0 !important;
}

.footer__item:nth-child(2) {
    margin: 0 20px;
}

.socials__link {
    display: block;
}

.socials__icon {
    fill: #EDEDED;
    transition: 0.3s;
}

.socials__icon:hover {
    fill: #D32336;
    transition: 0.3s;
}

.contacts {
    display: flex;
    align-items: center;
    margin: 14px 0;
}

.contacts__icon {
    display: block;
    margin: 0 20px 0 0;
}

.footer__mail .contacts__text {
    white-space: nowrap;
}

.footer__copyright {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    background-color: #D32336;
    text-align: center;
    padding: 10px 15px;
}

@media (max-width: 1400px) {
    .footer {
        padding: 0;
    }

    .footer__list {
        margin: 20px 0 30px 0 !important;
    }

    .footer__copyright {
        height: 40px;
    }
}

@media (max-width: 1200px) {
    .footer .socials {
        margin: 0 20px 0 auto !important;
    }

    .footer .menu__link {
        padding: 0 7px;
    }
}

@media (max-width: 1050px) {
    .footer .navigation {
        display: none;
    }

    .footer .socials {
        margin: 0 20px 0 0 !important;
    }

    .footer__top {
        padding: 14px 0;
        height: unset;
        justify-content: space-between;
    }

    .footer {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 760px) {
    .contacts--address,
    .footer__list {
        display: none;
    }

    .footer__copyright {
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
        height: unset;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .footer__container {
        padding: 0;
    }

    .footer__top {
        flex-direction: column;
        height: unset;
    }

    .footer__mail {
        display: none;
    }

    .footer .socials {
        margin: 0 !important;
    }
}

/* Слайдер промо */

.promo,
.promo * {
    box-sizing: border-box;
}

ul {
    list-style: none;
    /*padding: 0 !important;
    margin: 0 !important;*/
}

.promo {
    font-family: 'Roboto';
    width: 100%;
    background-image: url("https://static.tildacdn.com/tild6532-3734-4334-a432-633865346636/promo-bg.png");
    background-size: cover;
    color: #ffffff;
    overflow: hidden;
}

.promo__container {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    height: 100%;
}

.promo__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 660px;
    height: calc(100vh - 100px);
}

.promo__logo {
    width: 745px;
    height: 724px;
    background-image: url("https://static.tildacdn.com/tild6131-3938-4165-a238-663930643639/promo-circle.png");
}

.promo__content {
    max-width: 640px;
    padding: 0 0 100px 0;
    flex-shrink: 0;
}

.promo__item--third .promo__content {
    max-width: 570px;
}

.promo__list {
    z-index: 2;
}

.promo__title {
    font-family: 'GothamPro';
    font-size: 48px;
    line-height: 61px;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.promo__title:after {
    content: '';
    position: absolute;
    width: 610px;
    height: 26px;
    background-color: #D32336;
    top: 28px;
    left: 0;
    z-index: -1;
    border-radius: 5px;
}

.promo__item--second .promo__title:after {
    width: 475px;
}

.promo__item--third .promo__title:after {
    width: 550px;
}

.promo__item--fourth .promo__title:after {
    width: 512px;
}

.promo__item--second .promo__picture {
    padding: 0 122px 0 0;
}

.promo__description {
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 40px 0;
    max-width: 590px;
    width: 100%;
}

.promo__button,
.ck-button {
    width: 100%;
    max-width: 380px;
    height: 54px;
    background: #D32336;
    color: #ffffff !important;
    padding: 0 10px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 5px;
    cursor: pointer;
}

.promo__button:hover,
.ck-button:hover {
    box-shadow: 0 20px 40px rgba(211, 35, 54, 0.2);
    transition: 0.3s;
}

.promo__more {
    display: flex;
    align-items: center;
    color: #fff !important;
    text-decoration: none;
    margin: 0 60px 0 0;
    position: absolute;
    bottom: 60px;
    left: 15px;
    z-index: 4;
}

.promo__more-icon {
    display: block;
    margin: 0 20px 0 0;
}

.promo__more-text {
    text-transform: uppercase;
}

.promo__arrow {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #333333;
    transition: 0.3s;
    margin: 0 5px;
    outline: none;
    cursor: pointer;
}

.promo__arrow:hover {
    background-color: #333333;
    transition: 0.3s;
}

.promo__bottom {
    position: absolute;
    bottom: 40px;
    left: 275px;
    display: flex;
    align-items: center;
    width: calc(100% - 275px);
    padding: 0 30px 0 0;
    z-index: 3;
}

.promo__navigation {
    display: flex;
    align-items: center;
}

.promo__picture {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.promo__item--first .promo__picture {
    align-items: center;
    max-width: 730px;
    width: 100%;
}

.promo__img {
    display: block;
}

.promo__item--first .promo__img {
    display: none;
}

.promo__progress {
    margin: 0 0 0 auto;
}

.promo__count {
    display: flex;
    align-items: flex-end;
    color: #EDEDED;
    font-size: 20px;
    line-height: 22px;
}

.promo__count-active {
    font-size: 24px;
    line-height: 38px;
}

.promo__count-all {
    opacity: 50%;
}

.promo__dots {
    display: flex;
    margin: 10px 0 0 0 !important;
}

.promo__dot {
    width: 24px;
    height: 2px;
    background-color: #EDEDED;
    opacity: 0.5;
}

.promo__dot.tns-nav-active {
    opacity: unset;
}

.socials__link {
    display: block;
    padding: 10px;
}

.socials__icon {
    fill: #EDEDED;
    transition: 0.3s;
}

.socials__icon:hover {
    fill: #D32336;
    transition: 0.3s;
}

.promo__aside {
    top: 0;
    right: 40px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 0 100px 0;
    height: calc(100vh - 140px);
}

.promo__socials {
    background: rgba(51, 51, 51, 0.5);
    margin: 0 0 40px 0 !important;
    z-index: 4;
}

.promo__socials .socials__link {
    padding: 15px;
}

.promo__line {
    width: 1px;
    flex-grow: 1;
    background-color: #333333;
}

@media (max-width: 1450px) {
    .promo__img {
        max-height: 80vh;
        width: auto;
    }
}

@media (max-width: 1300px) {

    .promo .tns-outer {
        mix-blend-mode: screen;
    }

    .promo__title {
        font-size: 36px;
        line-height: 44px;
    }

    .promo__content {
        max-width: 500px;
    }

    .promo__title:after {
        width: 460px;
        height: 16px;
        top: 23px;
    }

    .promo__item--second .promo__title:after {
        width: 360px;
    }

    .promo__item--third .promo__title:after {
        width: 420px;
    }
    
    .promo__item--fourth .promo__title:after {
        width: 386px;
    }
}

@media (max-width: 1100px) {
    .promo__wrapper {
        position: relative;
    }

    .promo__content {
        z-index: 4;
    }

    .promo__picture {
        position: absolute;
        right: -30px;
        bottom: 0;
        opacity: 0.2;
    }

    .promo__wrapper,
    .promo__aside {
        height: 700px;
    }

    .promo__aside {
        justify-content: unset;
    }

    .promo__img {
        max-height: 680px;
    }

    .promo__line {
        display: none;
    }
}

@media (max-width: 960px) {
    .promo__picture {
        left: 40%;
    }
}

@media (max-width: 760px) {
    .promo__item--first iframe {
        display: none;
    }

    .promo__item--first .promo__img {
        display: block;
    }
}

@media (min-width: 760px) {
    .promo__item--first .promo__picture {
        opacity: 1;
        position: static;
    }
}

@media (max-width: 730px) {
    .header__container {
        padding: 0 5px;
    }

    .footer__container,
    .company__container,
    .promo__container {
        padding: 0 20px;
    }

    .promo__aside {
        display: none;
    }
}

@media (max-width: 600px) {
    .promo__more {
        bottom: 30px;
        margin: 0;
        left: 50%;
        margin-left: -100px;
    }

    .promo__bottom {
        width: calc(100vw - 40px);
        padding: 0;
        justify-content: center;
        bottom: 100px;
        left: 15px;
    }

    .promo__wrapper {
        align-items: flex-start;
    }

    .promo__content {
        padding: 40px 0;
    }

    .promo__picture {
        left: 10%;
        opacity: 0.1;
    }

    .promo__content {
        max-width: 100% !important;
    }

    .promo__description {
        max-width: unset;
    }
}

@media (max-width: 480px) {
    .promo__title {
        font-size: 24px;
        line-height: 36px;
    }

    .promo__title:after {
        width: 80% !important;
    }

    .promo__button {
        margin: 0 auto;
    }

    .promo__description {
        margin: 0 0 40px 0;
    }

    .promo__wrapper {
        height: 640px;
    }

    .promo__picture {
        left: 0;
    }
}

@media (max-width: 376px) {
    .promo__wrapper {
        height: 700px;
    }
}

/* О компании */

.company,
.company * {
    box-sizing: border-box;
}

.company {
    background-image: url("https://static.tildacdn.com/tild3565-3464-4666-a565-653536353234/company-bg.png");
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    font-family: 'Roboto';
}

.company::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    background-image: url("https://static.tildacdn.com/tild6339-3362-4663-a235-646634386531/company-svg.svg");
    background-size: cover;
    background-position: top left;
}

.company__container {
    width: 100%;
    max-width: 1780px;
    padding: 0 30px;
    margin: 0 auto;
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.company__content {
    max-width: 510px;
}

.company__title {
    font-family: 'GothamPro';
    font-weight: 500;
    color: #221F1F;
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 30px 0;
}

.company__description {
    margin: 0 0 60px 0;
}

.company__text {
    color: #828282;
    margin: 0 0 14px 0;
    line-height: 28px;
}

.company__img {
    display: block;
    width: 200px;
    margin: 0 0 14px 0;
    height: auto;
}

.company__frame {
    box-shadow: 0px 0px 30px 10px rgba(0,0,0,0.15);
     
}

@media (max-width: 1780px) {
    .company{
      padding: 90px 0;
    }
    
    .company__container {
        height: unset;
    }
    
    .company__frame {
        width: 800px;
        height: 448px;
    }
}

@media (max-width: 1500px) {
    .company__frame {
        width: 700px;
        height: 392px;
    }
}

@media (max-width: 1300px) {
    .company__frame {
        width: 600px;
        height: 336px;
    }
}

@media (max-width: 1200px) {
     .company {
         background-image: unset;
     }
     
    .company__container {
        flex-direction: column;
        justify-content: center;
        gap: 60px;
    }
    
    .company__content {
      max-width: 800px;
    }
    
    .company__button {
        margin: 0 auto;
    }
    
    .company__description {
      margin: 0 0 30px 0;
    }
    
    .company__frame {
        width: 800px;
        height: 448px;
    }
}

@media (max-width: 1100px) {
    .company__container {
        height: unset;
        padding: 70px 30px;
    }

    .company__title {
        font-size: 30px;
        line-height: 40px;
    }
    
     .company {
        padding: 0;
    }
    
    .company__frame {
        width: calc(100vw - 60px);
        height: calc((100vw - 60px)*(9/16));
    }
}

@media (max-width: 730px) {
    .company__container {
      padding: 60px 20px;
    }
    
    .company__frame {
        width: calc(100vw - 40px);
        height: calc((100vw - 40px)*(9/16));
    }
}


/* Новости на главной */

#rec239939605 {
    background-image: url("https://static.tildacdn.com/tild6365-3135-4161-a632-623062616433/news-bg.svg");
    background-size: cover;
}

#rec239939605 .t915 .t-section__title {
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 30px 0;
}

#rec239939605 .t915 .t-section__descr {
    max-width: 620px;
    font-size: 16px;
    line-height: 28px;
    color: #828282;
}

#rec239939605 .t915__container {
    display: flex;
}

@media (max-width: 960px) {
    #rec239939605 .t915__container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #rec239939605 .t-feed__grid-col {
        margin-bottom: 30px;
    }
}


div.command__portrait {
    margin: auto;
    width: fit-content;
}

/* Стили для кнопок */

#rec239939605 .t-feed__showallpost-btn,
#rec239835079 .t-feed__showmore-btn,
#rec242966824 .t-btn,
#rec241303918 .t-btn,
#rec264737314 .t-btn,
#rec241249835 .t-btn,
#rec242789193 .t-submit,
#rec241531430 .t-submit,
#rec239835079 .t-feed__showmore-btn,
#rec241743289 .t-submit {
    height: 54px;
    width: 100%;
    max-width: 380px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    background-color: #D32336;
    color: #fff;
}

#rec242789193 .t-submit,
#rec241531430 .t-submit {
    width: 100%;
}

#rec241743289 .t-submit {
    max-width: 100%;
}

#rec239939605 .t-feed__showallpost-btn:hover,
#rec239835079 .t-feed__showmore-btn:hover,
#rec242966824 .t-btn:hover,
#rec241303918 .t-btn:hover,
#rec264737314 .t-btn:hover,
#rec241249835 .t-btn:hover,
#rec242789193 .t-submit:hover,
#rec241993415 .t-btn:first-child:hover,
#rec241531430 .t-submit:hover,
#rec239835079 .t-feed__showmore-btn:hover,
#rec241743289 .t-submit:hover {
    box-shadow: 0px 20px 40px rgba(211, 35, 54, 0.2);
    transition: 0.3s;
}

@media (max-width: 480px) {
    #rec239835079 .t-feed__showmore-btn,
    #rec239939605 .t-feed__showallpost-btn {
        max-width: calc(100vw - 40px);
    }
    
    #rec239939605 .t-feed__buttons-wrapper {
        margin: 0;
    }
}

@media (max-width: 480px) {
    #rec239939605 .t-feed__showallpost-btn,
    #rec239835079 .t-feed__showmore-btn,
    #rec242966824 .t-btn,
    #rec241303918 .t-btn,
    #rec264737314 .t-btn,
    #rec241249835 .t-btn,
    #rec242789193 .t-submit,
    #rec241531430 .t-submit,
    #rec239835079 .t-feed__showmore-btn {
        font-size: 14px !important;
    }
}

/* Команда на главной */

#rec241249835 .t-section__title {
    font-family: "GothamPro";
    font-size: 36px;
    line-height: 52px;
}

#rec241249835 .t-section__descr {
    color: #828282;
    font-size: 16px;
    line-height: 28px;
}

#rec241249835 .t537 .t-section__bottomwrapper {
    margin-top: 40px;
}

/* Партнёры на главной */

#rec242974041 {
    color: #ffffff;
}

#rec242974041 .t-section__title {
    color: #ffffff;
    font-family: "GothamPro";
    font-size: 36px;
    line-height: 52px;
    margin-bottom: 30px;
}

#rec242974041 .t595 .t-section__descr {
    max-width: 712px;
    color: #828282;
    font-size: 16px;
    line-height: 1.75;
    font-family: "Roboto";
}

#rec242974041 .t595 .t-section__topwrapper {
    margin-bottom: 60px;
}

/* Страница новостей */

#rec239835079 .t-feed__col-grid__wrapper {
    padding: 0 0 18px;
}

#rec239835079 .t-btntext::after {
    display: none;
}

#rec239835079 .t-feed__button-readmore .t-btntext {
    font-size: 16px;
}

.t758__list_item:last-child .t758__link-item__wrapper {
    padding: 0 !important;
}

@media (max-width: 480px) {
    #rec239835079 .t-feed__post-title {
        font-size: 20px !important;
        padding: 10px 0 !important;
    }
    
    #rec239835079 .t-feed__grid-col {
        margin-bottom: 20px;
    }
    
    #rec239835079 .t-feed__buttons-wrapper {
        margin: 0 !important;
    }
}

/* Продукты и решения */

#rec242649943 .t397__tab {
    width: 50%;
    max-width: 360px;
    position: relative;
    border-bottom: 0 !important;
}

#rec242649943 .t397__tab_active:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #D32336;
    bottom: -2px;
    left: 0;
}

#rec242649943 .t397__tab {
    display: block;
}

#rec242649943 .t397__wrapper {
    display: flex;
    border-bottom: 2px solid #E0E0E0;
}

#rec242649943 .t397__wrapper_mobile {
    display: none;
}

@media (max-width: 480px) {
    #rec242649943 .t397__title {
        font-size: 16px !important;
        padding: 0 3px 15px 3px;
    }
    
    #rec241303918 .t847__text {
        font-size: 14px !important;
        line-height: 1.5;
    }
}

/*
#rec241303918 .t847__item,
#rec242966824 .t847__item {
    height: 190px;
}
*/

@media (max-width: 960px) {
    #rec241303918 .t847__item,
    #rec242966824 .t847__item {
        height: auto;
    }
    
    #rec241303918 .t847__title,
    #rec242966824 .t847__title {
        font-size: 20px !important;
        line-height: 1.3;
    }
    
    #rec241303918 .t847__box,
    #rec242966824 .t847__box {
        padding: 0;
    }
}

@media (max-width: 480px) {
    #rec241303918 .t847__title,
    #rec242966824 .t847__title {
        font-size: 16px !important;
        line-height: 1.5;
    }
    
    #rec241303918 .t847__text {
        font-size: 14px !important;
        line-height: 1.5;
    }
}

#rec241303918 .t847__title,
#rec242966824 .t847__title {
    margin: 0;
}

#rec242966824 .t847__img {
    width: 100px;
    display: block;
    margin: 0 auto;
}

#rec241303918 .t847__separator,
#rec242966824 .t847__separator {
    position: relative;
}

#rec241303918 .t847__separator:after,
#rec242966824 .t847__separator:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 20px;
    left: 0;
    background-color: #E0E0E0;
}

#rec241303918 .t847 .t-container:first-child,
#rec242966824 .t847 .t-container:first-child {
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

@media (max-width: 960px) {
    #rec241303918 .t847__img {
        display: block;
        margin: 0 auto;
        width: auto;
    }
}

/* Ключевые проекты */

#rec240885097 .t843__imgwrapper {
    background-color: #f7f7f7;
    padding: 30px;
}

#rec240885097 .t843__blockimg {
    background-size: contain;
}

#rec240885097 .t-col {
    margin: 0;
}

#rec240885097 .t-col_6 {
    max-width: 580px;
}

#rec240885097 .t843__textwrapper {
    padding: 0 40px;
}

/* Свяжитесь с нами */

#rec241531430 .t-form {
    background-image: url("https://static.tildacdn.com/tild3065-6632-4865-b536-613334666432/form-bg-mobile.svg");
    background-size: 100% 100%;
    padding: 154px 30px 45px 30px;
    max-width: 490px;
    height: 555px;
    margin: 0 auto;
}

#rec241531430 .t-text {
    font-size: 16px;
    line-height: 28px;
    width: 490px;
    text-align: left;
    color: #828282;
}

#rec241531430 .t-submit {
    margin-top: 10px
}

#rec241531430 .t-input {
    height: 48px;
}

#rec241531430 .t-input-group {
    margin-bottom: 30px;
}
 
#rec241531430 .t-valign_middle {
    vertical-align: bottom;
    height: 1000px !important;
}

#rec241531430 .t-cover {
    height: 1000px !important;
}

#rec241531430 .t698__mainblock {
    margin-left: 0;
}

#rec241531430 .t-form__successbox {
    text-align: center !important;
    background-color: #D32336 !important;
    color: #ffffff !important;
}

@media (max-width: 550px) {
  #rec241531430 .t-input-group {
    margin-bottom: 15px;
  }
  
  #rec241531430 .t-form {
    padding: 30px 0;
    width: 100%;
    padding-right: 15px;
    background-image: none;
  }
  
  #rec241531430 .t-text {
    width: 100%;
    padding-right: 20px;
    font-size: 14px;
    line-height: 16px;
    word-break: normal;
  }
  
  #rec241531430 .t698__descr {
      margin: 0;
      word-break: normal;
  }
  
  #rec241531430 .t-valign_middle,
  #rec241531430 .t-cover__carrier,
  #rec241531430 .t-cover {
      height: 800px !important;
  }
}

@media (max-width: 360px) {
  #rec241531430 .t-submit {
    margin-top: 0
  }
  
  #rec241531430 .t-input-group {
    margin-bottom: 5px;
  }
}


/*Кнопка наверх*/

#rec241652929 .t190 svg {
    width: 54px;
    height: 54px;
    background-image: url("https://static.tildacdn.com/tild3065-6439-4130-b530-353530663039/Frame_46_1.svg");
}


#rec241743289 .t-cover {
    background-color: unset;
}

/*Карьера-Обложка*/

#rec241993415 .t-container {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

#rec241993415 .t-col {
    margin: 0;
}

 #rec241993415 .t-btn {
     text-transform: uppercase;
     max-width: 380px !important;
    height: 54px !important;
 }

#rec241993415 .t-cover__filter {
    opacity: 0 !important;
}

@media (max-width: 1520px) {
    #rec241993415 .t-cover__carrier {
        background-position: right -200px top;
    }
}

@media (max-width: 1370px) {
    #rec241993415 .t-col_8 {
        max-width: 44%;
    }
    
    #rec241993415 .t-col {
        margin-left: 30px;
        margin-right: 30px;
    }
    
     #rec241993415 .t-btn {
        width: 100% !important;
     }
}

@media (max-width: 1200px) {
    #rec241993415 .t-col {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 1000px) {
    #rec241993415 .t-cover__carrier {
        background-position: left top;
    }
    
  #rec241993415 .t-btn {
    width: 380px;
    height: 54px;
  } 
  
    #rec241993415 .t-col_8 {
        max-width: 620px;
        width: 100%;
    }
}

@media (max-width: 960px) {
    #rec241993415 .t-title {
        font-size: 48px !important;
        line-height: 60px !important;
    }
    
    #rec241993415 .t-container {
        padding: 0;
    }
}

@media (max-width: 730px) {
  #rec241993415 .t-cover,
  #rec241993415 .t-cover__wrapper,
  #rec241993415 .t-cover__filter,
  #rec241993415 .t-cover__carrier {
    height: 600px !important;
  }
  
  #rec241993415 .t181__title {
    font-size: 36px !important;
    line-height: 52px !important;
  }
  
  #rec241993415 .t181__descr {
      padding: 0;
  }
}

/*Преимущества*/

#rec242453775 {
    background-color: #EDEDED;
}

#rec242453775 .t-name {
    border-left: 2px solid #E0E0E0;
    padding-left: 30px;
}

#rec242453775 .t-descr {
    padding-left: 30px;
}

#rec242453775 .t-container {
    box-sizing: border-box;
    max-width: 1780px;
    padding: 0 10px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

#rec242453775 .t-descr {
    padding-left: 34px;
}

#rec242453775 .t-section__container {
    display: none !important;
}

#rec242453775 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}

#rec242453775 .t-name {
    white-space: nowrap;
}

#rec242453775 .t-cell:first-child {
    display: none;
}

#rec242453775 .t820__textwrapper {
    padding-left: 0;
}
 
#rec242453775 .t-col {
    max-width: 320px;
    width: 100%;
}

#rec242453775 .t820__bottommargin {
    margin: 0;
}

@media (max-width: 1500px) {
  #rec242453775 .t-container {
    flex-wrap: wrap;
    margin-left: 50px;
    margin-right: 50px;
  }
  
  #rec242453775 .t-col {
    margin-bottom: 30px;
  }
}

@media (max-width: 1500px) {
    #rec242453775 .t-container {
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    #rec242453775 .t-col {
        max-width: 46%;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 750px) {
    #rec242453775 .t-col {
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
    }

    #rec242453775 .t-container {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 560px) {
  #rec242453775 .t-name {
    font-size: 30px !important;
  }
  
  #rec242453775 .t-col {
    margin-bottom: 30px;
  }
  
  #rec242453775 .t820__bottommargin {
    margin-bottom: 5px;
  }
  
  #rec242453775 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
}

/*Мы предлагаем*/

#rec242669264 .t858 {
    display: flex;
    width: 100%;
    max-width: 1780px;
    padding: 0 30px;
    margin: 0 auto;
    box-sizing: border-box;
}

#rec242669264 .t-section__container {
    max-width: 620px;
    margin: 0;
}

#rec242669264 .t-section__container .t858 .t-section__title {
      text-align: left;
}

#rec242669264 .t-section__container .t-col {
    margin: 0;
}

#rec242669264 .t-container:last-child {
    max-width: 900px;
    flex-shrink: 0;
    margin: 0;
}

#rec242669264 .t-container:last-child .t-col {
    max-width: 50%;
    margin: 0;
}

#rec242669264 .t-section__topwrapper {
    margin-bottom: 0;
    margin-top: 30px;
    text-align: left;
}

#rec242669264 .t-title_xs {
    font-size: 48px;
}

@media (max-width: 1500px) {
    #rec242669264 .t858 {
        display: block;
    }
    
    #rec242669264 .t-container:last-child {
        margin: 0 auto;
    }
    
    #rec242669264 .t-section__container {
        margin: 0 auto;
    }
    
    #rec242669264 .t-section__topwrapper {
        text-align: center;
    }
}

@media (max-width: 960px) {
    #rec242669264 .t858__row {
        display: flex;
    }
    
    #rec242669264 .t-section__topwrapper {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    #rec242669264 .t858__img {
        margin-bottom: -35px !important;
    }

    #rec242669264 .t858__row {
        margin-top: 0 !important;
    }

    #rec242669264 .t-col {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #rec242669264 .t858__col {
        margin-bottom: 0 !important;
    }

    #rec242669264 .t858__bottommargin {
        margin-bottom: 0 !important;
    }

    #rec242669264 .t-title {
        font-size: 36px !important;
        line-height: 48px !important;
    }
}

@media (max-width: 730px) {
     #rec242669264 .t858__row {
        flex-direction: column;
    }
    
    #rec242669264 .t858__wrap {
        padding: 0;
    }
    
    #rec242669264 .t-container:last-child .t-col {
        margin: 0 0 40px 0 !important;
        width: 100%;
        max-width: 100%;
    }
    
    #rec242669264 .t858__img {
    padding-bottom: 60px!important;
    }
}

@media (max-width: 530px) {

    #rec242669264 .t-title {
        font-size: 28px !important;
        line-height: 40px !important;
    }
}

@media (max-width: 480px) {
    #rec242669264 {
        padding-top: 20px !important;
        padding-bottom: 30px !important;
    }
}

/*Карьера-Наша команда*/

#rec242098575 .t843__imgwrapper {
    max-width: 630px;
}

#rec242098575 .t843__textwrapper {
    background-color: #f7f7f7;
}

#rec242098575 .t843__blockimg {
    background-size: cover;
}

#rec242098575 .t-col {
    margin: 0;
}

#rec242098575 .t-col_6 {
    max-width: 580px;
}

#rec242098575 .t843__textwrapper {
    padding: 0 100px;
    max-width: 380px !important;
}

#rec242098575 .t843__separator {
    display: none;
}

#rec242098575 .t-section__container {
    display: none;
}

#rec242098575 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Наша команда в карьере */

#rec242174129 .t480__uptitle {
    display: none;
}

#rec242174129 .t480__line {
    display: none;
}

#rec242174129 .t-col_6 {
    max-width: 960px;
}

#rec242174129 .t-col {
    margin-left: 0;
    margin-right: 0;
}

#rec242174129 .t-container {
    max-width: 1920px;
    display: flex;
    flex-wrap: nowrap;
}

#rec242174129 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#rec242174129 .t-margin_auto {
    text-align: left;
    padding: 0 10px;
}

#rec242174129 .t480__blockimg {
    max-height: 600px;
}

@media (max-width: 1200px) {
  #rec242174129 .t-container {
    flex-direction: column;
  }
  
  #rec242174129 .t480__title {
    font-size: 40px !important;
    margin-bottom: 8px;
  }
  
  #rec242174129 .t480__textwrapper {
      height: auto !important;
      padding: 10px 0;
  }
  
  #rec242174129 .t480__descr {
      max-width: 100% !important;
      margin: 0 auto;
  }
  
      #rec242174129 .t-col {
        margin-left: auto;
        margin-right: auto;
    }

    #rec242174129 .t480__title {
        max-width: 350px !important;
    }

    #rec242174129 .t480__title {
        margin-bottom: 20px !important;
        text-align: center;
    }

    #rec242174129 {
        padding-bottom: 30px !important;
    }

    #rec242174129 .t480__top {
        margin-bottom: 40px !important;
    }
    
    #rec242174129 .t480__blockimg {
        max-width: 100%;
        height: calc((100vw - 40px)*600/960) !important;
    }
}

@media (max-width: 960px) {
    #rec242174129 .t-title_xs {
        line-height: 1.23 !important;
    }
}

@media (max-width: 560px) {
  #rec242174129 .t480__title {
    font-size: 32px !important;
    margin-bottom: 0;
  }
  
  #rec242174129 .t480__top  {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  #rec242174129 .t480__title {
    font-size: 28px !important;
    margin-bottom: 0;
  }
  
  #rec242174129 .t480__descr {
    margin-top: 15px;
  }
  
    #rec242174129 .t480__top {
        margin-bottom: 20px !important;
    }
}

/*Наши офисы*/

#rec242108275 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-sizing: border-box;
    min-height: 600px;
}

#rec242108275 .t-section__container {
    display: none;
}

#rec242108275 .t-col_6 {
    max-width: 960px;
}

#rec242108275 .t-col {
    margin-left: 0;
    margin-right: 0;
}

#rec242108275 .t908__flex-wrapper {
    max-width: 1920px;
    display: flex;
    flex-wrap: nowrap;
    min-height: 600px;
}

#rec242108275 .t-col_6 {
    width: 50%;
}

#rec242108275 .t908__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

#rec242108275 .t-container {
    max-width: 1920px;
}

#rec242108275 .t908__tablewrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 565px;
}

#rec242108275 .t908__textwrapper {
    padding: 0;
}

#rec242108275 .t908__item {
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border-left: 3px solid #EDEDED;
    border-radius: 2px !important;
}

#rec242108275 .t908__item_active {
    border-left: 3px solid #D32336 !important;
}

#rec242108275 .t908__cell:before {
    content: "Наши офисы";
    position: relative;
    top: -30px;
    left: -30px;
    font-size: 48px;
    line-height: 61px;
    color: #221F1F;
    font-weight: 500;
}

#rec242108275 .t908__descr:before {
    content: url("https://static.tildacdn.com/tild3063-3932-4832-a639-643836623766/Address.svg");
    position: relative;
    top: 5px;
}

#rec242108275 .t908__cell::before {
    font-family: 'GothamPro';
    font-weight: 500;
    left: 0;
}

#rec242108275 .t908__descr {
    padding-left: 10px;
}

#rec242108275 .t908__descr:before {
    right: 10px;
}

#rec242108275 .t908__item {
    margin-bottom: 0 !important;
}

#rec242108275 .t908__item {
    padding-bottom: 15px !important;
    padding-top: 15px !important;
}

#rec242108275 .t908__item {
    border-color: #f7f7f7;
}

#rec242108275 .t908__item {
    border-left: 3px solid #EDEDED !important;
}

#rec242108275 .t908__item_active {
    border-left: 3px solid #D32336 !important;
}

@media (max-width: 1200px) {
  #rec242108275 .t908__item {
    padding-bottom: 10px !important;
    padding-top: 10px !important;
    max-width: 465px;
  }
  
  #rec242108275 .t908__img {
      max-width: 100%;
      object-fit: unset;
      height: auto;
  }
  
  #rec242108275 .t908__cell {
    padding: 50px 0;
    width: 100%;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
  }
  
  #rec242108275 .t908__flex-wrapper {
      flex-direction: column;
  }
  
  #rec242108275 .t-col_6 {
      width: 100%;
  }
  
  #rec242108275 .t908__box-img {
    order: 1;
  }
  
  #rec242108275 .t908__box-text {
    order: 2;
  }
  
  #rec242108275 .t908__tablewrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  
  
  #rec242108275 .t908__cell:before {
    font-size: 40px;
    line-height: 56px;
    top: -10px;
    left: -15px;
    text-align: center;
  }
  
    #rec242108275 .t-col {
        margin-left: auto;
        margin-right: auto;
    }

    #rec242108275 .t908__tablewrapper {
        max-width: 960px;
    }
}

@media (max-width: 560px) {
  #rec242108275 .t908__cell:before {
    font-size: 32px;
    line-height: 44px;
  }
  
  #rec242108275 .t908__tablewrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  #rec242108275 .t908__cell:before {
    font-size: 28px;
    line-height: 36px;
    left: 0;
  }
  
  #rec242108275 .t908__cell {
    padding-left: 0;
    padding-top: 30px;
  }
  
  #rec242108275 .t908__item {
      padding: 10px 0 10px 20px !important;
  }
  
  #rec242108275 .t908__descr,
  #rec242108275 .t908__heading {
      font-size: 16px !important;
  }
}

/* Контакты */

.main-contacts {
    display: flex;
    width: 100%;
    max-width: 1780px;
    padding: 0 30px;
    margin: 0 auto 120px auto;
    box-sizing: border-box;
    font-family: "Roboto";
}

#rec242850403, 
#rec242951252,
#rec242951248 {
    flex-grow: 1;
}

#rec241749231 {
    width: 265px;
    flex-shrink: 0;
    margin: 0 60px 0 0;
    border-right: 1px solid #E0E0E0;
}

#rec241749231 .t397__wrapper {
    display: flex;
    flex-direction: column;
}

#rec241749231 .t397__tab {
    width: 100%;
    border-bottom: none !important;
    margin: 0 0 20px 0;
}

#rec241749231 .t397__tab_active {
    background-color: rgba(211,35,54,0.05);
    position: relative;
}

#rec241749231 .t397__tab_active {
    background-color: #F7F7F7;
    position: relative;
}

#rec241749231 .t397__tab_active:before {
    content: "";
    position: absolute;
    right: -2px;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #D32336;
}

#rec241749231 .t397__title {
    padding: 7px 10px 7px 0;
}

/* Заголовок и хлебные крошки в контактах */

#rec242957789 .t-col,
#rec242957789 .t-container,
#rec242957834 .t-col,
#rec242957834 .t-container {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
}

#rec242957789 .t-container,
#rec242957834 .t-container {
    padding: 0 30px;
}

#rec242957834 .t758__link-item__wrapper,
#rec241343039 .t758__link-item__wrapper {
    padding: 0 10px 0 0 !important;
}

/* Контакты внутри карты */

.custom-map {
    width: 100%;
    height: 590px;
    position: relative;
}

.custom-map__contacts {
    position: absolute;
    width: 530px;
    top: 50%;
    margin-top: -105px;
    left: 100px;
    background-color: #fff;
    padding: 15px 34px;
    z-index: 99;
    box-sizing: border-box;
}

.custom-map__item {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #221F1F !important;
}

.custom-map__icon {
    display: block;
    margin: 0 20px 0 0;
}

@media (max-width: 1780px) {
    .custom-map__contacts {
        width: 400px;
        left: 5%;
    }
}

@media (max-width: 1400px) {
    .main-contacts {
        flex-direction: column;
        margin: 0 0 30px 0;
    }
    
    #rec241749231 {
        width: 100%;
        margin: 0 0 40px 0;
        border-right: unset;
        border-bottom: 1px solid #E0E0E0;
    }
    
    #rec241749231 .t397__wrapper {
        flex-direction: row;
    }
    
    #rec241749231 .t397__tab_active:before {
        bottom: -1px;
        top: unset;
        left: 0;
        width: 100%;
        height: 1px;
    } 
    
    #rec241749231 .t397__tab {
        margin: 0;
        max-width: 240px;
    }
    
    #rec241749231 .t397__col,
    #rec241749231 .t-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important; 
    }
    
    #rec241749231 .t397__title {
        font-size: 20px !important;
        line-height: 1.35;
        white-space: nowrap;
        font-family: "GothamPro";
        font-weight: 500;
        padding: 0 20px 20px 20px;
        text-align: center;
    }
    
    #rec241749231 .t397 .t-align_left .t397__tab_active:after {
        display: none;
    }
    
    #rec241749231 .t397__tab_active {
        background-color: unset;
    }
}

@media (max-width: 1000px) {
    .custom-map__contacts {
        top: 20px;
        margin-top: unset;
        left: 50px;
        padding: 15px;
    }
    
    .custom-map__item {
        margin: 20px 0;
    }
}

@media (max-width: 960px) {
    .t397__wrapper_mobile {
        display: none;
    }
}

@media (max-width: 730px) { 
    .main-contacts,
    #rec242957789 .t-container,
    #rec242957834 .t-container {
        padding: 0 20px;
    }
    
    #rec241749231 .t397__title {
        font-size: 16px !important;
        padding: 0 10px 10px 10px;
    }
}

@media (max-width: 600px) {
    .custom-map__contacts {
        padding: 0;
        left: 0;
        width: calc(100vw - 40px);
        top: -160px;
    }
    
    .custom-map {
        height: 400px;
        margin-top: 160px;
    }
    
        #rec241749231 {
        margin: 0;
    }
}

@media (max-width: 400px) {
        #rec241749231 .t397__title {
        font-size: 14px !important;
        padding: 0 5px 10px 5px;
    }
}

/*Pop-up форма*/

 #rec242789193 .t-width_6 {
     max-width: 567px;
 }

#rec242789193 .t702__wrapper {
    padding: 60px;
}

#rec242789193 .t-input-group {
    margin-bottom: 30px;
}

#rec242789193 .t-input {
    height: 48px;
}

#rec242789193 .t702__title {
    text-align: left;
}

#rec242789193 .t-popup__close,
#rec242789193 .t-popup__close-icon {
    width: 36px !important;
    height: 36px !important;
}

#rec242789193 .t-text {
    color: #828282 !important;
}

#rec242789193 .t-submit {
    text-transform: uppercase;
}

#rec242789193 .t-form__errorbox-middle {
    display: none;
}

#rec242789193 .t-input:-moz-placeholder {
    color: #221F1F !important;
    opacity: 1;
}

#rec242789193 .t-input::-moz-placeholder {
    color: #221F1F !important;
    opacity: 1;
}

#rec242789193 .t-input:-ms-input-placeholder {
    color: #221F1F !important;
    opacity: 1;
}

#rec242789193 .t-input::-webkit-input-placeholder {
    color: #221F1F !important;
    opacity: 1;
}

#rec242789193 .t-input::placeholder {
    color: #221F1F !important;
    opacity: 1;
}

@media (max-width: 560px) {
    #rec242789193 .t-popup__close {
        top: 20px;
        right: 0;
        left: unset;
        background-color: #ffffff;
    }
    
    #rec242789193 .t-popup__close, #rec242789193 .t-popup__close-icon {
        width: 30px !important;
        height: 30px !important;
    }
    
    #rec242789193 .t702__wrapper {
        padding: 20px;
    }
}

/*Pop-up инфо*/

#rec242829805 .t390__descr {
    max-width: 395px;
}

#rec242829805 .t390__btn {
    font-size: 16px;
}

#rec241531430 .t-cover__carrier {
    height: 1000px !important;
    background-position: center right;
}

#rec241531430 .t-input:-moz-placeholder {
    color: #221F1F !important;
    opacity: 1;
}

#rec241531430 .t-input::-moz-placeholder {
    color: #221F1F !important;
    opacity: 1;
}

#rec241531430 .t-input:-ms-input-placeholder {
    color: #221F1F !important;
    opacity: 1;
}

#rec241531430 .t-input::-webkit-input-placeholder {
    color: #221F1F !important;
    opacity: 1;
}

#rec241531430 .t-input::placeholder {
    color: #221F1F !important;
    opacity: 1;
}

#rec241531430 .t-submit {
    text-transform: uppercase;
}

#rec241531430 .t-form__errorbox-middle {
    display: none;
}

#rec241531430 .t-form__submit {
    margin-top: 0 !important;
}

#rec241531430 .t-input-group {
    margin-bottom: 25px;
}

@media (max-width: 1700px) {
    #rec241531430 .t-container {
        margin-left: 0;
    }
}

@media (max-width: 1450px) {
    #rec241531430 .t-cover__carrier {
        background-position: center left;
    }

    #rec241531430 .t698__mainblock {
        margin-left: auto;
    }

    #rec241531430 .t-container {
        margin-left: auto;
    }
}

/* Блок вакансий */

.vacancy,
.vacancy * {
    box-sizing: border-box;
}

.vacancy {
    width: 100%;
    max-width: 1780px;
    padding: 90px 30px;
    box-sizing: border-box;
    font-family: "Roboto";
    color: #828282;
    margin: 0 auto;
}

.vacancy__title {
    font-family: "GothamPro";
    font-size: 48px;
    line-height: 61px;
    font-weight: 500;
    margin: 0 0 90px 0;
    color: #221F1F;
}

.vacancy__item {
    border-bottom: 1px solid #E0E0E0;
}

.vacancy__content {
    padding: 0 0 60px 0;
    max-width: 1340px;
}

.vacancy__subtitle {
    color: #221F1F;
    padding: 30px 0 30px 44px;
    font-size: 24px;
    line-height: 36px;
    font-family: "GothamPro";
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

.vacancy__subtitle:after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    background-size: cover;
    background-image: url("https://static.tildacdn.com/tild6234-3133-4465-a533-623933333031/navigate_next.svg");
    left: 0;
    top: 30px;
    transition: 0.3s;
}

.vacancy__text {
    margin: 0 0 30px 0;
}

.vacancy__text p {
    margin: 0 0 10px 0;
}

.vacancy__units {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 10px 0 !important;
}

.vacancy__unit {
    margin: 0 60px 20px 0;
}

.vacancy__unit-main {
    color: #221F1F;
}

.vacancy__buttons {
    display: flex;
}

.vacancy__button {
    width: 100%;
    max-width: 260px;
    height: 54px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px 0 0;
    background-color: #EDEDED;
    color: #828282 !important;
    text-decoration: none;
    padding: 0 10px;
}

.vacancy__button--send {
    background-color: #D32336;
    color: #ffffff !important;
}

.vacancy__button--send:hover {
    box-shadow: 0 20px 40px rgba(211, 35, 54, 0.2);
    transition: 0.3s;
}

.accordion-item-content {
    display: none;
}

.accordion-item.show .accordion-item-content {
    display: block;
}

.accordion-item.show .accordion-item-header:after {
    transform: rotate(90deg);
    transition: 0.3s;
}

@media (max-width: 960px) {
    .vacancy__title {
        font-size: 30px !important;
        line-height: 1.5 !important;
        margin: 0 0 60px 0;
    }

    .vacancy {
        padding: 30px 30px;
    }
}

@media (max-width: 730px) {
    .vacancy {
        padding: 30px 20px;
    }

    .vacancy__subtitle {
        font-size: 20px;
        padding: 30px 0 30px 36px;
        line-height: 26px;
    }

    .vacancy__subtitle:after {
        top: 24px;
    }

    .vacancy__content {
        padding: 0 0 30px 0;
    }

    .vacancy__button {
        margin: 0 14px 0 0;
    }
}

@media (max-width: 480px) {
    .vacancy__title {
        margin: 0 0 30px 0;
    }

    .vacancy__buttons {
        flex-direction: column;
    }

    .vacancy__button {
        max-width: 100%;
        margin: 0 0 10px 0;
    }

    .vacancy__units {
        flex-direction: column;
        align-items: flex-start;

    }

    .vacancy__unit {
        margin: 0 0 20px 0;
    }
}

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

@media (max-width: 960px) {
    #rec242957789 .t-title,
    #rec241249835 .t-title,
    #rec239939605 .t-title,
    #rec242657144 .t-title,
    #rec242974041 .t-title,
    #rec241531430 .t-title,
    #rec241343606 .t-title {
        font-size: 30px !important;
        line-height: 1.5 !important;
    }
}

/*Цифры в МФЦ*/

#rec255906010 {
    background-color: #EDEDED;
}

#rec255906010 .t-name {
    border-left: 2px solid #E0E0E0;
    padding-left: 30px;
}

#rec255906010 .t-descr {
    padding-left: 30px;
}

#rec255906010 .t-container {
    box-sizing: border-box;
    max-width: 1780px;
    padding: 0 10px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

#rec255906010 .t-descr {
    padding-left: 34px;
}

#rec255906010 .t-section__container {
    display: none !important;
}

#rec255906010 {
    padding-top: 65px !important;
    padding-bottom: 35px !important;
}

#rec255906010 .t-name {
    white-space: nowrap;
}

#rec255906010 .t-cell:first-child {
    display: none;
}

#rec255906010 .t820__textwrapper {
    padding-left: 0;
}
 
#rec255906010 .t-col {
    max-width: 320px;
    width: 100%;
}

#rec255906010 .t820__bottommargin {
    margin: 0;
}

@media (max-width: 1500px) {
  #rec255906010 .t-container {
    flex-wrap: wrap;
    margin-left: 50px;
    margin-right: 50px;
  }
  
  #rec255906010 .t-col {
    margin-bottom: 30px;
  }
}

@media (max-width: 1500px) {
    #rec255906010 .t-container {
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    #rec255906010 .t-col {
        max-width: 46%;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 750px) {
    #rec255906010 .t-col {
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
    }

    #rec255906010 .t-container {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 560px) {
  #rec255906010 .t-name {
    font-size: 30px !important;
  }
  
  #rec255906010 .t-col {
    margin-bottom: 30px;
  }
  
  #rec255906010 .t820__bottommargin {
    margin-bottom: 5px;
  }
  
  #rec255906010 {
    padding-top: 35px !important;
    padding-bottom: 20px !important;
  }
}

/*Цифры в Порталах*/

#rec258596665 {
    background-color: #EDEDED;
}

#rec258596665 .t-name {
    border-left: 2px solid #E0E0E0;
    padding-left: 30px;
}

#rec258596665 .t-descr {
    padding-left: 30px;
}

#rec258596665 .t-container {
    box-sizing: border-box;
    max-width: 1780px;
    padding: 0 10px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

#rec258596665 .t-descr {
    padding-left: 34px;
}

#rec258596665 .t-section__container {
    display: none !important;
}

#rec258596665 {
    padding-top: 65px !important;
    padding-bottom: 35px !important;
}

#rec258596665 .t-name {
    white-space: nowrap;
}

#rec258596665 .t-cell:first-child {
    display: none;
}

#rec258596665 .t820__textwrapper {
    padding-left: 0;
}
 
#rec258596665 .t-col {
    max-width: 340px;
    width: 100%;
}

#rec258596665 .t820__bottommargin {
    margin: 0;
}

@media (max-width: 1500px) {
  #rec258596665 .t-container {
    flex-wrap: wrap;
    margin-left: 50px;
    margin-right: 50px;
  }
  
  #rec258596665 .t-col {
    margin-bottom: 30px;
  }
}

@media (max-width: 1500px) {
    #rec258596665 .t-container {
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    #rec258596665 .t-col {
        max-width: 46%;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 750px) {
    #rec258596665 .t-col {
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
    }

    #rec258596665 .t-container {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 560px) {
  #rec258596665 .t-name {
    font-size: 30px !important;
  }
  
  #rec258596665 .t-col {
    margin-bottom: 30px;
  }
  
  #rec258596665 .t820__bottommargin {
    margin-bottom: 5px;
  }
  
  #rec258596665 {
    padding-top: 35px !important;
    padding-bottom: 20px !important;
  }
}

/*Цифры в ЭСРН*/

#rec259247868 {
    background-color: #EDEDED;
}

#rec259247868 .t-name {
    border-left: 2px solid #E0E0E0;
    padding-left: 30px;
}

#rec259247868 .t-descr {
    padding-left: 30px;
}

#rec259247868 .t-container {
    box-sizing: border-box;
    max-width: 1780px;
    padding: 0 10px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

#rec259247868 .t-descr {
    padding-left: 34px;
}

#rec259247868 .t-section__container {
    display: none !important;
}

#rec259247868 {
    padding-top: 65px !important;
    padding-bottom: 35px !important;
}

#rec259247868 .t-name {
    white-space: nowrap;
}

#rec259247868 .t-cell:first-child {
    display: none;
}

#rec259247868 .t820__textwrapper {
    padding-left: 0;
}
 
#rec259247868 .t-col {
    max-width: 340px;
    width: 100%;
}

#rec259247868 .t820__bottommargin {
    margin: 0;
}

@media (max-width: 1500px) {
  #rec259247868 .t-container {
    flex-wrap: wrap;
    margin-left: 50px;
    margin-right: 50px;
  }
  
  #rec259247868 .t-col {
    margin-bottom: 30px;
  }
}

@media (max-width: 1500px) {
    #rec259247868 .t-container {
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    #rec259247868 .t-col {
        max-width: 46%;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 750px) {
    #rec259247868 .t-col {
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
    }

    #rec259247868 .t-container {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 560px) {
  #rec259247868 .t-name {
    font-size: 30px !important;
  }
  
  #rec259247868 .t-col {
    margin-bottom: 30px;
  }
  
  #rec259247868 .t820__bottommargin {
    margin-bottom: 5px;
  }
  
  #rec259247868 {
    padding-top: 35px !important;
    padding-bottom: 20px !important;
  }
}

/*Цифры в Управлении имущественными активами*/

#rec294482892 {
    background-color: #EDEDED;
}

#rec294482892 .t-name {
    border-left: 2px solid #E0E0E0;
    padding-left: 25px;
}

#rec294482892 .t-descr {
    padding-left: 25px;
}

#rec294482892 .t-container {
    box-sizing: border-box;
    max-width: 1780px;
    padding: 0 10px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

#rec294482892 .t-descr {
    padding-left: 30px;
}

#rec294482892 .t-section__container {
    display: none !important;
}

#rec294482892 {
    padding-top: 65px !important;
    padding-bottom: 35px !important;
}

#rec294482892 .t-name {
    white-space: nowrap;
}

#rec294482892 .t-cell:first-child {
    display: none;
}

#rec294482892 .t820__textwrapper {
    padding-left: 0;
}
 
#rec294482892 .t-col {
    max-width: 320px;
    width: 100%;
}

#rec294482892 .t820__bottommargin {
    margin: 0;
}

@media (max-width: 1500px) {
  #rec294482892 .t-container {
    flex-wrap: wrap;
    margin-left: 40px;
    margin-right: 40px;
  }
  
  #rec294482892 .t-col {
    margin-bottom: 30px;
  }
}

@media (max-width: 1500px) {
    #rec294482892 .t-container {
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    #rec294482892 .t-col {
        max-width: 46%;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 750px) {
    #rec294482892 .t-col {
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
    }

    #rec294482892 .t-container {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 560px) {
  #rec294482892 .t-name {
    font-size: 30px !important;
  }
  
  #rec294482892 .t-col {
    margin-bottom: 30px;
  }
  
  #rec294482892 .t820__bottommargin {
    margin-bottom: 5px;
  }
  
  #rec294482892 {
    padding-top: 35px !important;
    padding-bottom: 20px !important;
  }
}

/* МФЦ - Новости */

#rec258478709 {
    background-image: url("https://static.tildacdn.com/tild6365-3135-4161-a632-623062616433/news-bg.svg");
    background-size: cover;
}

#rec258478709 .t915 .t-section__title {
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 30px 0;
}

#rec258478709 .t915 .t-section__descr {
    max-width: 620px;
    font-size: 16px;
    line-height: 28px;
    color: #828282;
}

#rec258478709 .t915__container {
    display: flex;
}

@media (max-width: 960px) {
    #rec258478709 .t915__container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #rec258478709 .t-feed__grid-col {
        margin-bottom: 30px;
    }
}

/* Цифровая платформа - Новости */

#rec255907286 {
    background-image: url("https://static.tildacdn.com/tild6365-3135-4161-a632-623062616433/news-bg.svg");
    background-size: cover;
}

#rec255907286 .t915 .t-section__title {
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 30px 0;
}

#rec255907286 .t915 .t-section__descr {
    max-width: 620px;
    font-size: 16px;
    line-height: 28px;
    color: #828282;
}

#rec255907286 .t915__container {
    display: flex;
}

@media (max-width: 960px) {
    #rec255907286 .t915__container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #rec255907286 .t-feed__grid-col {
        margin-bottom: 30px;
    }
}

/* Порталы - Новости */

#rec258596670 {
    background-image: url("https://static.tildacdn.com/tild6365-3135-4161-a632-623062616433/news-bg.svg");
    background-size: cover;
}

#rec258596670 .t915 .t-section__title {
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 30px 0;
}

#rec258596670 .t915 .t-section__descr {
    max-width: 620px;
    font-size: 16px;
    line-height: 28px;
    color: #828282;
}

#rec258596670 .t915__container {
    display: flex;
}

@media (max-width: 960px) {
    #rec258596670 .t915__container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #rec258596670 .t-feed__grid-col {
        margin-bottom: 30px;
    }
}

/* ЭСРН - Новости */

#rec259247873 {
    background-image: url("https://static.tildacdn.com/tild6365-3135-4161-a632-623062616433/news-bg.svg");
    background-size: cover;
}

#rec259247873 .t915 .t-section__title {
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 30px 0;
}

#rec259247873 .t915 .t-section__descr {
    max-width: 620px;
    font-size: 16px;
    line-height: 28px;
    color: #828282;
}

#rec259247873 .t915__container {
    display: flex;
}

@media (max-width: 960px) {
    #rec259247873 .t915__container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #rec259247873 .t-feed__grid-col {
        margin-bottom: 30px;
    }
}

/* АРМ - Новости */

#rec286499167 {
    background-image: url("https://static.tildacdn.com/tild6365-3135-4161-a632-623062616433/news-bg.svg");
    background-size: cover;
}

#rec286499167 .t915 .t-section__title {
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 30px 0;
}

#rec286499167 .t915 .t-section__descr {
    max-width: 620px;
    font-size: 16px;
    line-height: 28px;
    color: #828282;
}

#rec286499167 .t915__container {
    display: flex;
}

@media (max-width: 960px) {
    #rec286499167 .t915__container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #rec286499167 .t-feed__grid-col {
        margin-bottom: 30px;
    }
}

/* Управление имущественными активами - Новости */

#rec287019681 {
    background-image: url("https://static.tildacdn.com/tild6365-3135-4161-a632-623062616433/news-bg.svg");
    background-size: cover;
}

#rec287019681 .t915 .t-section__title {
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 30px 0;
}

#rec287019681 .t915 .t-section__descr {
    max-width: 620px;
    font-size: 16px;
    line-height: 28px;
    color: #828282;
}

#rec287019681 .t915__container {
    display: flex;
}

@media (max-width: 960px) {
    #rec287019681 .t915__container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #rec287019681 .t-feed__grid-col {
        margin-bottom: 30px;
    }
}

/* Мобильное приложение - Новости */

#rec343412776 {
    background-image: url("https://static.tildacdn.com/tild6365-3135-4161-a632-623062616433/news-bg.svg");
    background-size: cover;
}

#rec343412776 .t915 .t-section__title {
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 30px 0;
}

#rec343412776 .t915 .t-section__descr {
    max-width: 620px;
    font-size: 16px;
    line-height: 28px;
    color: #828282;
}

#rec343412776 .t915__container {
    display: flex;
}

@media (max-width: 960px) {
    #rec343412776 .t915__container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #rec343412776 .t-feed__grid-col {
        margin-bottom: 30px;
    }
}

/* Информационная безопасность - Статьи */

#rec313929285 {
    background-image: url("https://static.tildacdn.com/tild6365-3135-4161-a632-623062616433/news-bg.svg");
    background-size: cover;
}

#rec313929285 .t915 .t-section__title {
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 30px 0;
}

#rec313929285 .t915 .t-section__descr {
    max-width: 620px;
    font-size: 16px;
    line-height: 28px;
    color: #828282;
}

#rec313929285 .t915__container {
    display: flex;
}

@media (max-width: 960px) {
    #rec313929285 .t915__container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #rec313929285 .t-feed__grid-col {
        margin-bottom: 30px;
    }
}