/* TEMPLATE CLASS */
.widget-description .widget-header-title{
    color: #0B0B0B;
    font-size: clamp(20px, 4vw, 36px);
    font-style: normal;
    font-weight: 500;
    line-height: 128.8%;
}
.widget-description .widget-item-name{
    color: #0B0B0B;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.widget-description .widget-header-description{
    color: #0B0B0B;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.widget-description .widget-item-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    flex: 0 0 64px;
    height: 64px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 6px 6px 16px 0px rgba(214, 217, 226, 0.30), -6px -6px 16px 0px #F9F9F9;
}
.widget-description .widget-item-icon svg{
    max-width: 24px;
    max-height: 24px;
}
.widget-description .widget-picture img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.widget-description .widget-header-description p{
    margin: 0 0 23px;
}
.widget-description .widget-header-description p:last-child{
    margin: 0;
}

@media all and (max-width: 768px) {
    .widget-description .widget-item-name br{
        display: none;
    }
}
@media all and (max-width: 550px) {
    .widget-description .widget-header-description p{
        margin: 0 0 14px;
    }
}

/* DESCRIPTION */
.widget-block-description{
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 12vw, 100px) 0;
}
.widget-block-description .widget-header-description{
    color: #0B0B0B;
    font-size: clamp(18px, 3.4vw, 28px);
    font-style: normal;
    font-weight: 400;
    line-height: 147.3%;
}

/* ADVANTAGES */
.widget-advantages{
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 12vw, 117px) 0;
    background-color: #F5F5F5;
}
.widget-advantages .widget-header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.widget-advantages .widget-header-title{
    max-width: 526px;
}
.widget-advantages .widget-header-advantages{
    flex: 0 0 calc(44% - 17px);
}
.widget-advantages .widget-header-advantage{
    display: flex;
    align-items: center;
    margin: 0 0 18px;
}
.widget-advantages .widget-header-advantage:last-child{
    margin: 0;
}
.widget-advantages .widget-header-advantage-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(6px 6px 16px rgba(214, 217, 226, 0.30)) drop-shadow(-6px -6px 16px #F9F9F9);
    background-color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 20px;
}
.widget-advantages .widget-header-advantage-icon svg{
    width: 24px;
    height: 24px;
}
.widget-advantages .widget-header-advantage-name{
    color: #0B0B0B;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0 0 0 18px;
}
.widget-advantages .widget-content{
    margin: 27px 0 0;
}
.widget-advantages .widget-presentation-title{
    color: #0B0B0B;
    font-size: clamp(20px, 4vw, 36px);
    font-style: normal;
    font-weight: 500;
    line-height: 128.8%;
    margin: 0 0 34px;
}
.widget-advantages .widget-presentation-link{
    display: block;
    position: relative;
    width: 100%;
    height: clamp(190px, 50vw, 600px);
    border-radius: 10px;
    overflow: hidden;
}
.widget-advantages .widget-presentation-link img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.widget-advantages .widget-presentation-link svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(74px, 20vw, 192px);
    height: auto;

    transition: transform .2s ease-out;
}
.widget-advantages .widget-presentation-link:focus svg,
.widget-advantages .widget-presentation-link:active svg{
    transform: translate(-50%, -50%) scale(.98);
}

@media all and (max-width: 1000px) {
    .widget-advantages .widget-header{
        flex-wrap: wrap;
    }
    .widget-advantages .widget-header-title{
        max-width: none;
        width: 100%;
    }
    .widget-advantages .widget-header-advantages{
        flex: 0 0 100%;
        margin: 32px 0 0;
    }
    .widget-advantages .widget-content{
        margin: 46px 0 0;
    }
    .widget-advantages .widget-presentation-title{
        margin: 0 0 18px;
    }
}

/* LIST DESCRIPTION */
.widget-list-description{
    position: relative;
    background-color: #F5F5F5;
    overflow: hidden;
}

