/* 
-----------------------------------------
BASE
1. General
2. Typography (general + headings)
3. Links & buttons (links, buttons, skip-link)
4. Spacing
5. Backgrounds
6. Borders
7. Images
8. Breadcrumb
-----------------------------------------
*/

/** 1. GENERAL **/

:root {
    /* Top margin */
    --top-margin-sm: 90px;
    --top-margin-lg: 112px; /* 992 px */
    --top-margin-xl: 128px; /* 1700 px */
}

html {
    scroll-behavior: smooth;
}

.scroll-to {
    display: block;
    position: relative;
    top: -112px;
    visibility: hidden;
}

img {
    max-width: 100%;
}

figure {
    margin-bottom: 0;
}

::selection {
    background-color: var(--primary-color);
    color: var(--text-white);
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

/** 2. TYPOGRAPHY **/
/* Change clamp-values according to chosen font-family*/
body, p, li {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, calc(1rem + ((1vw - 0.36rem) * 0.1488)), 1.125rem);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.max-width-300 {
    max-width: 300px;
}

b, strong {
    font-weight: 700;
}

p strong {
    font-weight: 700;
}

p.ingress {
    font-size: clamp(1.25rem, calc(1.25rem + ((1vw - 0.36rem) * 0.1488)), 1.375rem);
    font-weight: 500;
}

ol, ul {
    padding-left: 1rem;
}

.limit-1-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limit-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limit-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limit-4-lines {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-primary {
    color: var(--text-primary) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-white {
    color: var(--text-white) !important;
}

/*Headings*/
/*Change clamp-values according to chosen font-family*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6 {
    font-family: "Inter", sans-serif;
    line-height: 1.1;
    margin-bottom: 0.375em;
}

h1, .h1 {
    font-size: clamp(2rem, calc(2rem + ((1vw - 0.36rem) * 0.8929)), 2.75rem);
    font-weight: 700
}

h2, .h2 {
    font-size: clamp(1.75rem, 1.538rem + 0.906vw, 2.5rem);
    font-weight: 700;
}

h3, .h3 {
    font-size: clamp(1.25rem, 1.144rem + 0.453vw, 1.625rem);
    font-weight: 700;
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5, .h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 600;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 1.8571rem + 1.7857vw, 4rem);
    font-weight: 400;
    color: var(--text-white);
}

    .hero-content h1 strong {
        font-weight: 800;
    }

p + h2,
p + h3,
p + h4,
p + h5,
p + h6,
p + .h2,
p + .h3,
p + .h4,
p + .h5,
p + .h6 {
    margin-top: 1.5em;
}

h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6 {
    margin-top: 0.75em;
}

.tag {
    color: var(--text-primary);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

/** end TYPOGRAPHY **/



/** 3. LINKS & BUTTONS **/
a, a:link, a:active {
    color: var(--text-dark);
    transition: 0.2s;
    text-decoration: none;
}

    a:hover {
        color: var(--primary-color);
    }

p a {
    text-decoration: underline !important;
    color: var(--primary-color);
    font-weight: 500;
}

p a.btn.btn-primary {
    padding: .75rem 1.5rem;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: none;
}

    /* Buttons */

    a.btn,
    button.btn,
    input.btn {
        display: inline-block;
        font-size: 0.875rem;
        border-radius: 1rem;
        padding: 1em 2.25em;
        font-weight: 600;
        transition: all ease 0.2s;
        background-color: var(--primary-color);
        border: 2px solid var(--primary-color);
        color: #FFFFFF;
        min-width: 160px;
        text-transform: uppercase;
        text-decoration: none !important;
    }

        a.btn:hover,
        button.btn:hover {
            background-color: var(--text-white);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        /* Primary button */
        a.btn.primary-btn,
        button.btn.primary-btn,
        input.btn.primary-btn {
            color: var(--text-white);
            border: 2px solid var(--primary-color);
            background: var(--primary-color);
        }

            a.btn.primary-btn:hover,
            a.btn.primary-btn:focus,
            a.btn.primary-btn:active,
            button.btn.primary-btn:hover,
            button.btn.primary-btn:focus,
            button.btn.primary-btn:active,
            input.btn.primary-btn:hover,
            input.btn.primary-btn:focus,
            input.btn.primary-btn:active {
                color: var(--primary-color);
                background: transparent;
            }

        a.btn:focus-visible,
        button.btn:focus-visible,
        input.btn:focus-visible {
            transition: none;
            primary: 3px dotted var(--primary-color);
            primary-offset: 3px;
        }


        /* Outline button */
        a.btn.outline-btn,
        button.btn.outline-btn,
        input.btn.outline-btn {
            color: var(--text-dark);
            border: 2px solid var(--text-dark);
            background: transparent;
        }

            a.btn.outline-btn:hover,
            a.btn.outline-btn:focus,
            a.btn.outline-btn:active,
            button.btn.outline-btn:hover,
            button.btn.outline-btn:focus,
            button.btn.outline-btn:active,
            input.btn.outline-btn:hover,
            input.btn.outline-btn:focus,
            input.btn.outline-btn:active {
                color: var(--text-muted);
                border-color: var(--text-muted);
                background: transparent;
            }

        a.btn:focus-visible,
        button.btn:focus-visible,
        input.btn:focus-visible {
            transition: none;
            outline: 3px dotted var(--primary-color);
            outline-offset: 3px;
        }

        /* White outline button */

        a.btn.outline-btn-white,
        button.btn.outline-btn-white {
            color: #FFFFFF;
            border: 2px solid #ffffff;
            background: transparent;
        }

            a.btn.outline-btn-white:hover,
            a.btn.outline-btn-white:focus,
            a.btn.outline-btn-white:active,
            button.btn.outline-btn-white:hover,
            button.btn.outline-btn-white:focus,
            button.btn.outline-btn-white:active {
                color: var(--primary-color);
                border-color: var(--primary-color);
                background: transparent;
            }

    /* Focus on tabbing. Important for accessibility */

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    .navbar-toggler:focus-visible {
        transition: none;
        outline: var(--primary-color) dotted 3px;
        outline-offset: 2px;
    }

/* ------- Skip to content ------- */

.skip-to-content {
    position: fixed;
    z-index: 1201;
    margin: 1rem;
    top: 1rem;
}

a.skip-to-content-btn {
    display: inline-block;
    font-weight: 500;
    background-color: var(--neutral-color-dark);
    padding: 0.75em 2em;
    color: var(--text-white);
    border: 1px solid var(--neutral-color-dark);
}

/** end LINKS & BUTTONS **/

/** 4. SPACING **/
/* ------ Spacing utilities ------ */

.rte-container {
    max-width: 1000px;
    margin: 0 auto;
}

    .rte-container.richtext-content img {
        max-width: 100%;
        height: auto;
    }

@media (min-width: 992px) {

    .rte-container.richtext-content img {
        float: left;
        padding: 1rem;
        padding-left: 0;
        padding-right: 2rem;
    }
}

.container-x {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 768px) {

    .container-x {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1400px) {

    .container-x {
        padding-left: calc(50% - 650px);
        padding-right: calc(50% - 650px);
    }
}

@media (min-width: 1700px) {

    .container-x {
        padding-left: calc(50% - 800px);
        padding-right: calc(50% - 800px);
    }
}

.container-y {
    padding-top: clamp(2.5rem, 1.509rem + 4.226vw, 6rem);
    padding-bottom: clamp(2.5rem, 1.509rem + 4.226vw, 6rem);
}

@media screen and (min-width: 2400px) {
    .page-wrap-container {
        max-width: 1920px;
        margin: 0 auto;
        box-shadow: 0 0 10px rgba(0,0,0,0.1), 0 0 100px rgba(0,0,0,0.1);
    }
}

/** 5. BACKGROUNDS **/
/* ---------- Backgrounds ---------- */

.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .bg-img.contain {
        background-size: contain;
    }

/* Primary */
.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Primary Dark */
.bg-primary-dark {
    background-color: var(--primary-color-dark) !important;
}

/* Secondary */
.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* Neutral */
.bg-light {
    background-color: var(--neutral-color-light) !important;
}

.bg-dark {
    background-color: var(--neutral-color-dark) !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-transparent {
    background-color: transparent !important;
}

/** 6. BORDERS **/
/* ---------- Borders ---------- */

.border {
    border: 2px solid !important;
}

.border-left {
    border-left: 2px solid !important;
}

.border-top {
    border-top: 2px solid !important;
}

.border-right {
    border-right: 2px solid !important;
}

.border-bottom {
    border-bottom: 2px solid !important;
}

    .border.thin,
    .border-left.thin,
    .border-top.thin,
    .border-right.thin,
    .border-bottom.thin {
        border-width: 1px !important;
    }

    .border.thick,
    .border-left.thick,
    .border-top.thick,
    .border-right.thick,
    .border-bottom.thick {
        border-width: 4px !important;
    }

    .border.extra-thick,
    .border-left.extra-thick,
    .border-top.extra-thick,
    .border-right.extra-thick,
    .border-bottom.extra-thick {
        border-width: 6px !important;
    }

.border-primary {
    border-color: var(--primary-color) !important;
}

.border-secondary {
    border-color: var(--secondary-color) !important;
}

.border-dark {
    border-color: var(--neutral-color-dark) !important;
}

.border-light {
    border-color: var(--neutral-color-light) !important;
}

.border-white {
    border-color: #FFFFFF !important;
}

.no-border {
    border-left: none !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

/** 7. IMAGES **/
/* ---------- Images ---------- */
.cover-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}


.contain-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

/** 8. Breadcrumb **/
/* ---------- Breadcrumb ---------- */
.breadcrumbs li {
    font-size: .875rem;
    letter-spacing: 3%;
}

    .breadcrumbs li a {
        color: #000;
        font-weight: 400;
    }

        .breadcrumbs li a:hover {
            color: var(--primary-color);
        }

    .breadcrumbs li.active {
        color: var(--primary-color);
    }
