

/* Start:/local/css/elements/v2024/btn.ghost.css?1765539875343*/
.btn.btn-ghost{
    --button-color: var(--color-brand-primary);
    --button-background: transparent;
    /*--button-hover-background: var(--accent-a10);*/
    --button-hover-background: #f5f5f5;
}
.btn.btn-ghost.active{
    --button-color: white;
    --button-background: var(--color-brand-primary);
    --button-hover-background: #458366;
}

/* End */


/* Start:/local/bitrix/templates/.default/components/bitrix/news.list/catalog-our-projects/styles.css?17822084387427*/
.catalog-our-projects{
    --card-bg: #f1f1f1;
    padding-top: 12px;
    padding-bottom: 76px;
}
.catalog-our-projects h1{
    font-size: 32px;
    font-weight: 600;
}
.catalog-our-projects h2{
    font-size: 32px;
    font-weight: 600;
}
@media (min-width: 992px) {
    .catalog-our-projects{
        padding-top: 20px;

        background-image: url(https://www.gwd.ru/upload/medialibrary/8ef/8efbf14b9480b3ab9754119b4c9bb494.svg);
        background-size: 396px 262px;
        background-position: top 20px right;
        background-repeat: no-repeat;
    }
    .catalog-our-projects h1{
        font-size: 40px;
    }
}
@media (min-width: 1700px) {
    .catalog-our-projects{
        background-size: 451px 299px;
    }
    .catalog-our-projects h1{
        font-size: 44px;
    }
    .catalog-our-projects h2{
        font-size: 40px;
    }
}


.cat-top__header{
    margin-bottom: 12px;
}
.cat-top__description{
    margin-bottom: 32px;
}
@media(min-width: 992px) {
    .cat-top__header{
        margin-bottom: 20px;
    }
    .cat-top__description{
        margin-bottom: 36px;
    }
}
@media (max-width: 991px) {
    .cat-top .btn{
        width: 100%;
    }
}

.cat-sections{
    margin-top: 40px;
}
.cat-section{
    background-color: var(--card-bg);
    border-radius: 12px;

    display: flex;
    flex-flow: column;

    padding: 16px;

    color: black;

    text-decoration: none;
}
.cat-section__name{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}
.cat-section__description{
    margin-bottom: 0;
}
.cat-section__link{
    width: fit-content;
    padding: 0;
    margin-top: 20px;
}
.cat-section__image{
    width: auto;

    border-radius: 8px;
}
@media (max-width: 991px) {
    .cat-sections > * + *{
        margin-top: 16px;
    }
    .cat-section__description{
        font-size: 14px;
        line-height: 1.3;
    }
    .cat-section__link{
        font-size: 18px;
        margin-bottom: 24px;
    }
    .cat-section__image-wrapper{
        position: relative;

        margin-left: -8px;
        margin-right: -8px;
        margin-bottom: -8px;
    }
    .cat-section__image-wrapper::before{
        content: '';
        display: block;
        padding-top: 60%;
    }
    .cat-section__image{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;

        object-fit: cover;
        object-position: center;

        width: 100%;
        height: 100%;
    }
}

@media (min-width: 992px) {
    .cat-sections{
        margin-top: 64px;
    }
    .cat-section{
        --height: 196px;
        position: relative;

        height: var(--height);
        justify-content: center;

        padding-right: calc(var(--height) + 10px);
        padding-left: 24px;

        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0), 0 12px 24px 0 rgba(0, 0, 0, 0);
        transition: box-shadow 0.3s;
    }
    .cat-section:hover{
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    }
    .cat-section__name{
        margin-bottom: 12px;
    }
    .cat-section__link{
        padding-bottom: 0;
        margin-top: 24px;
    }
    .cat-section__image{
        --size: calc(var(--height) - 16px);
        position: absolute;
        top: 8px;
        right: 8px;
        height: var(--size);
        width: var(--size);
        object-fit: cover;
        object-position: center;
    }
}
@media (min-width: 1700px) {
    .cat-section{
        --height: 238px;
    }
    .cat-section__link{
        margin-top: 34px;
    }
    .cat-section__name{
        font-size: 32px;
    }
}