/* TASKS */
.widget-tasks{
    padding: clamp(40px, 12vw, 128px) 0 45px;
}
.widget-tasks .widget-content{
    margin: 34px 0 0;
}
.widget-tasks .widget-items{
    display: flex;
    flex-wrap: wrap;
}
.widget-tasks .widget-item{
    padding: 0 0 33px;
}
.widget-tasks .widget-item-icon{
    margin: 0 0 10px;
}
.widget-tasks .widget-item-name{
    color: #0B0B0B;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
@media all and (max-width: 1000px) {
    .widget-tasks .widget-item-name br{
        display: none;
    }
    .widget-tasks .widget-item{
        padding: 0 0 14px;
    }
}
@media all and (max-width: 550px) {
    .widget-tasks .widget-item{
        display: flex;
        padding: 0 0 8px;
    }
    .widget-tasks .widget-item-icon{
        margin: 0 18px 0 0;
    }
    .widget-tasks .widget-item-name{
        margin: 13px 0 0;
    }
}

/* OPPORTUNITIES */
.widget-opportunities{
    padding: clamp(40px, 12vw, 45px) 0;
}
.widget-opportunities .widget-content{
    margin: 26px 0 0;
    display: flex;
    justify-content: space-between;
}
.widget-opportunities .widget-items{
    flex: 0 0 33%;
}
.widget-opportunities .widget-item{
    display: flex;
    flex: 1 1 100%;
    margin: 0 0 24px;
}
.widget-opportunities .widget-item:last-child{
    margin: 0;
}
.widget-opportunities .widget-item-icon{
    margin: 0 24px 0 0;
}
.widget-opportunities .widget-item-name{
    margin: 13px 0 0;
}
.widget-opportunities .widget-picture-wrap{
    transform: translate(11px, -37px);
}
.widget-opportunities .widget-picture{
    max-width: 770px;
}

@media all and (max-width: 1240px) {
    .widget-opportunities .widget-picture-wrap{
        transform: none;
    }
    .widget-opportunities .widget-items{
        margin: 0 40px 0 0;
    }
}
@media all and (max-width: 768px) {
    .widget-opportunities .widget-content{
        flex-wrap: wrap;
    }
    .widget-opportunities .widget-items{
        margin: 0 0 36px;
        flex: 0 0 100%;
    }
}
@media all and (max-width: 550px) {
    .widget-opportunities .widget-item-icon{
        margin: 0 18px 0 0;
    }
}

/* FORMATS */
.widget-formats{
    padding: 38px 0;
    display: flex;
    justify-content: space-between;
}
.widget-formats .widget-header{
    max-width: 486px;
    width: 100%;
    margin: 15px 0 0 20px;
}
.widget-formats .widget-header-description{
    margin: 26px 0 0;
}
.widget-formats .widget-content{
    max-width: 517px;
}

@media all and (max-width: 1000px) {
    .widget-formats{
        flex-direction: column-reverse;
        padding: 40px 0;
    }
    .widget-formats .widget-content,
    .widget-formats .widget-header{
        max-width: none;
        flex: 0 0 100%;
    }
    .widget-formats .widget-content{
        margin: 26px 0 0;
    }
    .widget-formats .widget-header{
        margin: 0;
    }
    .widget-formats .widget-header-description{
        margin: 16px 0 0;
    }
}

/* PROCESSING */
.widget-processing{
    padding: clamp(40px, 12vw, 82px) 0;
    display: flex;
    justify-content: space-between;
}
.widget-processing .widget-header{
    max-width: 580px;
    margin: 79px 0 0;
}
.widget-processing .widget-header-description{
    margin: 26px 0 0;
}
.widget-processing .widget-content{
    max-width: 384px;
    margin: 0 81px 0 40px;
}

@media all and (max-width: 1240px) {
    .widget-processing .widget-header-description br{
        display: none;
    }
    .widget-processing .widget-header{
        margin: 0;
    }
    .widget-processing .widget-content{
        margin: 0 0 0 40px;
    }
}
@media all and (max-width: 1000px) {
    .widget-processing .widget-header-description{
        margin: 16px 0 0;
    }
}
@media all and (max-width: 550px) {
    .widget-processing{
        flex-wrap: wrap;
    }
    .widget-processing .widget-content,
    .widget-processing .widget-header{
        max-width: none;
        flex: 0 0 100%;
    }
    .widget-processing .widget-content{
        margin: 26px 0 0;
    }
}

/* PRICES */
.widget-prices{
    padding: 38px 0;
    display: flex;
    justify-content: space-between;
}
.widget-prices .widget-header{
    max-width: 609px;
    margin: 67px 0 0 40px;
}
.widget-prices .widget-header-description{
    margin: 26px 0 0;
}
.widget-prices .widget-content{
    max-width: 448px;
}
@media all and (max-width: 1240px) {
    .widget-prices .widget-header{
        margin: 0 0 0 40px;
    }
    .widget-prices .widget-header-description br{
        display: none;
    }
}
@media all and (max-width: 1000px) {
    .widget-prices .widget-header-description{
        margin: 16px 0 0;
    }
}
@media all and (max-width: 550px) {
    .widget-prices{
        padding: 40px 0;
        flex-direction: column-reverse;
    }
    .widget-prices .widget-content,
    .widget-prices .widget-header{
        max-width: none;
        flex: 0 0 100%;
    }
    .widget-prices .widget-header{
        margin: 0;
    }
    .widget-prices .widget-content{
        margin: 26px 0 0;
    }
}

/* PROPERTIES */
.widget-properties{
    padding: clamp(40px, 12vw, 80px) 0;
}
.widget-properties .widget-header-description{
    margin: 26px 0 0;
}
.widget-properties .widget-content{
    display: flex;
    justify-content: flex-end;
    margin: -156px 0 0;
}
.widget-properties .widget-picture{
    max-width: calc(100% - 125px);
    transform: translateX(4px);
}
@media all and (max-width: 1240px) {
    .widget-properties .widget-content{
        margin: 26px 0 0;
    }
    .widget-properties .widget-picture{
        max-width: 100%;
        transform: none;
    }
    .widget-properties .widget-header-description br{
        display: none;
    }
}
@media all and (max-width: 1000px) {
    .widget-properties .widget-header-description{
        margin: 16px 0 0;
    }
}

/* WORK WITH SECTIONS */
.widget-work-with-sections{
    padding: 40px 0;
}
.widget-work-with-sections .widget-content{
    display: flex;
    justify-content: space-between;
    margin: 23px 0 0;
}
.widget-work-with-sections .widget-item{
    display: flex;
    margin: 0 0 24px;
}
.widget-work-with-sections .widget-item:last-child{
    margin: 0;
}
.widget-work-with-sections .widget-item-name{
    margin: 12px 0 0 24px;
}
.widget-work-with-sections .widget-picture{
    max-width: 321px;
    margin: -70px 155px 0 20px;
}
@media all and (max-width: 1240px) {
    .widget-work-with-sections .widget-picture{
        margin: 0 0 0 40px;
    }
    .widget-work-with-sections .widget-content{
        align-items: flex-start;
    }
}
@media all and (max-width: 1000px) {
    .widget-work-with-sections .widget-item-name br{
        display: none;
    }
}
@media all and (max-width: 550px) {
    .widget-work-with-sections .widget-content{
        flex-wrap: wrap;
    }
    .widget-work-with-sections .widget-picture{
        max-width: none;
        flex: 0 0 100%;
        margin: 26px 0 0;
    }
    .widget-work-with-sections .widget-item-name{
        margin: 12px 0 0 18px;
    }
}

/* TEMPLATES */
.widget-templates{
    padding: clamp(40px, 12vw, 80px) 0;
}
.widget-templates .widget-content{
    margin: 23px 0 0;
}
.widget-templates .widget-item-icon{
    margin: 0 0 16px;
}
.widget-templates .widget-picture{
    margin: 56px 0 0;
    width: calc(100% + 7px);
}
@media all and (max-width: 1240px) {
    .widget-templates .widget-item-name br{
        display: none;
    }
    .widget-templates .widget-picture{
        width: 100%;
    }
}
@media all and (max-width: 1000px) {
    .widget-templates .widget-item{
        display: flex;
    }
    .widget-templates .widget-item-icon{
        margin: 0 18px 0 0;
    }
    .widget-templates .widget-item-name{
        margin: 13px 0 0;
    }
    .widget-templates .widget-picture{
        margin: 26px 0 0;
    }
}

/* WORK WITH BIG FILES */
.widget-work-with-big-files{
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}
.widget-work-with-big-files .widget-content{
    max-width: 668px;
}
.widget-work-with-big-files .widget-header{
    max-width: 494px;
    transform: translateX(19px);
    margin: 3px 0 0;
}
.widget-work-with-big-files .widget-header-description{
    margin: 26px 0 0;
}
@media all and (max-width: 1240px) {
    .widget-work-with-big-files .widget-header-description br{
        display: none;
    }
    .widget-work-with-big-files .widget-header{
        transform: none;
        margin: 0 0 0 40px;
    }
}
@media all and (max-width: 1000px) {
    .widget-work-with-big-files .widget-header-description{
        margin: 16px 0 0;
    }
    .widget-work-with-big-files{
        flex-direction: column-reverse;
    }
    .widget-work-with-big-files .widget-header{
        margin: 0;
        max-width: none;
    }
    .widget-work-with-big-files .widget-content{
        max-width: none;
        margin: 26px 0 0;
    }
}

/* LOAD */
.widget-load{
    padding: clamp(40px, 12vw, 80px) 0;
    display: flex;
    justify-content: space-between;
}
.widget-load .widget-content{
    max-width: 753px;
    transform: translateX(6px);
    margin: 5px 0 0;
}
.widget-load .widget-header{
    max-width: 388px;
}
.widget-load .widget-header-description{
    margin: 24px 0 0;
}
@media all and (max-width: 1240px) {
    .widget-load .widget-content{
        transform: none;
        margin: 0 0 0 40px;
    }
    .widget-load .widget-header-description br{
        display: none;
    }
}
@media all and (max-width: 1000px) {
    .widget-load .widget-header-description {
        margin: 16px 0 0;
    }
    .widget-load{
        flex-wrap: wrap;
    }
    .widget-load .widget-header,
    .widget-load .widget-content{
        max-width: none;
        flex: 0 0 100%;
    }
    .widget-load .widget-content{
        margin: 26px 0 0;
    }
}

/* EXPORT PRODUCTS */
.widget-export-products{
    padding: 40px 0;
    display: flex;
}
.widget-export-products .widget-content{
    max-width: 533px;
}
.widget-export-products .widget-header{
    max-width: 374px;
    margin: 60px 0 0 82px;
}
.widget-export-products .widget-header-description{
    margin: 24px 0 0;
}
.widget-export-products.widget-export-products-2{
    padding: 0;
}
.widget-export-products.widget-export-products-2 .widget-header{
    margin: 38px 0 0 82px;
}
@media all and (max-width: 1000px) {
    .widget-export-products .widget-header,
    .widget-export-products.widget-export-products-2 .widget-header{
        margin: 0 0 0 40px;
    }
    .widget-export-products.widget-export-products-2 .widget-header-description{
        margin: 0;
    }
    .widget-export-products .widget-header-description{
        margin: 16px 0 0;
    }
}
@media all and (max-width: 720px) {
    .widget-export-products{
        flex-direction: column-reverse;
    }
    .widget-export-products .widget-content,
    .widget-export-products .widget-header{
        max-width: none;
        flex: 0 0 100%;
    }
    .widget-export-products .widget-header,
    .widget-export-products.widget-export-products-2 .widget-header{
        margin: 0;
    }
    .widget-export-products .widget-content{
        margin: 26px 0 0;
    }
}

/* LINKING TO PRODUCTS */
.widget-linking-products{
    padding: clamp(80px, 12vw, 95px) 0 clamp(40px, 12vw, 95px);
    display: flex;
    justify-content: space-between;
}
.widget-linking-products .widget-content{
    max-width: 456px;
    margin: 0 0 0 40px;
}
.widget-linking-products .widget-item-name{
    margin: 14px 0 0;
}
@media all and (max-width: 1000px) {
    .widget-linking-products{
        flex-wrap: wrap;
    }
    .widget-linking-products .widget-content{
        max-width: none;
        flex: 0 0 100%;
        margin: 26px 0 0;
    }
    .widget-linking-products .widget-item{
        display: flex;
    }
    .widget-linking-products .widget-item-icon{
        margin: 0 18px 0 0;
    }
    .widget-linking-products .widget-item-name{
        margin: 13px 0 0;
    }
    .widget-linking-products .widget-item-name br{
        display: none;
    }
}

/* REPORT */
.widget-report{
    padding: 25px 0 clamp(80px, 12vw, 179px);
    display: flex;
    justify-content: space-between;
}
.widget-report .widget-content{
    max-width: 629px;
}
.widget-report .widget-header{
    max-width: 456px;
    width: 100%;
    margin: 91px 0 0 40px;
}
.widget-report .widget-header-description{
    margin: 24px 0 0;
}
@media all and (max-width: 1240px) {
    .widget-report .widget-header{
        margin: 0 0 0 40px;
    }
}
@media all and (max-width: 1000px) {
    .widget-report{
        flex-direction: column-reverse;
        padding: 40px 0 80px;
    }
    .widget-report .widget-content,
    .widget-report .widget-header{
        max-width: none;
        flex: 0 0 100%;
    }
    .widget-report .widget-header{
        margin: 0;
    }
    .widget-report .widget-content{
        margin: 26px 0 0;
    }
    .widget-report .widget-header-description br{
        display: none;
    }
    .widget-report .widget-header-description{
        margin: 16px 0 0;
    }
}

/* RASSKAZAT */
.widget-description .widget-universe-rasskazat{
    padding: clamp(40px, 12vw, 115px) 0 40px;
}
.widget-description .widget-universe-rasskazat .widget-universe-rasskazat-bg{
    background: linear-gradient(270deg, #F4F4F4 19.15%, #E7E7E7 89.37%);
}
.widget-description .widget-universe-rasskazat .widget-rasskazat-picture{
    margin: -168px 0 0;
}
.widget-description .widget-universe-rasskazat img{
    left: -40px;
    top: 0;
    width: 115%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
}
.widget-description .widget-universe-rasskazat .banner-solution__demo{
    background-color: #0B0B0B;
    border-color: #0B0B0B;
    color: #fff;
    font-weight: 400;
    transition: color .3s ease-out, border-color .3s ease-out, background-color .3s ease-out;
}
.widget-description .widget-universe-rasskazat .banner-solution__demo:focus,
.widget-description .widget-universe-rasskazat .banner-solution__demo:active,
.widget-description .widget-universe-rasskazat .banner-solution__demo:hover{
    background: #84bc8f;
    border-color: #84bc8f;
    color: #fff;
}
.widget-description .widget-universe-rasskazat .widget-universe-rasskazat-text{
    padding: 0;
}
.widget-description .widget-universe-rasskazat .widget-universe-rasskazat-description{
    padding-bottom: 0;
}
@media all and (max-width: 1240px) {
    .widget-description .widget-universe-rasskazat img{
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
    .form-access-container .form-access-form-wrap form .form-access-bottom{
        margin-bottom: 40px;
    }
}
@media all and (max-width: 1024px) {
    .widget-description .widget-universe-rasskazat .adaptive-container .intec-grid{
        flex-direction: row;
    }
    .widget-description .widget-universe-rasskazat .widget-universe-rasskazat-title {
        font-size: 28px;
    }
}
@media all and (max-width: 1000px) {
    .widget-description .widget-universe-rasskazat .widget-rasskazat-picture{
        display: none;
    }
    .widget-description .widget-universe-rasskazat{
        padding: 40px 0;
    }
}
@media all and (max-width: 550px) {
    .widget-universe-rasskazat .widget-universe-rasskazat-text{
        padding-top: 30px;
    }
    .form-access-container .form-access-form-wrap form .form-access-bottom {
        margin-bottom: 20px;
    }
    .widget-universe-rasskazat .widget-universe-rasskazat-title{
        font-size: 20px;
    }
    .widget-universe-rasskazat .widget-universe-rasskazat-description{
        font-size: 15px;
    }
}


/* OTHER */
.body-universe{
    overflow: hidden;
}