

/* Start:/bitrix/templates/trusted23/pages/landing/trusted_landing.css?177624520411050*/
.body_content {
    padding-top: 28px;
}

.hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.hero_item {
    flex-basis: 0;
    flex-grow: 1;
    max-height: 592px;
    height: 592px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

.white_card {
    background: #fff;
}

.item_content {
    padding: 0 64px;
    padding-top: 82px;
}

.white_card h1 {
    font-weight: 500;
    font-size: 44px;
    line-height: 58px;
    letter-spacing: -0.64px;
}

.white_card p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -1%;
    padding-top: 24px;
}

.btn_hero {
    min-width: 88px;
    width: 245px;
    height: 52px;
    background: #B52630;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin-top: 48px;
}

.btn_hero:hover {
    color: #fff;
    background: #992028;
}

.hero_img {
    background: url(/bitrix/templates/trusted23/pages/landing/images/hero.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.header h2 {
    font-weight: 400;
    font-size: 44px;
    line-height: 58px;
    color: #1D1D1F;
}

.header p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -1%;
    color: #6B7280;
}

.products {
    display: flex;
    flex-direction: column;
}

.items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.buttons_items {
    display: flex;
    margin-top: 40px;
    gap: 16px;
}

.btn_items {
    min-width: 88px;
    height: 48px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 16px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.16px;
    color: #1D1D1F;
    background: #fff;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn_items:hover {
    border: 1px solid #1D1D1F;
}

.btn_items.active {
    background: #313133;
    color: #fff;
}

.items_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 16px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    min-height: 200px;
    height: 341px;
    position: relative;
    transition: 0.5s ease-out;
}

.card:hover {
    cursor: pointer;
    transform: translate(0px, -8px);
    background: #E9E9EB;
}

.card:hover svg .blacksvg {
    stroke: #313133;
    fill: #313133;
}

.card:hover svg .whitesvg {
    stroke: #fff;
}

.head_img img {
    max-width: 64px;
    max-height: 64px;
}

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

.card.soon {
    transition: none;
    pointer-events: none;
}

.card.soon:hover {
    cursor: default;
    transform: none;
    background: #fff;
}

.card.soon .badge {
    display: block;
    background: #D8D9E0;
    border-radius: 24px;
    padding: 6px 12px;
    color: #313133;
}

.card .badge {
    display: none;
}

.card_body {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card_body h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -1%;
    color: #1D1D1F;
}

.card_body p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #6B7280;
}

.card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
}

.card_footer span {
    color: #313133;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.16px;
}

.card_footer span:hover {
    color: #313133;
}

.card.soon .card_footer {
    display: none;
}

.items_container {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.hidden {
    display: none !important;
}

.items_container.fade-out {
    opacity: 0.7;
}

.items_container.fade-in {
    animation: fadeIn 0.5s ease-out 0.1s both;
}

@keyframes fadeIn {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

.btn_items {
    transition: all 0.3s ease;
}

.task {
    display: flex;
    gap: 24px;
}

.task .nav {
    flex: 0 0 33%;
}

.task .content_task {
    flex: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 32px;
}

.nav {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.nav_item {
    padding-left: 56px;
    position: relative;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    height: 56px;
    display: flex;
    align-items: center;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
}

.nav_item.active {
    background: #fff;
    border-radius: 100px;
    cursor: default;
    pointer-events: none;
}

.nav_item.active:hover {
    border: 1px solid #fff;
}

.nav_item:hover {
    border: 1px solid #1D1D1F;
}

.nav_item::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url("/bitrix/templates/trusted23/pages/landing/images/nav_icon.svg") center/contain no-repeat;
}

.head_task {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.head_task h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -1%;
    color: #1D1D1F;
}

.head_task p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #6B7280;
}

.content_task .task_body {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 16px;
}

.task_products {
    background: #E9E9EB;
    border-radius: 18px;
    padding: 32px;
    min-width: 310px;
}

.task_body h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -1%;
    color: #1D1D1F;
}

.badge_task {
    background: #D8D9E0;
    border-radius: 24px;
    padding: 6px 12px;
    height: 32px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #1D1D1F;
    border: 1px solid transparent;
}

.badge_task:hover {
    border: 1px solid #1D1D1F;
}