.cat-techs__title{
    margin-top: 32px;
    margin-bottom: 20px;
}
@media (min-width: 992px) {
    .cat-techs__title{
        margin-bottom: 24px;
    }
}
@media (min-width: 1700px) {
    .cat-techs__title{
        margin-top: 64px;
    }
}


.cat-tech{
    --counter-preview-size: 32px;
    --counter-preview-offset: -16px;

    background-color: var(--card-bg);
    border-radius: 12px;

    display: flex;
    flex-flow: column;

    position: relative;

    color: black;
    text-decoration: none;
}
.cat-tech__name{
    font-weight: 600;
}
.cat-tech__counter{
    display: flex;
    flex-flow: row;
    align-items: center;

    gap: 8px;

    margin-top: auto;
}
.cat-tech__counter-preview{
    width: var(--counter-preview-size);
    height: var(--counter-preview-size);

    border-radius: 999px;
    border: 1px solid white;

    object-fit: cover;
    object-position: center;
}
.cat-tech__counter-preview + .cat-tech__counter-preview{
    margin-left: calc(var(--counter-preview-offset) - 8px);
}
@media (max-width: 991px) {
    .cat-techs > * + *{
        margin-top: 12px;
    }
    .cat-tech{
        --height: 156px;

        padding: 8px;
        padding-left: 12px;

        height: var(--height);
        padding-right: calc(var(--height) + 8px + 20px);

    }
    .cat-tech__arrow{
        display: none;
    }
    .cat-tech__name{
        font-size: 20px;
        margin-top: 12px;
    }
    .cat-tech__image{
        --size: calc(var(--height) - 16px);

        height: var(--size);
        width: var(--size);

        position: absolute;
        top: 8px;
        right: 8px;

        border-radius: 8px;

        object-fit: cover;
        object-position: center;
    }
    .cat-tech__description{
        display: none;
    }
    .cat-tech__counter{
        margin-bottom: 12px;
    }
}
@media (max-width: 375px) {
    .cat-tech{
        --height: 149px;
    }
    .cat-tech__name{
        font-size: 18px;
    }
    .cat-tech__counter{
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (min-width: 992px) {
    .col-lg-fifth{
        width: 20%;
        flex: 1 1 20%;
    }

    .cat-tech{
        padding: 32px 16px;
        overflow: hidden;

        cursor: pointer;


        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0), 0 12px 24px 0 rgba(0, 0, 0, 0);
        transition: box-shadow 0.3s;


        height: 371px;
    }
    .cat-tech:hover{
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    }

    .cat-tech__image-wrapper{
        margin: -32px -16px 28px;
        position: relative;
    }
    .cat-tech__image-wrapper::before{
        content: '';
        display: block;
        width: 100%;
        padding-top: 62%;
    }
    .cat-tech__image{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;

        object-fit: cover;
        object-position: center;

        width: 100%;
        height: 100%;
    }

    .cat-tech__arrow{
        width: 34px;
        height: 34px;

        padding: 10px;
        color: #21432B;

        background: rgba(255, 255, 255, 0.9);

        border-radius: 999px;

        position: absolute;
        top: 24px;
        right: 20px;

        transition: background-color 0.2s, color 0.2s;
    }
    .cat-tech:hover .cat-tech__arrow{
        background-color: #246A50;
        color: white;
    }
    .cat-tech__name{
        font-size: 18px;
        margin-bottom: 8px;
    }
    .cat-tech__description{
        font-size: 14px;
    }

}
@media (min-width: 1700px) {
    .cat-tech {
        --counter-preview-size: 32px;
        --counter-preview-offset: -16px;

        height: 475px;
    }
    .cat-tech__name{
        font-size: 24px;
        margin-bottom: 12px;
    }
    .cat-tech__description{
        font-size: 16px;
        line-height: 1.3;
    }
}
/* End */
/* /local/css/elements/v2024/btn.ghost.css?1765539875343 */
/* /local/bitrix/templates/.default/components/bitrix/news.list/catalog-our-projects/styles.css?17822084387427 */
