@media (min-width: 1280px) {
    .module1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .module1-grid {
        padding-bottom: 200px;
    }
    .module1-grid-item {
        padding: 58px 0;
        height: 660px;
    }
    .module1-grid-item .container {
        height: 100%;
    }
    .module1-grid-item:nth-of-type(odd) {
        background: none;
    }
    .module1-grid-item:nth-of-type(odd) .container {
        flex-direction: row-reverse;
    }
    .module1-grid-item:nth-of-type(odd) .item-description {
        text-align: left;
    }
    .module1-grid-item:nth-of-type(even) {
        background: linear-gradient(229.90deg, rgba(255, 255, 255, 0.1),rgba(255, 255, 255, 0.04) 100%);
    }
    .module1-grid-item:nth-of-type(even) .container {
        flex-direction: row;
    }
    .module1-grid-item:nth-of-type(even) .item-description {
        text-align: right;
    }
    .module1-illustration {
        width: 500px;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: center;
    }

    .module1-grid-item .item-description {
        padding-top: 32px;
    }
    .module1-grid-item .item-title {
        font-size: 56px;
        font-weight: 700;
        line-height: 81px;
        margin-bottom: 10px;
    }
    .module1-grid-item .item-sub {
        font-size: 22px;
        font-weight: 400;
        line-height: 26px;
        color: var(--color-primary-theme);
        margin-bottom: 45px;
    }
    .module1-grid-item .item-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 48px;
    }
    .module1-grid-item .item-grid-cell {

    }
    .module1-grid-item .item-grid-cell .label {
        font-size: 18px;
        font-weight: 400;
        line-height: 21px;
        color: var(--color-muted);
        margin-bottom: 16px;
    }
    .module1-grid-item .item-grid-cell .value {
        font-size: 32px;
        font-weight: 400;
        line-height: 38px;
    }

    .hint {
        margin-bottom: 70px;
        font-size: 16px;
        font-weight: 300;
        line-height: 19px;
        color: var(--color-muted);
    }
}