

/* Start:/local/components/digt/trusted.products/templates/.default/style.css?17804810382798*/
.category-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.category-btn {
    padding: 13px 20px;
    background: #E4E4E7;
    line-height: 22px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
    max-width: 342px;
    border-radius: 8px;
    letter-spacing: -0.01em;
    border: none;
}

.category-btn:hover {
    background: #E9E9EB;
}

.category-btn.active {
    background: #B5262F;
    color: white;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.product-card {
    border-radius: 8px;
    padding: 16px;
    transition: 0.15s ease-out;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
    min-height: 184px;
}

.product-card:hover {
    transform: scale(1.015);
    background: #E9E9EB;
    cursor: pointer;
}

.product-card:hover svg .blacksvg {
    fill: var(--black);
    stroke: var(--black);
}

.product-card h3 {
    font-weight: 450;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #1D1D1F;
}

.product-card p {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    flex-grow: 1;
    max-width: 90%;
}

.product-card a {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
}

.product-card a:hover {
    text-decoration: underline;
}

.section-header {
    padding-bottom: 40px;
}

.section-header h2 {
    font-weight: 450;
    font-size: 44px;
    line-height: 48px;
    letter-spacing: -0.03em;
    color: #1D1D1F;
}

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

.card-head {
    display: flex;
    gap: 20px;
    align-items: center;
}

.card-head img {
    max-width: 52px;
    max-height: 52px;
}

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

.card-content svg {
    align-self: flex-end;
}

@media (max-width: 1519px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-btn {
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .product-card{
        min-height: 196px;
    }

}

@media (max-width: 599px) {
    .products-container {
        display: flex;
        overflow: scroll;
    }

    .product-card h3 {
        font-size: 18px;
    }

    .category-buttons {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-card {
        min-width: 320px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header {
        padding-bottom: 28px;
    }
}
/* End */


/* Start:/local/components/digt/trusted.solutions/templates/.default/style.css?17804810387386*/
/* Solutions Component */

.solutions .header {
    margin-bottom: 40px;
}

.solutions .header h2 {
    color: #1a1a1a;
    font-weight: 450;
    font-size: 44px;
    line-height: 48px;
    letter-spacing: -0.03em;
}

.solutions .items {
    display: flex;
    flex-direction: column;
}

.solutions .buttons_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.solutions .btn_items {
    padding: 13px 20px;
    background: #E4E4E7;
    line-height: 22px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
    max-width: 342px;
    border-radius: 8px;
    letter-spacing: -0.01em;
    border: none;
}

.solutions .btn_items:hover {
    background: #E9E9EB;
}

.solutions .btn_items.active {
    background: #B5262F;
    color: white;
}

/* Containers */

.solutions .items_container {
    min-height: 400px;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.solutions .items_container.hidden {
    display: none;
}

.solutions .items_container.fade-in {
    animation: fadeIn 0.3s ease-in;
}

.solutions .items_container.fade-out {
    animation: fadeOut 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Navigation */

.solutions .nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 340px;
    width: stretch;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    height: fit-content;
}

.solutions .nav_item {
    color: #737376;
    font-weight: 450;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.01em;
    align-items: center;
    /*display: flex;*/
}

.solutions .nav_item:hover {
    color: #1D1D1F;
}

.solutions .nav_item.active {
    color: #1D1D1F;
}

.solutions .nav_item.active::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-top: 2px solid #1D1D1F;
    border-right: 2px solid #1D1D1F;
    transform: rotate(45deg);
    margin-right: 4px;
    vertical-align: middle;
    margin-top: -2px;
}

/* Content */

.solution_content {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    padding-bottom: 0;
}

.solutions .head_task {
    margin-bottom: 10px;
}

.solutions .head_task h3 {
    font-weight: 450;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.03em;
    color: #1D1D1F;
    padding-bottom: 32px;
}

.solutions .head_task p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.01em;
    color: #616163;
    margin: 0;
}

.solutions .solution_body {
    display: grid;
    gap: 40px;
    border-radius: 8px;
    margin: 24px 0;
}

.solutions .task_left h4 {
    font-weight: 450;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #1D1D1F;
    padding-bottom: 12px;
}

.solutions .task_left ul {
    padding-bottom: 12px;
}

.solutions .task_left li {
    font-size: 14px;
    color: #555555;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.solutions .task_left p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */

.solution_footer {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.solution_products {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    flex: 3;
    height: 192px;
    min-width: 804px;
}

.solution_products h4 {
    font-weight: 450;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    padding-bottom: 12px;
}

.solution_products li {
    font-size: 14px;
    color: #555555;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.solutions .task_left li:before,
.solution_products li:before {
    content: "";
    background-image: url("/local/components/digt/trusted.solutions/icons/marker.svg");
    width: 16px;
    height: 16px;
    margin-right: 8px;
    min-width: 14px;
    position: absolute;
    left: 0;
}

.solutions .solution_btn {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    flex: 1;
}

.solutions .btn_hero {
    padding: 12px 16px;
    background: #B5262F;
    line-height: 20px;
    cursor: pointer;
    font-size: 15px;
    max-width: 224px;
    border-radius: 8px;
    letter-spacing: -0.01em;
    border: none;
    width: 100%;
    color: #FFFFFF;
    transition: 0.15s ease-out;
    position: relative;
}

.solutions .btn_hero:hover {
    background-color: #992028;
    transform: scale(1.02);
}

.solutions .btn_hero:active {
    background: #B5262F;
    color: white;
}

/* Content States */

.solutions .content_task {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: stretch;
}

.solutions .content_task.hidden {
    display: none;
}

.solutions .content_task.fade-in {
    animation: fadeIn 0.3s ease-in;
}

.solutions .content_task.fade-out {
    animation: fadeOut 0.3s ease-out;
}

.btn_hero svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    bottom: 16px;
    right: 16px;
    position: absolute;
    transition: 0.15s ease-out;
}

.btn_hero svg path {
    stroke: #fff;
}

.btn_hero:hover svg path {
    stroke: #992028;
}

.btn_hero:hover svg .redblacksvg {
    fill: #fff;
    stroke: #fff;
}

/* Error */

.solutions-error {
    padding: 20px;
    background-color: #ffebee;
    color: #c62828;
    border-radius: 4px;
    font-size: 14px;
    margin: 20px 0;
}

@media (max-width: 1519px) {
    .solutions .btn_hero {
        width: 187px;
    }

    .solutions .content_task {
        max-width: 916px;
    }

    .solution_products {
        min-width: 721px;
    }

    .solutions .nav {
        display: none;
    }

    .solutions .buttons_items {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions .btn_items {
        max-width: 100%;
    }

    .solution_products {
        min-width: unset;
    }

    .solutions .content_task {
        width: 90%;
        min-width: 696px;
    }

    .solutions .content_task.hidden {
        display: flex;
    }

    .solution_content {
        min-height: 420px;
    }

    .solutions .items_container {
        overflow: scroll;
    }

    .solutions .header h2 {
        font-size: 40px;
    }

    .solutions .head_task h3 {
        font-size: 26px;
    }
}

@media (max-width: 799px) {
    .solutions .content_task {
        width: 90%;
        min-width: 540px;
    }

    .solution_content {
        min-height: 460px;
    }
}

@media (max-width: 599px) {
    .solutions .content_task {
        width: 90%;
        min-width: 316px;
    }

    .solution_content {
        min-height: 596px;
    }

    .solutions .buttons_items {
        grid-template-columns: repeat(1, 1fr);
    }

    .solution_footer {
        flex-direction: column;
    }

    .solutions .solution_btn {
        justify-content: center;
    }

    .solutions .btn_hero {
        max-width: unset;
        width: 100%;
        height: 160px;
    }

    .solution_products {
        min-height: 178px;
    }

    .solutions .header h2 {
        font-size: 32px;
    }

    .solutions .head_task h3 {
        font-size: 24px;
    }

    .solutions .header {
        margin-bottom: 28px;
    }
}
/* End */


/* Start:/local/components/digt/trusted.usefull/templates/.default/style.css?17804810382279*/
.reshenya_body {
    width: 100%;
}

#items_serv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
    transition: 0.15s ease-out;
}

.card:hover {
    transform: scale(1.015);
    cursor: pointer;
}

.head_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.head_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.card:hover .card_overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.card_body {
    position: relative;
    z-index: 3;
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFFFFF;
}

.card_body h2 {
    font-weight: 450;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.03em;
    color: #1D1D1F;
}

.card_body p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: #1D1D1F;
    max-width: 240px;
}

.reshenya_body h4 {
    font-weight: 450;
    font-size: 44px;
    line-height: 48px;
    letter-spacing: -0.03em;
    color: #1D1D1F;
    padding-bottom: 40px;
}

@media (max-width: 1519px) {
    .card_body p {
        max-width: 220px;
    }
}

@media (max-width: 1199px) {
    #items_serv {
        display: flex;
        flex-direction: column;
    }

    .card_body p {
        max-width: 296px;
    }

    .reshenya_body h4 {
        font-size: 40px;
    }

    .card_body h2 {
        font-size: 26px;
    }
}

@media (max-width: 599px) {
    .card_body {
        justify-content: flex-start;
        gap: 16px;
    }

    .reshenya_body h4 {
        font-size: 32px;
        padding-bottom: 28px;
    }

    .card_body h2 {
        font-size: 24px;
    }
}
/* 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 */
/* /local/components/digt/trusted.products/templates/.default/style.css?17804810382798 */
/* /local/components/digt/trusted.solutions/templates/.default/style.css?17804810387386 */
/* /local/components/digt/trusted.usefull/templates/.default/style.css?17804810382279 */
/* /bitrix/templates/trusted23/components/bitrix/news.list/home_news/style.css?1682346378425 */
