

.products-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    min-height: 300px;
    padding: 30px 0 0 0;
    box-sizing: border-box;
}

.products-block h1 {
    font-size: 32px;
    font-family: STIX Two Text;
    font-weight: 700;
    line-height: 1.5;
}

.products-block .description {
    position: relative;
    width: 100%;
    text-align: left;
    padding: 30px 0 0 0;
    box-sizing: border-box;
}

.products-block .products-list {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    width: 100%;
    padding: 50px 0 100px 0;
    box-sizing: border-box;
}


.product-block {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
}

.product-block .art {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.product-block .xipass-image {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 400px;
    background: url(/images/products/xipass2.png) no-repeat center;
}

.product-block .xistorage-image {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 400px;
    background: url(/images/products/xistorage2.png) no-repeat center;
}

.product-block .acrodesk-image {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 400px;
    background: url(/images/products/acrodesk2.png) no-repeat center;
}

.product-block .product-content {
    position: relative;
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-block .product-text {
    font-size: 18px;
    font-family: Noto Sans;
    font-weight: 400;
    color: #333;
    padding: 0 50px 0 50px;
    box-sizing: border-box;
}

.product-block h1 {
    font-size: 30px;
    font-family: STIX Two Text;
    font-weight: 700;
    line-height: 1.5;
}

.product-block .description {
    position: relative;
    width: 100%;
    text-align: left;
    padding: 10px 0 10px 0;
    box-sizing: border-box;
}

.product-block a, .product-block a:visited {
    font-size: 16px;
    font-family: Noto Sans;
    font-weight: 600;
    color: #1e90ff;
    text-decoration: none;
    margin-top: 20px;
}