body {
    padding: 0;
    margin: 0;
    font-family: "lust-sans", sans-serif;
    font-size: 16pt;

    padding-bottom: 50px;
}

.language_picker {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    z-index: 1000;
    display: grid;
    grid-template-columns: 50% 50%;
}

.language_picker button {
    font-size: 16pt;
    text-decoration: none;
    padding: 14px 16px;
    border: #16650c solid 2px;
}

.language_picker button:hover, .language_picker button.selected {
    background-color: #16650c;
    color: #fff;
}

.language_picker button:first-child {
    border-right: none;
    border-radius: 10px 0 0 10px;
}

.language_picker button:last-child {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.page_landing {
    overflow: hidden;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 95vh;
}

.page_landing > * {
    grid-area: 1/1;
}

.landing_image {
    overflow: hidden;
}

.landing_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 75%;
}

.landing_title {
    display: grid;
    align-items: end;
    align-content: end;
    justify-content: start;
    padding-left: 35pt;
    padding-bottom: 20pt;
    background-color: #91341073;
    color: #fff;
}

.landing_title h1 {
    font-family: "alex-brush", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 80pt;
    line-height: 1;
    margin:0;
}

.landing_title span {
    padding-left: 30px;
    margin-top: -8px;
    font-size: 18pt;
    font-family: "freight-micro-pro", serif;
    font-weight: 400;
    font-style: normal;
}

ol, ul {
    font-family: 'kudryashev-d-contrast-sans';
    font-size: 12pt;
    font-weight: 300;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    max-width: 600px;
}

ul {
    list-style: "– ";
    padding-left: 20px;
    font-size: 12pt;
}

.text-right {
    justify-content: end;
    text-align: end;
}

.text-right p, .text-right h2, .text-right h3, .text-right span {
    margin-left: auto;
    margin-right: 0;
}

.section p {
    max-width: 600px;
    margin: 0;
}

.section {
    display: grid;
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 0px 20px;
}

.section > div {
    margin: 0 10px;
    max-width: 800px;
}

.col-2 .full-width {
    max-width: unset;
    grid-column: span 2;
}

.section h2 {
    font-family: "lust-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 27pt;
    line-height: 1;
    margin: 15px 0 10px -10px;
}

.section.text-right h2 {
    margin-left: 0;  
    margin-right: -10px;
}

.section h3 {
    font-family: "lust-sans", sans-serif;
    margin: 20px 0 6px -8px;
    font-weight: 300;
}

.section.text-right h3 {
    margin-left: 0;
    margin-right: -10px;
}

.section span, .section p {
    font-family: "kudryashev-d-contrast-sans";
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
}

.col-2 {
    display: grid;
    gap: 8px;
}

@media only screen and (max-width: 935px) {
    .page_landing {
    }

    .col-2 > * {
        grid-column: span 2;
    }

    .section {
        margin-left: 5px;
        margin-right: 5px;
    }

    .landing_title {
        padding-left: 10pt;
    }

    .landing_title h1 {
        font-size: 40pt;
    }

    .landing_title span {
        padding-left: 12px;
    }

    .section span, .section p {
        margin: 0 5px 0;
    }

    .section h3 {
        margin: 0 0px 0;
    }
}
