/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    scroll-margin-top: 24px;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    margin: 0;

    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}

/*---------------
    Variables
---------------*/
:root
{
    --bg: #d6374a;
    --scroll_width: 17px;
    --primary_color: #931927;
    --font_size: 20px;
    --font_family: 'Acherus Feral', 'Arial', sans-serif;
    --font_family2: 'Dudka', 'Arial', sans-serif;
}


/*-------------------
    Global styles
-------------------*/
::selection
{
    background: var(--primary_color);

    color: #fff;
}

::-moz-selection
{
    background: var(--primary_color);

    color: #fff;
}



html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

    background-color: var(--bg);
}


html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: var(--primary_color);
}


body
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    color: var(--primary_text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 400;
    line-height: normal;
}


body.lock
{
    overflow: hidden;
}


button
{
    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;

    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}


.wrap
{
    display: flex;
    overflow: clip;

    flex-direction: column;

    height: 100dvh;
    min-height: 100%;

    background: var(--bg);

    position: relative;
    z-index: 9;
}

.logo
{
    display: flex;

    justify-content: center;
    align-items: center;

    margin-top: 70px;

    border-radius: 15px;

    color: #fff;
    font-family: var(--font_family2);
    font-size: 37px;
    line-height: 39px;

    gap: 15px;
}

.content
{
    display: flex;

    margin: 0 20%;

    gap: 130px;
}

.left
{
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 65%;

    text-align: center;

    color: #fff;

    gap: 50px;
}

.right
{
    display: flex;

    width: 35%;
}

.right img
{
    height: calc(100dvh);
}

.title
{
    text-transform: uppercase;

    color: #fff;
    font-family: var(--font_family2);
    font-size: 46px;
    font-weight: 700;
    line-height: 48px;
}

.description
{
    max-width: 550px;
}

.description a
{   
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}
.description a:hover
{
 text-decoration: none;
}

.link
{
    display: flex;

    align-items: center;

    width: 420px;
    height: 106px;
    padding: 30px 35px;

    text-decoration: none;

    border-radius: 12px;
    background: #fff;

    color: #282826;

    gap: 24px;
}

.link + .link
{
    margin-top: 35px;
}

.sep
{
    width: 1px;
    height: 40px;

    background: #ca273b;
}

@media print,
(max-width: 1440px)
{
    .content
    {
        height: 100%;
        margin: 0 20px;

        gap: 20px;
    }

    .right img
    {
        max-width: 100%;
        height: auto;
        max-height: 100%;
    }

    .right
    {
        align-items: flex-end;
    }
}

@media print,
(max-width: 1023px)
{
    .wrap
    {
        height: auto;

        gap: 0;
    }

    .left
    {
        width: 100%;

        gap: 30px;
    }

    .right
    {
        width: auto;
    }

    .right img
    {
        height: 400px;
    }

    .content
    {
        flex-direction: column;
        align-items: center;

        margin: 0 20px;
        margin-bottom: auto;

        gap: 20px;
    }

    .logo
    {
        margin: 20px;
        margin-bottom: auto;
        padding: 15px;

        font-size: 25px;
    }

    .title
    {
        font-size: 20px;
        line-height: 20px;
    }

    .description
    {
        max-width: 300px;

        font-size: 12px;
    }

    .links
    {
        width: 100%;
        max-width: 300px;
    }

    .link
    {
        width: 100%;
        height: 70px;
        padding: 15px;

        font-size: 14px;
    }

    .link img
    {
        width: 30px;
        height: 30px;
    }
}