.task_products .list {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.task_left {
    display: flex;
    flex-direction: column;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #6B7280;
}

.task_left h4 {
    margin-top: 32px;
    padding-bottom: 16px;
}

.task_left ul {
    list-style-type: disc;
    margin-left: 32px;
}

.task_footer .btn_hero {
    width: 100%;
    justify-content: center;
    margin-top: 32px;
    cursor: pointer;
}

.reshenya_body {
    margin-top: 48px;
}

.reshenya_body h4 {
    color: #1D1D1F;
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
    letter-spacing: -1%;
    padding-bottom: 32px;
}

/* карточка */
.reshenya_body .card {
    height: 460px;
    position: relative;
    overflow: hidden;
    /* ВАЖНО — режет всё по радиусу */
    border-radius: 24px;
}

.reshenya_body .card_footer {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* показываем при hover */
.reshenya_body .card:hover .card_footer {
    opacity: 1;
    transform: translateY(0);
}

/* блок картинки */
.reshenya_body .head_img {
    width: 100%;
    height: 238px;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

/* картинка */
.reshenya_body .head_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: unset;
    max-height: unset;
    transition: 0.5s ease-out;
}

/* контент */
.reshenya_body .card_body {
    position: relative;
    z-index: 2;
    background: #fff;
    transition: 0.5s ease-out;
}

/* футер */
.reshenya_body .card_footer {
    z-index: 2;
    transition: transform 0.4s ease;
}

/* 🔥 эффект */
.reshenya_body .card:hover .card_body {
    transform: translateY(-40px);
    background: #E9E9EB;
}

.reshenya_body .card:hover .head_img img {
    border-radius: 24px;
    transform: translateY(-40px);
}

/* отключаем старый hover */
.reshenya_body .card:hover {
    transform: none;
}

.ready_body {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    gap: 24px;
}

.ready_body .ready {
    width: 100%;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -1%;
    color: #1D1D1F;
    padding: 32px;
    height: 190px;
    border-radius: 24px;
}

.ready_body .ready:hover {
    border-radius: 24px;
}

.ready p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #6B7280;
    padding-top: 16px;
}

@media (max-width: 768px) {
    .items_container {
        display: flex;
        flex-direction: column;
        column-gap: 24px;
        row-gap: 16px;
    }

    .ready_body {
        overflow: scroll;
        padding-bottom: 8px;
    }

    .ready {
        min-width: 336px;
        height: 150px !important;
    }

    .hero {
        flex-direction: column;
    }

    .white_card h1 {
        font-weight: 500;
        font-size: 38px;
        line-height: 50px;
        letter-spacing: -0.64px;
    }

    .white_card p {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -1%;
    }

    .item_content {
        padding: 0 32px;
        padding-top: 40px;
    }

    .hero_item {
        flex-basis: unset;
        max-height: 454px;
        height: 454px;
    }

    .buttons_items {
        overflow: scroll;
        white-space: nowrap;
        padding-bottom: 8px;
    }

    .btn_items {
        min-width: unset;
    }

    .task_body {
        flex-direction: column;
    }

    .task .nav {
        gap: 0;
    }

    .task .content_task {
        border-radius: 24px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .task .nav_item.active {
        border-radius: 24px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .task .nav_item.active::after {
        content: "";
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: url("/bitrix/templates/trusted23/pages/landing/images/arrow_top.svg") center/contain no-repeat;
    }

    .task .nav_item::after {
        content: "";
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: url("/bitrix/templates/trusted23/pages/landing/images/arrow_down.svg") center/contain no-repeat;
    }

    .fade-in {
        transition: opacity 0.5s ease-out;
    }

    .fade-out {
        transition: opacity 0.5s ease-out;
    }
}
/* End */


/* Start:/bitrix/templates/trusted23/components/bitrix/news.list/home_news/style.css?1682346378425*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

.news_company_item_first img{
    position: absolute;
    right: 0;
    top: 0;
    width: 100;
    height: 100%;
    max-width: 340px;
    width: 100%;
    border-radius: 8px;
	object-fit: cover;
	width: 50%;
}

.mainpage .news_company_item_header {
    max-width: 340px;
}
/* End */
/* /bitrix/templates/trusted23/pages/landing/trusted_landing.css?177624520411050 */
/* /bitrix/templates/trusted23/components/bitrix/news.list/home_news/style.css?1682346378425 */
