@import '../Font.css';

:root {
    --default-color-1: #9B7B4F;
    --default-color-2: #FF1D33;
}

section a {
    text-decoration: unset;
    color: var(--default-color-4);
}

    section a:hover {
        text-decoration: underline;
    }

.mobile {
    display: none;
}

.no-select {
    user-select: none !important;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/* ==========================
RESET LINK
========================== */

a {
    color: inherit;
    text-decoration: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    transition: color .35s ease, opacity .35s ease, transform .35s ease, box-shadow .35s ease;
    -webkit-tap-highlight-color: transparent;
}

    /* hover desktop */

    a:hover {
        text-decoration: none;
    }

    /* click */

    a:active {
        transform: scale(.98);
    }

    /* accessibility */

    a:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 4px;
        border-radius: 8px;
    }

    /* image link */

    a img {
        border: none;
        vertical-align: middle;
        pointer-events: none;
    }

    /* disabled */

    a[disabled],
    a.disabled {
        pointer-events: none;
        opacity: .55;
        cursor: default;
    }

/* mobile tap */

@media (hover:none) {
    a:hover {
        transform: none;
    }
}

html {
    font-family: 'Inter_28pt-Regular';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden !important;
    overflow-y: auto;
    scroll-behavior: smooth;
}

section img {
    max-width: 100% !important;
    margin: 0 auto !important;
    height: auto;
}

section ul {
    padding-left: 25px;
}

html.rs {
    overflow-y: hidden !important;
}

body {
    padding: 0;
    border: 0;
    overflow: hidden;
    margin: 0;
    background-color: #fff;
}

main {
    position: relative;
    z-index: 1;
}

.seo {
    display: none;
}

.decor {
    pointer-events: none;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.fill {
    width: 100%;
    height: 100%;
}

.up-case {
    text-transform: uppercase;
}

.none {
    display: none !important;
}

ul {
    padding: 0;
    margin: 0;
}

img {
    display: block;
    user-select: none;
    /*pointer-events: none;*/
}

    img.fill {
        -o-object-fit: cover;
        object-fit: cover;
    }

.input-df {
    outline: none;
    border: none;
    background-color: transparent;
}

.no-margin {
    margin: 0 !important;
}

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