<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.industry-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 35px 0;
}
.industry-header__title {
    font: bold 40px/100% "Open Sans", sans-serif;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}
.industry-header__link{
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    height: 54px;
    justify-content: center;
    border-radius: 8px;
    padding: 0px 60px;
    color: #ffffff !important;
    transition: 0.3s ease;
}
.industry-all-link{
    display: none;
}

.industry-header__link:hover{
    color: #005AAA !important;
    background-color: #ffffff;
    border: 1px solid #ffffff;
}

@media (min-width: 993px) {
    .mp-info .industry-main-shell {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .mainpage-industry-desktop {
        display: none !important;
    }

    .industry-header__link.industry-link-mobile {
        height: 36px;
        padding: 0 28px;
        margin-left: 10px;
    }

    .industry-body__element.last-odd {
        width: 100% !important;
    }
}


.mainpage-industry-desktop .industry-main-shell:before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background: url(/local/static/build/img/mainpage/catalog-main-dots-top.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-size: 10%;
}
.industry-main {
    width: 100%;
    position: relative;
}

@media (min-width: 993px) {
    .industry-main-shell {
        background: linear-gradient(89.85deg, #005AAA 26.74%, #022E5E 126.45%);
    }
    .industry-main {
        background: url(/local/static/build/img/mainpage/catalog-main-lines-dots.svg);
        background-repeat: no-repeat;
        background-position-y: bottom;
        background-size: cover;
    }
}
.industry-main__wrapper {
    min-width: 320px;
    margin: 0 auto;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 35px;
    padding-bottom: 75px;
}

.mp-info .industry-main__wrapper {
    padding: unset;
    margin-bottom: 35px;
}

.mp-info .industry-header {
    margin-top: 35px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 400px) {
    .industry-main__wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.industry-body{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -11px;

}
.industry-body__element{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    background-color: #ffffff;
    padding: 28px;
    margin: 11px;
    height: 432px;
    width: calc(33.33% - 22px);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.industry-body__element:before{
    content: '';
    position: absolute;
    width: 101%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: linear-gradient(179.76deg, #158FD6 0.21%, #0061AC 99.79%);
    z-index: 0;
    transition: 0.3s ease;
}
.industry-body__element:hover{
    transition: 0.3s ease;
    background-color: #158FD6;
}
.industry-body__element:hover:before{
    opacity: 1;
}
.industry-body__element:hover .img-small-blue,
.industry-body__element:hover .img-big-blue{
    opacity: 0;
}
.industry-body__element:hover .img-small-white,
.industry-body__element:hover .img-big-white{
    opacity: 1;
}
.industry-body__element:hover .industry-body__name{
    color: #ffffff;
}

.industry-body__head{
    display: flex;
    flex-direction: row;
    justify-content: end;
    width: 100%;
    margin-bottom: 10px;
}
.industry-body__img-small-container{
    display: flex;
    position: relative;
    flex: 1 0 100%;
    max-height: 60px;
    max-width: 60px;
    z-index: 1;
}
.industry-body__img-small{
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: 0.3s ease;
}
.img-small-blue{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1;
}
.img-small-white{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
}
.industry-body__img-big-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 1 0 auto;
    max-height: 200px;
    max-width: 380px;
    z-index: 1;
}
.industry-body__img-big{
    height: 200px;
    /*width: 340px;*/
    width: 90%;
    transition: 0.3s ease;
    object-fit: contain;
}
.img-big-blue{
    position: absolute;
    top: 100px;
    transform: translate(0, 0);
    opacity: 1;
}
.img-big-white{
    position: absolute;
    top: 100px;
    transform: translate(0, 0);
    opacity: 0;
}

.industry-body__name{
    /*flex: 1 0 auto;*/
    font-weight: 600;
    font-size: 23px;
    line-height: 150%;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
}

@media (max-width: 1280px) {
    .industry-body__name{
        font-size: 20px;
    }
}
@media (max-width: 1024px) {
    .industry-body__img-big{
        width: 60%;
        height: 180px;
    }
    .img-big-blue{
        top: 60px;
    }
    .img-big-white{
        top: 60px;
    }
    .industry-body__img-small{
        width: 40px;
        height: 40px;
    }
    .industry-body__element{
        width: calc(50% - 22px);
        height: 350px;
    }
}
@media (max-width: 879px) {
    .industry-header__link span.first {
        display: none;
    }
    .industry-body__name{
        font-size: 18px;
    }
}
@media (min-width: 670px) {
    .grid-5 .industry-body__element:nth-child(1),
    .grid-5 .industry-body__element:nth-child(2){
        width: calc(50% - 22px);
    }
    .grid-7 .industry-body__element:nth-child(1),
    .grid-7 .industry-body__element:nth-child(2),
    .grid-7 .industry-body__element:nth-child(6),
    .grid-7 .industry-body__element:nth-child(7){
        width: calc(50% - 22px);
    }
    .grid-8 .industry-body__element:nth-child(1),
    .grid-8 .industry-body__element:nth-child(2){
        width: calc(50% - 22px);
    }
}
@media (max-width: 670px) {
    .industry-body__element{
        height: 210px;
        padding: 15px;
    }

    .industry-body__element.last-odd {
        width: 100% !important;
        flex-direction: row;
        justify-content: center;
        height: 170px;
    }

    .industry-body__head {
        display: none;
    }
    .industry-body__element .industry-body__img-big {
        top: 10px;
        width: 45%;
        height: 130px;
    }

    .industry-body__element.last-odd .industry-body__img-big-container {
        width: auto;
        margin-right: 20px;
    }
    .industry-body__element.last-odd .industry-body__img-big {
        top: 50%;
        transform: translateY(-50%);
        height: auto;
        width: 150px;
    }

    .industry-body__element.last-odd .industry-body__name {
        width: calc(100% - 170px);
    }

    .img-big-blue{
        top: 50px;
    }
    .img-big-white{
        top: 50px;
    }
    .industry-header__title{
        font-size: 28px;
    }
    .industry-header__link{
        height: 46px;
        padding: 0 36px;
    }
    .industry-body__name{
        font-weight: 400;
        font-size: 18px;
    }
    .industry-all-link{
        margin: 16px 0 0 8px;
        height: 44px;
        border-radius: 6px;
        width: calc(100% - 22px);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        line-height: 140%;
        display: flex;
        align-items: center;
        text-transform: uppercase;
        background-color: #7BA4DB;
        justify-content: center;
        color: #ffffff !important;
        transition: 0.3s ease;
    }
    .industry-all-link:hover{
        background-color: #0256a2;
    }
    .industry-all-show{
        margin: 16px 0 0 8px;
        height: 44px;
        border-radius: 6px;
        width: calc(100% - 22px);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        line-height: 140%;
        display: flex;
        align-items: center;
        text-transform: uppercase;
        background-color: #7BA4DB;
        justify-content: center;
        color: #ffffff !important;
        transition: 0.3s ease;
    }
    .industry-all-show:hover{
        background-color: #0256a2;
    }
}
@media (max-width: 560px) {
    .industry-body__name {
        font-size: 16px;
    }

    .industry-header__title{
        font-size: 20px;
    }
    .industry-body__element{
        height: 170px;
        padding: 10px;
    }
    .industry-body__element.last-odd {
        height: 150px;
    }

    .industry-body__element .industry-body__img-big {
        top: 5px;
        height: 115px;
    }

    .industry-body__element.last-odd .industry-body__img-big-container {
        margin-left: 10px;
    }

    .industry-body__element.last-odd .industry-body__name {
        width: calc(100% - 180px);
    }

    .mobile-view {
        display: none;
    }
}
@media (max-width: 500px) {
    .industry-body__name {
        font-size: 13px;
    }
    .industry-body__element{
        height: 155px;
    }
    .industry-body__element.last-odd {
        height: 120px;
    }

    .industry-body__element .industry-body__img-big {
        height: 100px;
    }

    .industry-body__element.last-odd .industry-body__img-big {
        width: 120px;
    }

    .industry-body__element.last-odd .industry-body__name {
        width: calc(100% - 150px);
    }
}
@media (max-width: 420px) {
    .industry-body__element{
        height: 150px;
    }
    .industry-body__element .industry-body__img-big {
        height: 85px;
        width: 50%;
    }
}
@media (min-width: 560px) {
    .industry-all-show{
        display: none;
    }
}
@media (max-width: 320px) {
    .img-big-blue{
        top: 20px;
    }
    .img-big-white{
        top: 20px;
    }
    .industry-body__element{
        width: calc(94% - 22px);
        padding: 10px;
        height: 182px;
    }
    .industry-body__img-small{
        height: 28px;
        width: 28px;
    }
    .industry-body__img-big{
        height: 100px;
        width: 40%;
    }
    .industry-body__name{
        font-size: 14px;
    }
}





.scroll-anim {
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
}

.scroll-anim-active {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.scroll-anim-transition {
    -webkit-transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}

</pre></body></html>