* {
    box-sizing: border-box;
}

html,
body {
    /* scroll-snap-type: y mandatory; */
    /* Enable vertical snap */
    /* scroll-behavior: smooth; */
    /* Smooth scrolling */
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: scroll;
}

input,
textarea {
    font-family: inherit;
}

::placeholder {
    color: #b1b1b1;
}

select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    outline: none;
}

a,
button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-family: 'Inter';
    padding: 0;
    outline-color: #4d90fe;
    border: unset;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: unset;
    font-size: 16px;
    line-height: 1.2;
    background: unset;
}

a {
    color: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    font-size: inherit;
}

img {
    max-width: 100%;
}

#root {
    min-height: calc(100vh);
    display: flex;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.block {
    display: grid;
    gap: 40px;
    align-items: center;
}

.blockText {
    font-size: 14pt;
    color: #424242;
    line-height: 1.8;
    font-weight: 300;
    white-space: pre-line;
    margin: 0;
}


.blockImage {
    max-width: 100%;
}

.blockOrderMobileFirst {
    order: -1;
}

.blockList {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blockList li {
    margin: 6px 0;
}

.blockHeader {
    margin: 0px 0px 40px;
    font-weight: 700;
    font-size: 28pt;
    color: rgb(23, 55, 95);
    position: relative;
    padding: 1rem 0;
}

.blockHeader::after {
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background-color: currentColor;
    position: absolute;
    bottom: 0;
    max-width: 500px;
}

.table {
    text-align: left;
    border-collapse: collapse;
    width: 100%;
}

.table thead {
    background-color: rgb(228 228 228);
    position: sticky;
    top: 80px;
}

.table th {
    padding: 6px 10px;
    font-weight: 600;
}

.table th:nth-child(1) {
    display: none;
}

.table tr {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
}

.table tr:nth-child(even) {
    background-color: #fafafa;
}

.table td {
    padding: 10px 10px;
}

.table td:nth-child(1) {
    grid-column: 1 / -1;
    font-weight: bold;
    background-color: #f0f0f0;
}

.table td:nth-child(2) {
    grid-column: 1 / 2;
}

.table td:nth-child(3) {
    grid-column: 2 / 3;
}

@media screen and (min-width: 768px) {
    .block2 {
        grid-template-columns: 1fr 1fr;
    }

    .blockOrderMobileFirst {
        order: unset;
    }

    .table thead {
        position: relative;
        top: 0;
    }

    .table th:nth-child(1) {
        display: table-cell;
    }

    .table tr {
        display: table-row;
    }

    .table td:nth-child(1) {
        background-color: unset;
    }
}