.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

    .select2-container .select2-selection--single {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        height: 28px;
        user-select: none;
        -webkit-user-select: none;
    }

        .select2-container .select2-selection--single .select2-selection__rendered {
            display: block;
            padding-left: 8px;
            padding-right: 20px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .select2-container .select2-selection--single .select2-selection__clear {
            background-color: transparent;
            border: none;
            font-size: 1em;
        }

    .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
        padding-right: 8px;
        padding-left: 20px;
    }

    .select2-container .select2-selection--multiple {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        min-height: 32px;
        user-select: none;
        -webkit-user-select: none;
    }

        .select2-container .select2-selection--multiple .select2-selection__rendered {
            display: inline;
            list-style: none;
            padding: 0;
        }

        .select2-container .select2-selection--multiple .select2-selection__clear {
            background-color: transparent;
            border: none;
            font-size: 1em;
        }

    .select2-container .select2-search--inline .select2-search__field {
        box-sizing: border-box;
        border: none;
        font-size: 100%;
        margin-top: 5px;
        margin-left: 5px;
        padding: 0;
        max-width: 100%;
        resize: none;
        height: 18px;
        vertical-align: bottom;
        font-family: sans-serif;
        overflow: hidden;
        word-break: keep-all;
    }

        .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
            -webkit-appearance: none;
        }

.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-results__option--selectable {
    cursor: pointer;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

    .select2-search--dropdown .select2-search__field {
        padding: 4px;
        width: 100%;
        box-sizing: border-box;
    }

        .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
            -webkit-appearance: none;
        }

    .select2-search--dropdown.select2-search--hide {
        display: none;
    }

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 28px;
    }

    .select2-container--default .select2-selection--single .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
        height: 26px;
        margin-right: 20px;
        padding-right: 0px;
    }

    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #999;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 26px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
    }

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

    .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
        display: none;
    }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative;
}

    .select2-container--default .select2-selection--multiple.select2-selection--clearable {
        padding-right: 25px;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__clear {
        cursor: pointer;
        font-weight: bold;
        height: 20px;
        margin-right: 10px;
        margin-top: 5px;
        position: absolute;
        right: 0;
        padding: 1px;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        box-sizing: border-box;
        display: inline-block;
        margin-left: 5px;
        margin-top: 5px;
        padding: 0;
        padding-left: 20px;
        position: relative;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
        white-space: nowrap;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
        cursor: default;
        padding-left: 2px;
        padding-right: 5px;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        background-color: transparent;
        border: none;
        border-right: 1px solid #aaa;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        color: #999;
        cursor: pointer;
        font-size: 1em;
        font-weight: bold;
        padding: 0 4px;
        position: absolute;
        left: 0;
        top: 0;
    }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
            background-color: #f1f1f1;
            color: #333;
            outline: none;
        }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    border-left: 1px solid #aaa;
    border-right: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
    float: left;
    margin-left: 10px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

    .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
        padding-left: 0;
    }

    .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -1em;
        padding-left: 2em;
    }

        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -2em;
            padding-left: 3em;
        }

            .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                margin-left: -3em;
                padding-left: 4em;
            }

                .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                    margin-left: -4em;
                    padding-left: 5em;
                }

                    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                        margin-left: -5em;
                        padding-left: 6em;
                    }

.select2-container--default .select2-results__option--group {
    padding: 0;
}

.select2-container--default .select2-results__option--disabled {
    color: #999;
}

.select2-container--default .select2-results__option--selected {
    background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #5897fb;
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

    .select2-container--classic .select2-selection--single:focus {
        border: 1px solid #5897fb;
    }

    .select2-container--classic .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 28px;
    }

    .select2-container--classic .select2-selection--single .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
        height: 26px;
        margin-right: 20px;
    }

    .select2-container--classic .select2-selection--single .select2-selection__placeholder {
        color: #999;
    }

    .select2-container--classic .select2-selection--single .select2-selection__arrow {
        background-color: #ddd;
        border: none;
        border-left: 1px solid #aaa;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        height: 26px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
        background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
        background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
        background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
    }

        .select2-container--classic .select2-selection--single .select2-selection__arrow b {
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
        background: transparent;
        border: none;
    }

        .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
            border-color: transparent transparent #888 transparent;
            border-width: 0 4px 5px 4px;
        }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
    padding-bottom: 5px;
    padding-right: 5px;
}

    .select2-container--classic .select2-selection--multiple:focus {
        border: 1px solid #5897fb;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__clear {
        display: none;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        display: inline-block;
        margin-left: 5px;
        margin-top: 5px;
        padding: 0;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
        cursor: default;
        padding-left: 2px;
        padding-right: 5px;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
        background-color: transparent;
        border: none;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        color: #888;
        cursor: pointer;
        font-size: 1em;
        font-weight: bold;
        padding: 0 4px;
    }

        .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
            color: #555;
            outline: none;
        }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none;
}

.select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
    padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
    color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #3875d7;
    color: white;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

*, *::before, *::after {
    box-sizing: border-box
}

body, h1, .h1, h2, .h2, h3, .h3, h4, .h4, p, figure, blockquote, dl, dd {
    margin: 0
}

ul[role='list'], ol[role='list'] {
    list-style: none
}

html:focus-within {
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 120%
}

a:not([class]) {
    text-decoration-skip-ink: auto
}

img, picture {
    max-width: 100%;
    display: block
}

input, button, textarea, select {
    font: inherit
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important
    }
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13,110,253;
    --bs-secondary-rgb: 108,117,125;
    --bs-success-rgb: 25,135,84;
    --bs-info-rgb: 13,202,240;
    --bs-warning-rgb: 255,193,7;
    --bs-danger-rgb: 220,53,69;
    --bs-light-rgb: 248,249,250;
    --bs-dark-rgb: 33,37,41;
    --bs-white-rgb: 255,255,255;
    --bs-black-rgb: 0,0,0;
    --bs-body-color-rgb: 33,37,41;
    --bs-body-bg-rgb: 255,255,255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0,0,0,0.175);
    --bs-border-radius: .375rem;
    --bs-border-radius-sm: .25rem;
    --bs-border-radius-lg: .5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd
}

*, *::before, *::after {
    box-sizing: border-box
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

h1, .h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 2.5rem
    }
}

h2, .h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width: 1200px) {
    h2, .h2 {
        font-size: 2rem
    }
}

h3, .h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 1.75rem
    }
}

h4, .h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width: 1200px) {
    h4, .h4 {
        font-size: 1.5rem
    }
}

h5, .h5 {
    font-size: 1.25rem
}

h6, .h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol, ul {
    padding-left: 2rem
}

ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1rem
}

    ol ol, ul ul, ol ul, ul ol {
        margin-bottom: 0
    }

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b, strong {
    font-weight: bolder
}

small, .small {
    font-size: .875em
}

mark, .mark {
    padding: .1875em;
    background-color: var(--bs-highlight-bg)
}

sub, sup {
    position: relative;
    font-size: .75em;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: var(--bs-link-color);
    text-decoration: underline
}

    a:hover {
        color: var(--bs-link-hover-color)
    }

    a:not([href]):not([class]), a:not([href]):not([class]):hover {
        color: inherit;
        text-decoration: none
    }

pre, code, kbd, samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal
    }

code {
    font-size: .875em;
    color: var(--bs-code-color);
    word-wrap: break-word
}

a > code {
    color: inherit
}

kbd {
    padding: .1875rem .375rem;
    font-size: .875em;
    color: var(--bs-body-bg);
    background-color: var(--bs-body-color);
    border-radius: .25rem
}

    kbd kbd {
        padding: 0;
        font-size: 1em
    }

figure {
    margin: 0 0 1rem
}

img, svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #6c757d;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

thead, tbody, tfoot, tr, td, th {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

    button:focus:not(:focus-visible) {
        outline: 0
    }

input, button, select, optgroup, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button, select {
    text-transform: none
}

[role="button"] {
    cursor: pointer
}

select {
    word-wrap: normal
}

    select:disabled {
        opacity: 1
    }

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
    display: none !important
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button
}

    button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
        cursor: pointer
    }

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: calc(1.275rem + .3vw);
    line-height: inherit
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend + * {
    clear: left
}

::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    display: list-item;
    cursor: pointer
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none !important
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-1 {
        font-size: 5rem
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-2 {
        font-size: 4.5rem
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-3 {
        font-size: 4rem
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.5rem
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 3rem
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-6 {
        font-size: 2.5rem
    }
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

    .list-inline-item:not(:last-child) {
        margin-right: .5rem
    }

.initialism {
    font-size: .875em;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

    .blockquote > :last-child {
        margin-bottom: 0
    }

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #6c757d
}

    .blockquote-footer::before {
        content: "\2014\00A0"
    }

.container, .container-fluid, .container-sm, .container-md, .container-lg {
    --bs-gutter-x: 5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 100%
    }
}

@media (min-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 100%
    }
}

@media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
        max-width: 1110px
    }
}

.row {
    --bs-gutter-x: 5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y)
    }

.col {
    flex: 1 0 0%
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.33333%
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.66667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

.g-0, .gx-0 {
    --bs-gutter-x: 0
}

.g-0, .gy-0 {
    --bs-gutter-y: 0
}

.g-1, .gx-1 {
    --bs-gutter-x: .25rem
}

.g-1, .gy-1 {
    --bs-gutter-y: .25rem
}

.g-2, .gx-2 {
    --bs-gutter-x: .5rem
}

.g-2, .gy-2 {
    --bs-gutter-y: .5rem
}

.g-3, .gx-3 {
    --bs-gutter-x: 1rem
}

.g-3, .gy-3 {
    --bs-gutter-y: 1rem
}

.g-4, .gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4, .gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5, .gx-5 {
    --bs-gutter-x: 3rem
}

.g-5, .gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.33333%
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.66667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333%
    }

    .offset-sm-2 {
        margin-left: 16.66667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333%
    }

    .offset-sm-5 {
        margin-left: 41.66667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333%
    }

    .offset-sm-8 {
        margin-left: 66.66667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333%
    }

    .offset-sm-11 {
        margin-left: 91.66667%
    }

    .g-sm-0, .gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0, .gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1, .gx-sm-1 {
        --bs-gutter-x: .25rem
    }

    .g-sm-1, .gy-sm-1 {
        --bs-gutter-y: .25rem
    }

    .g-sm-2, .gx-sm-2 {
        --bs-gutter-x: .5rem
    }

    .g-sm-2, .gy-sm-2 {
        --bs-gutter-y: .5rem
    }

    .g-sm-3, .gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3, .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4, .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4, .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5, .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5, .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.33333%
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.66667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333%
    }

    .offset-md-2 {
        margin-left: 16.66667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333%
    }

    .offset-md-5 {
        margin-left: 41.66667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333%
    }

    .offset-md-8 {
        margin-left: 66.66667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333%
    }

    .offset-md-11 {
        margin-left: 91.66667%
    }

    .g-md-0, .gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0, .gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1, .gx-md-1 {
        --bs-gutter-x: .25rem
    }

    .g-md-1, .gy-md-1 {
        --bs-gutter-y: .25rem
    }

    .g-md-2, .gx-md-2 {
        --bs-gutter-x: .5rem
    }

    .g-md-2, .gy-md-2 {
        --bs-gutter-y: .5rem
    }

    .g-md-3, .gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3, .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4, .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4, .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5, .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5, .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.33333%
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.66667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333%
    }

    .offset-lg-2 {
        margin-left: 16.66667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333%
    }

    .offset-lg-5 {
        margin-left: 41.66667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333%
    }

    .offset-lg-8 {
        margin-left: 66.66667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333%
    }

    .offset-lg-11 {
        margin-left: 91.66667%
    }

    .g-lg-0, .gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0, .gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1, .gx-lg-1 {
        --bs-gutter-x: .25rem
    }

    .g-lg-1, .gy-lg-1 {
        --bs-gutter-y: .25rem
    }

    .g-lg-2, .gx-lg-2 {
        --bs-gutter-x: .5rem
    }

    .g-lg-2, .gy-lg-2 {
        --bs-gutter-y: .5rem
    }

    .g-lg-3, .gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3, .gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4, .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4, .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5, .gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5, .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1220px) {
    .col-xl {
        flex: 1 0 0%
    }

    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.33333%
    }

    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.66667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333%
    }

    .offset-xl-2 {
        margin-left: 16.66667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333%
    }

    .offset-xl-5 {
        margin-left: 41.66667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333%
    }

    .offset-xl-8 {
        margin-left: 66.66667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333%
    }

    .offset-xl-11 {
        margin-left: 91.66667%
    }

    .g-xl-0, .gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0, .gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1, .gx-xl-1 {
        --bs-gutter-x: .25rem
    }

    .g-xl-1, .gy-xl-1 {
        --bs-gutter-y: .25rem
    }

    .g-xl-2, .gx-xl-2 {
        --bs-gutter-x: .5rem
    }

    .g-xl-2, .gy-xl-2 {
        --bs-gutter-y: .5rem
    }

    .g-xl-3, .gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3, .gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4, .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4, .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5, .gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5, .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

.dropup, .dropend, .dropdown, .dropstart, .dropup-center, .dropdown-center {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

    .dropdown-toggle::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent
    }

    .dropdown-toggle:empty::after {
        margin-left: 0
    }

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: .5rem;
    --bs-dropdown-spacer: .125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: #212529;
    --bs-dropdown-bg: #fff;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: .375rem;
    --bs-dropdown-border-width: 1px;
    --bs-dropdown-inner-border-radius: calc(.375rem - 1px);
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: .5rem;
    --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    --bs-dropdown-link-color: #212529;
    --bs-dropdown-link-hover-color: #1e2125;
    --bs-dropdown-link-hover-bg: #e9ecef;
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: .25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: .5rem;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius)
}

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: 0;
        margin-top: var(--bs-dropdown-spacer)
    }

.dropdown-menu-start {
    --bs-position: start
}

    .dropdown-menu-start[data-bs-popper] {
        right: auto;
        left: 0
    }

.dropdown-menu-end {
    --bs-position: end
}

    .dropdown-menu-end[data-bs-popper] {
        right: 0;
        left: auto
    }

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }

        .dropdown-menu-sm-start[data-bs-popper] {
            right: auto;
            left: 0
        }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

        .dropdown-menu-sm-end[data-bs-popper] {
            right: 0;
            left: auto
        }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }

        .dropdown-menu-md-start[data-bs-popper] {
            right: auto;
            left: 0
        }

    .dropdown-menu-md-end {
        --bs-position: end
    }

        .dropdown-menu-md-end[data-bs-popper] {
            right: 0;
            left: auto
        }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }

        .dropdown-menu-lg-start[data-bs-popper] {
            right: auto;
            left: 0
        }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

        .dropdown-menu-lg-end[data-bs-popper] {
            right: 0;
            left: auto
        }
}

@media (min-width: 1220px) {
    .dropdown-menu-xl-start {
        --bs-position: start
    }

        .dropdown-menu-xl-start[data-bs-popper] {
            right: auto;
            left: 0
        }

    .dropdown-menu-xl-end {
        --bs-position: end
    }

        .dropdown-menu-xl-end[data-bs-popper] {
            right: 0;
            left: auto
        }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: var(--bs-dropdown-spacer)
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: var(--bs-dropdown-spacer)
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid
}

.dropend .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropend .dropdown-toggle::after {
    vertical-align: 0
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: var(--bs-dropdown-spacer)
}

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: ""
}

.dropstart .dropdown-toggle::after {
    display: none
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent
}

.dropstart .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0
}

.dropdown-divider {
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    overflow: hidden;
    border-top: 1px solid var(--bs-dropdown-divider-bg);
    opacity: 1
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

    .dropdown-item:hover, .dropdown-item:focus {
        color: var(--bs-dropdown-link-hover-color);
        background-color: var(--bs-dropdown-link-hover-bg)
    }

    .dropdown-item.active, .dropdown-item:active {
        color: var(--bs-dropdown-link-active-color);
        text-decoration: none;
        background-color: var(--bs-dropdown-link-active-bg)
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: var(--bs-dropdown-link-disabled-color);
        pointer-events: none;
        background-color: transparent
    }

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
    margin-bottom: 0;
    font-size: .875rem;
    color: var(--bs-dropdown-header-color);
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    color: var(--bs-dropdown-link-color)
}

.dropdown-menu-dark {
    --bs-dropdown-color: #dee2e6;
    --bs-dropdown-bg: #343a40;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-box-shadow:;
    --bs-dropdown-link-color: #dee2e6;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-link-hover-bg: rgba(255,255,255,0.15);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-header-color: #adb5bd
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

.progress {
    --bs-progress-height: 1rem;
    --bs-progress-font-size: .75rem;
    --bs-progress-bg: #e9ecef;
    --bs-progress-border-radius: .375rem;
    --bs-progress-box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
    --bs-progress-bar-color: #fff;
    --bs-progress-bar-bg: #0d6efd;
    --bs-progress-bar-transition: width 0.6s ease;
    display: flex;
    height: var(--bs-progress-height);
    overflow: hidden;
    font-size: var(--bs-progress-font-size);
    background-color: var(--bs-progress-bg);
    border-radius: var(--bs-progress-border-radius)
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--bs-progress-bar-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-progress-bar-bg);
    transition: var(--bs-progress-bar-transition)
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-size: var(--bs-progress-height) var(--bs-progress-height)
}

.progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        animation: none
    }
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: .5rem;
    --bs-modal-color:;
    --bs-modal-bg: #fff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: .5rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    --bs-modal-inner-border-radius: calc(.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 1px;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: .5rem;
    --bs-modal-footer-bg:;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 1px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2)
}

    .modal-dialog-scrollable .modal-content {
        max-height: 100%;
        overflow: hidden
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto
    }

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: .5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg)
}

    .modal-backdrop.fade {
        opacity: 0
    }

    .modal-backdrop.show {
        opacity: var(--bs-backdrop-opacity)
    }

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius)
}

    .modal-header .btn-close {
        padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
        margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto
    }

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height)
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding)
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius)
}

    .modal-footer > * {
        margin: calc(var(--bs-modal-footer-gap) * .5)
    }

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15)
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto
    }

    .modal-sm {
        --bs-modal-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 800px
    }
}

@media (min-width: 1220px) {
    .modal-xl {
        --bs-modal-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

    .modal-fullscreen .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen .modal-header, .modal-fullscreen .modal-footer {
        border-radius: 0
    }

    .modal-fullscreen .modal-body {
        overflow-y: auto
    }

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-sm-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-sm-down .modal-header, .modal-fullscreen-sm-down .modal-footer {
            border-radius: 0
        }

        .modal-fullscreen-sm-down .modal-body {
            overflow-y: auto
        }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-md-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-md-down .modal-header, .modal-fullscreen-md-down .modal-footer {
            border-radius: 0
        }

        .modal-fullscreen-md-down .modal-body {
            overflow-y: auto
        }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-lg-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-lg-down .modal-header, .modal-fullscreen-lg-down .modal-footer {
            border-radius: 0
        }

        .modal-fullscreen-lg-down .modal-body {
            overflow-y: auto
        }
}

@media (max-width: 1219.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-xl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-xl-down .modal-header, .modal-fullscreen-xl-down .modal-footer {
            border-radius: 0
        }

        .modal-fullscreen-xl-down .modal-body {
            overflow-y: auto
        }
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.text-bg-primary {
    color: #fff !important;
    background-color: RGBA(13,110,253, var(--bs-bg-opacity, 1)) !important
}

.text-bg-secondary {
    color: #fff !important;
    background-color: RGBA(108,117,125, var(--bs-bg-opacity, 1)) !important
}

.text-bg-success {
    color: #fff !important;
    background-color: RGBA(25,135,84, var(--bs-bg-opacity, 1)) !important
}

.text-bg-info {
    color: #000 !important;
    background-color: RGBA(13,202,240, var(--bs-bg-opacity, 1)) !important
}

.text-bg-warning {
    color: #000 !important;
    background-color: RGBA(255,193,7, var(--bs-bg-opacity, 1)) !important
}

.text-bg-danger {
    color: #fff !important;
    background-color: RGBA(220,53,69, var(--bs-bg-opacity, 1)) !important
}

.text-bg-light {
    color: #000 !important;
    background-color: RGBA(248,249,250, var(--bs-bg-opacity, 1)) !important
}

.text-bg-dark {
    color: #fff !important;
    background-color: RGBA(33,37,41, var(--bs-bg-opacity, 1)) !important
}

.link-primary {
    color: #0d6efd !important
}

    .link-primary:hover, .link-primary:focus {
        color: #0a58ca !important
    }

.link-secondary {
    color: #6c757d !important
}

    .link-secondary:hover, .link-secondary:focus {
        color: #565e64 !important
    }

.link-success {
    color: #198754 !important
}

    .link-success:hover, .link-success:focus {
        color: #146c43 !important
    }

.link-info {
    color: #0dcaf0 !important
}

    .link-info:hover, .link-info:focus {
        color: #3dd5f3 !important
    }

.link-warning {
    color: #ffc107 !important
}

    .link-warning:hover, .link-warning:focus {
        color: #ffcd39 !important
    }

.link-danger {
    color: #dc3545 !important
}

    .link-danger:hover, .link-danger:focus {
        color: #b02a37 !important
    }

.link-light {
    color: #f8f9fa !important
}

    .link-light:hover, .link-light:focus {
        color: #f9fafb !important
    }

.link-dark {
    color: #212529 !important
}

    .link-dark:hover, .link-dark:focus {
        color: #1a1e21 !important
    }

.ratio {
    position: relative;
    width: 100%
}

    .ratio::before {
        display: block;
        padding-top: var(--bs-aspect-ratio);
        content: ""
    }

    .ratio > * {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%)
}

.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%)
}

.ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%)
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020
}

.sticky-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020
}

@media (min-width: 576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-sm-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media (min-width: 768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-md-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-lg-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media (min-width: 1220px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-xl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

.hstack {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch
}

.vstack {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: ""
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentcolor;
    opacity: .25
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.float-start {
    float: left !important
}

.float-end {
    float: right !important
}

.float-none {
    float: none !important
}

.opacity-0 {
    opacity: 0 !important
}

.opacity-25 {
    opacity: .25 !important
}

.opacity-50 {
    opacity: .5 !important
}

.opacity-75 {
    opacity: .75 !important
}

.opacity-100 {
    opacity: 1 !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.overflow-visible {
    overflow: visible !important
}

.overflow-scroll {
    overflow: scroll !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important
}

.shadow-none {
    box-shadow: none !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: sticky !important
}

.top-0 {
    top: 0 !important
}

.top-50 {
    top: 50% !important
}

.top-100 {
    top: 100% !important
}

.bottom-0 {
    bottom: 0 !important
}

.bottom-50 {
    bottom: 50% !important
}

.bottom-100 {
    bottom: 100% !important
}

.start-0 {
    left: 0 !important
}

.start-50 {
    left: 50% !important
}

.start-100 {
    left: 100% !important
}

.end-0 {
    right: 0 !important
}

.end-50 {
    right: 50% !important
}

.end-100 {
    right: 100% !important
}

.translate-middle {
    transform: translate(-50%, -50%) !important
}

.translate-middle-x {
    transform: translateX(-50%) !important
}

.translate-middle-y {
    transform: translateY(-50%) !important
}

.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-end-0 {
    border-right: 0 !important
}

.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-start-0 {
    border-left: 0 !important
}

.border-primary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important
}

.border-secondary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important
}

.border-success {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important
}

.border-info {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important
}

.border-warning {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important
}

.border-danger {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important
}

.border-light {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important
}

.border-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important
}

.border-white {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important
}

.border-1 {
    --bs-border-width: 1px
}

.border-2 {
    --bs-border-width: 2px
}

.border-3 {
    --bs-border-width: 3px
}

.border-4 {
    --bs-border-width: 4px
}

.border-5 {
    --bs-border-width: 5px
}

.border-opacity-10 {
    --bs-border-opacity: .1
}

.border-opacity-25 {
    --bs-border-opacity: .25
}

.border-opacity-50 {
    --bs-border-opacity: .5
}

.border-opacity-75 {
    --bs-border-opacity: .75
}

.border-opacity-100 {
    --bs-border-opacity: 1
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.vw-100 {
    width: 100vw !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mh-100 {
    max-height: 100% !important
}

.vh-100 {
    height: 100vh !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

.order-first {
    order: -1 !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.order-4 {
    order: 4 !important
}

.order-5 {
    order: 5 !important
}

.order-last {
    order: 6 !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
}

.mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-right: 0 !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-3 {
    margin-right: 1rem !important
}

.me-4 {
    margin-right: 1.5rem !important
}

.me-5 {
    margin-right: 3rem !important
}

.me-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-left: 0 !important
}

.ms-1 {
    margin-left: .25rem !important
}

.ms-2 {
    margin-left: .5rem !important
}

.ms-3 {
    margin-left: 1rem !important
}

.ms-4 {
    margin-left: 1.5rem !important
}

.ms-5 {
    margin-left: 3rem !important
}

.ms-auto {
    margin-left: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 3rem !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-3 {
    gap: 1rem !important
}

.gap-4 {
    gap: 1.5rem !important
}

.gap-5 {
    gap: 3rem !important
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important
}

.fs-2 {
    font-size: calc(1.325rem + .9vw) !important
}

.fs-3 {
    font-size: calc(1.3rem + .6vw) !important
}

.fs-4 {
    font-size: calc(1.275rem + .3vw) !important
}

.fs-5 {
    font-size: 1.25rem !important
}

.fs-6 {
    font-size: 1rem !important
}

.fst-italic {
    font-style: italic !important
}

.fst-normal {
    font-style: normal !important
}

.fw-light {
    font-weight: 300 !important
}

.fw-lighter {
    font-weight: lighter !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-bold {
    font-weight: 700 !important
}

.fw-semibold {
    font-weight: 600 !important
}

.fw-bolder {
    font-weight: bolder !important
}

.lh-1 {
    line-height: 1 !important
}

.lh-sm {
    line-height: 1.25 !important
}

.lh-base {
    line-height: 1.5 !important
}

.lh-lg {
    line-height: 2 !important
}

.text-start {
    text-align: left !important
}

.text-end {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-decoration-underline {
    text-decoration: underline !important
}

.text-decoration-line-through {
    text-decoration: line-through !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important
}

.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(0,0,0,0.5) !important
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255,255,255,0.5) !important
}

.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important
}

.text-opacity-25 {
    --bs-text-opacity: .25
}

.text-opacity-50 {
    --bs-text-opacity: .5
}

.text-opacity-75 {
    --bs-text-opacity: .75
}

.text-opacity-100 {
    --bs-text-opacity: 1
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: rgba(0,0,0,0) !important
}

.bg-opacity-10 {
    --bs-bg-opacity: .1
}

.bg-opacity-25 {
    --bs-bg-opacity: .25
}

.bg-opacity-50 {
    --bs-bg-opacity: .5
}

.bg-opacity-75 {
    --bs-bg-opacity: .75
}

.bg-opacity-100 {
    --bs-bg-opacity: 1
}

.bg-gradient {
    background-image: var(--bs-gradient) !important
}

.user-select-all {
    user-select: all !important
}

.user-select-auto {
    user-select: auto !important
}

.user-select-none {
    user-select: none !important
}

.pe-none {
    pointer-events: none !important
}

.pe-auto {
    pointer-events: auto !important
}

.rounded {
    border-radius: var(--bs-border-radius) !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: var(--bs-border-radius-sm) !important
}

.rounded-2 {
    border-radius: var(--bs-border-radius) !important
}

.rounded-3 {
    border-radius: var(--bs-border-radius-lg) !important
}

.rounded-4 {
    border-radius: var(--bs-border-radius-xl) !important
}

.rounded-5 {
    border-radius: var(--bs-border-radius-2xl) !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: var(--bs-border-radius-pill) !important
}

.rounded-top {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important
}

.rounded-end {
    border-top-right-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important
}

.rounded-bottom {
    border-bottom-right-radius: var(--bs-border-radius) !important;
    border-bottom-left-radius: var(--bs-border-radius) !important
}

.rounded-start {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media (min-width: 576px) {
    .float-sm-start {
        float: left !important
    }

    .float-sm-end {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-grid {
        display: grid !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }

    .order-sm-first {
        order: -1 !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .order-sm-4 {
        order: 4 !important
    }

    .order-sm-5 {
        order: 5 !important
    }

    .order-sm-last {
        order: 6 !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-sm-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-sm-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-sm-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-sm-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-sm-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-sm-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-sm-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-1 {
        margin-top: .25rem !important
    }

    .mt-sm-2 {
        margin-top: .5rem !important
    }

    .mt-sm-3 {
        margin-top: 1rem !important
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important
    }

    .mt-sm-5 {
        margin-top: 3rem !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .me-sm-0 {
        margin-right: 0 !important
    }

    .me-sm-1 {
        margin-right: .25rem !important
    }

    .me-sm-2 {
        margin-right: .5rem !important
    }

    .me-sm-3 {
        margin-right: 1rem !important
    }

    .me-sm-4 {
        margin-right: 1.5rem !important
    }

    .me-sm-5 {
        margin-right: 3rem !important
    }

    .me-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-1 {
        margin-bottom: .25rem !important
    }

    .mb-sm-2 {
        margin-bottom: .5rem !important
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important
    }

    .mb-sm-auto {
        margin-bottom: auto !important
    }

    .ms-sm-0 {
        margin-left: 0 !important
    }

    .ms-sm-1 {
        margin-left: .25rem !important
    }

    .ms-sm-2 {
        margin-left: .5rem !important
    }

    .ms-sm-3 {
        margin-left: 1rem !important
    }

    .ms-sm-4 {
        margin-left: 1.5rem !important
    }

    .ms-sm-5 {
        margin-left: 3rem !important
    }

    .ms-sm-auto {
        margin-left: auto !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-sm-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-sm-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-sm-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-sm-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-1 {
        padding-top: .25rem !important
    }

    .pt-sm-2 {
        padding-top: .5rem !important
    }

    .pt-sm-3 {
        padding-top: 1rem !important
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important
    }

    .pt-sm-5 {
        padding-top: 3rem !important
    }

    .pe-sm-0 {
        padding-right: 0 !important
    }

    .pe-sm-1 {
        padding-right: .25rem !important
    }

    .pe-sm-2 {
        padding-right: .5rem !important
    }

    .pe-sm-3 {
        padding-right: 1rem !important
    }

    .pe-sm-4 {
        padding-right: 1.5rem !important
    }

    .pe-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-0 {
        padding-bottom: 0 !important
    }

    .pb-sm-1 {
        padding-bottom: .25rem !important
    }

    .pb-sm-2 {
        padding-bottom: .5rem !important
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important
    }

    .ps-sm-0 {
        padding-left: 0 !important
    }

    .ps-sm-1 {
        padding-left: .25rem !important
    }

    .ps-sm-2 {
        padding-left: .5rem !important
    }

    .ps-sm-3 {
        padding-left: 1rem !important
    }

    .ps-sm-4 {
        padding-left: 1.5rem !important
    }

    .ps-sm-5 {
        padding-left: 3rem !important
    }

    .gap-sm-0 {
        gap: 0 !important
    }

    .gap-sm-1 {
        gap: .25rem !important
    }

    .gap-sm-2 {
        gap: .5rem !important
    }

    .gap-sm-3 {
        gap: 1rem !important
    }

    .gap-sm-4 {
        gap: 1.5rem !important
    }

    .gap-sm-5 {
        gap: 3rem !important
    }

    .text-sm-start {
        text-align: left !important
    }

    .text-sm-end {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width: 768px) {
    .float-md-start {
        float: left !important
    }

    .float-md-end {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-grid {
        display: grid !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }

    .order-md-first {
        order: -1 !important
    }

    .order-md-0 {
        order: 0 !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .order-md-3 {
        order: 3 !important
    }

    .order-md-4 {
        order: 4 !important
    }

    .order-md-5 {
        order: 5 !important
    }

    .order-md-last {
        order: 6 !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-md-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-md-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-md-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-md-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-md-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-md-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: .25rem !important
    }

    .mt-md-2 {
        margin-top: .5rem !important
    }

    .mt-md-3 {
        margin-top: 1rem !important
    }

    .mt-md-4 {
        margin-top: 1.5rem !important
    }

    .mt-md-5 {
        margin-top: 3rem !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .me-md-0 {
        margin-right: 0 !important
    }

    .me-md-1 {
        margin-right: .25rem !important
    }

    .me-md-2 {
        margin-right: .5rem !important
    }

    .me-md-3 {
        margin-right: 1rem !important
    }

    .me-md-4 {
        margin-right: 1.5rem !important
    }

    .me-md-5 {
        margin-right: 3rem !important
    }

    .me-md-auto {
        margin-right: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: .25rem !important
    }

    .mb-md-2 {
        margin-bottom: .5rem !important
    }

    .mb-md-3 {
        margin-bottom: 1rem !important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-md-5 {
        margin-bottom: 3rem !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .ms-md-0 {
        margin-left: 0 !important
    }

    .ms-md-1 {
        margin-left: .25rem !important
    }

    .ms-md-2 {
        margin-left: .5rem !important
    }

    .ms-md-3 {
        margin-left: 1rem !important
    }

    .ms-md-4 {
        margin-left: 1.5rem !important
    }

    .ms-md-5 {
        margin-left: 3rem !important
    }

    .ms-md-auto {
        margin-left: auto !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-md-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-md-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-md-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-md-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: .25rem !important
    }

    .pt-md-2 {
        padding-top: .5rem !important
    }

    .pt-md-3 {
        padding-top: 1rem !important
    }

    .pt-md-4 {
        padding-top: 1.5rem !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

    .pe-md-0 {
        padding-right: 0 !important
    }

    .pe-md-1 {
        padding-right: .25rem !important
    }

    .pe-md-2 {
        padding-right: .5rem !important
    }

    .pe-md-3 {
        padding-right: 1rem !important
    }

    .pe-md-4 {
        padding-right: 1.5rem !important
    }

    .pe-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-0 {
        padding-bottom: 0 !important
    }

    .pb-md-1 {
        padding-bottom: .25rem !important
    }

    .pb-md-2 {
        padding-bottom: .5rem !important
    }

    .pb-md-3 {
        padding-bottom: 1rem !important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-md-5 {
        padding-bottom: 3rem !important
    }

    .ps-md-0 {
        padding-left: 0 !important
    }

    .ps-md-1 {
        padding-left: .25rem !important
    }

    .ps-md-2 {
        padding-left: .5rem !important
    }

    .ps-md-3 {
        padding-left: 1rem !important
    }

    .ps-md-4 {
        padding-left: 1.5rem !important
    }

    .ps-md-5 {
        padding-left: 3rem !important
    }

    .gap-md-0 {
        gap: 0 !important
    }

    .gap-md-1 {
        gap: .25rem !important
    }

    .gap-md-2 {
        gap: .5rem !important
    }

    .gap-md-3 {
        gap: 1rem !important
    }

    .gap-md-4 {
        gap: 1.5rem !important
    }

    .gap-md-5 {
        gap: 3rem !important
    }

    .text-md-start {
        text-align: left !important
    }

    .text-md-end {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width: 992px) {
    .float-lg-start {
        float: left !important
    }

    .float-lg-end {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-grid {
        display: grid !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }

    .order-lg-first {
        order: -1 !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .order-lg-3 {
        order: 3 !important
    }

    .order-lg-4 {
        order: 4 !important
    }

    .order-lg-5 {
        order: 5 !important
    }

    .order-lg-last {
        order: 6 !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-lg-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-lg-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-lg-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-lg-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-lg-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-lg-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-lg-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: .25rem !important
    }

    .mt-lg-2 {
        margin-top: .5rem !important
    }

    .mt-lg-3 {
        margin-top: 1rem !important
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important
    }

    .mt-lg-5 {
        margin-top: 3rem !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .me-lg-0 {
        margin-right: 0 !important
    }

    .me-lg-1 {
        margin-right: .25rem !important
    }

    .me-lg-2 {
        margin-right: .5rem !important
    }

    .me-lg-3 {
        margin-right: 1rem !important
    }

    .me-lg-4 {
        margin-right: 1.5rem !important
    }

    .me-lg-5 {
        margin-right: 3rem !important
    }

    .me-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: .25rem !important
    }

    .mb-lg-2 {
        margin-bottom: .5rem !important
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .ms-lg-0 {
        margin-left: 0 !important
    }

    .ms-lg-1 {
        margin-left: .25rem !important
    }

    .ms-lg-2 {
        margin-left: .5rem !important
    }

    .ms-lg-3 {
        margin-left: 1rem !important
    }

    .ms-lg-4 {
        margin-left: 1.5rem !important
    }

    .ms-lg-5 {
        margin-left: 3rem !important
    }

    .ms-lg-auto {
        margin-left: auto !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-lg-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-lg-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-lg-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-lg-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-1 {
        padding-top: .25rem !important
    }

    .pt-lg-2 {
        padding-top: .5rem !important
    }

    .pt-lg-3 {
        padding-top: 1rem !important
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important
    }

    .pt-lg-5 {
        padding-top: 3rem !important
    }

    .pe-lg-0 {
        padding-right: 0 !important
    }

    .pe-lg-1 {
        padding-right: .25rem !important
    }

    .pe-lg-2 {
        padding-right: .5rem !important
    }

    .pe-lg-3 {
        padding-right: 1rem !important
    }

    .pe-lg-4 {
        padding-right: 1.5rem !important
    }

    .pe-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: .25rem !important
    }

    .pb-lg-2 {
        padding-bottom: .5rem !important
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important
    }

    .ps-lg-0 {
        padding-left: 0 !important
    }

    .ps-lg-1 {
        padding-left: .25rem !important
    }

    .ps-lg-2 {
        padding-left: .5rem !important
    }

    .ps-lg-3 {
        padding-left: 1rem !important
    }

    .ps-lg-4 {
        padding-left: 1.5rem !important
    }

    .ps-lg-5 {
        padding-left: 3rem !important
    }

    .gap-lg-0 {
        gap: 0 !important
    }

    .gap-lg-1 {
        gap: .25rem !important
    }

    .gap-lg-2 {
        gap: .5rem !important
    }

    .gap-lg-3 {
        gap: 1rem !important
    }

    .gap-lg-4 {
        gap: 1.5rem !important
    }

    .gap-lg-5 {
        gap: 3rem !important
    }

    .text-lg-start {
        text-align: left !important
    }

    .text-lg-end {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width: 1220px) {
    .float-xl-start {
        float: left !important
    }

    .float-xl-end {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-grid {
        display: grid !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }

    .d-xl-none {
        display: none !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }

    .order-xl-first {
        order: -1 !important
    }

    .order-xl-0 {
        order: 0 !important
    }

    .order-xl-1 {
        order: 1 !important
    }

    .order-xl-2 {
        order: 2 !important
    }

    .order-xl-3 {
        order: 3 !important
    }

    .order-xl-4 {
        order: 4 !important
    }

    .order-xl-5 {
        order: 5 !important
    }

    .order-xl-last {
        order: 6 !important
    }

    .m-xl-0 {
        margin: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-xl-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-xl-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-xl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-xl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-xl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xl-0 {
        margin-top: 0 !important
    }

    .mt-xl-1 {
        margin-top: .25rem !important
    }

    .mt-xl-2 {
        margin-top: .5rem !important
    }

    .mt-xl-3 {
        margin-top: 1rem !important
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xl-5 {
        margin-top: 3rem !important
    }

    .mt-xl-auto {
        margin-top: auto !important
    }

    .me-xl-0 {
        margin-right: 0 !important
    }

    .me-xl-1 {
        margin-right: .25rem !important
    }

    .me-xl-2 {
        margin-right: .5rem !important
    }

    .me-xl-3 {
        margin-right: 1rem !important
    }

    .me-xl-4 {
        margin-right: 1.5rem !important
    }

    .me-xl-5 {
        margin-right: 3rem !important
    }

    .me-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xl-auto {
        margin-bottom: auto !important
    }

    .ms-xl-0 {
        margin-left: 0 !important
    }

    .ms-xl-1 {
        margin-left: .25rem !important
    }

    .ms-xl-2 {
        margin-left: .5rem !important
    }

    .ms-xl-3 {
        margin-left: 1rem !important
    }

    .ms-xl-4 {
        margin-left: 1.5rem !important
    }

    .ms-xl-5 {
        margin-left: 3rem !important
    }

    .ms-xl-auto {
        margin-left: auto !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-xl-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-xl-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-xl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-xl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-xl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xl-0 {
        padding-top: 0 !important
    }

    .pt-xl-1 {
        padding-top: .25rem !important
    }

    .pt-xl-2 {
        padding-top: .5rem !important
    }

    .pt-xl-3 {
        padding-top: 1rem !important
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xl-5 {
        padding-top: 3rem !important
    }

    .pe-xl-0 {
        padding-right: 0 !important
    }

    .pe-xl-1 {
        padding-right: .25rem !important
    }

    .pe-xl-2 {
        padding-right: .5rem !important
    }

    .pe-xl-3 {
        padding-right: 1rem !important
    }

    .pe-xl-4 {
        padding-right: 1.5rem !important
    }

    .pe-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-0 {
        padding-bottom: 0 !important
    }

    .pb-xl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xl-0 {
        padding-left: 0 !important
    }

    .ps-xl-1 {
        padding-left: .25rem !important
    }

    .ps-xl-2 {
        padding-left: .5rem !important
    }

    .ps-xl-3 {
        padding-left: 1rem !important
    }

    .ps-xl-4 {
        padding-left: 1.5rem !important
    }

    .ps-xl-5 {
        padding-left: 3rem !important
    }

    .gap-xl-0 {
        gap: 0 !important
    }

    .gap-xl-1 {
        gap: .25rem !important
    }

    .gap-xl-2 {
        gap: .5rem !important
    }

    .gap-xl-3 {
        gap: 1rem !important
    }

    .gap-xl-4 {
        gap: 1.5rem !important
    }

    .gap-xl-5 {
        gap: 3rem !important
    }

    .text-xl-start {
        text-align: left !important
    }

    .text-xl-end {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2.5rem !important
    }

    .fs-2 {
        font-size: 2rem !important
    }

    .fs-3 {
        font-size: 1.75rem !important
    }

    .fs-4 {
        font-size: 1.5rem !important
    }
}

@media print {
    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-grid {
        display: grid !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }

    .d-print-none {
        display: none !important
    }
}

.burger::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0 1.50012H20M0 9.50012H20M0 17.5001H20%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0 1.50012H20M0 9.50012H20M0 17.5001H20%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.close::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M19 1.50097L1 19.501M19 19.501L1.00082 1.49933%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M19 1.50097L1 19.501M19 19.501L1.00082 1.49933%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.search::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M14.0463 12.9707L20 18.9244L18.4243 20.5001L12.4705 14.5464C11.1685 15.5215 9.55152 16.0992 7.79952 16.0992C3.49196 16.0992 0 12.6072 0 8.29965C0 3.99208 3.49196 0.500122 7.79952 0.500122C12.1071 0.500122 15.599 3.99208 15.599 8.29965C15.599 10.0516 15.0214 11.6686 14.0463 12.9707L14.0463 12.9707ZM7.79954 13.8707C10.8763 13.8707 13.3706 11.3765 13.3706 8.29965C13.3706 5.22285 10.8763 2.72856 7.79954 2.72856C4.72274 2.72856 2.22846 5.22285 2.22846 8.29965C2.22846 11.3765 4.72274 13.8707 7.79954 13.8707Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M14.0463 12.9707L20 18.9244L18.4243 20.5001L12.4705 14.5464C11.1685 15.5215 9.55152 16.0992 7.79952 16.0992C3.49196 16.0992 0 12.6072 0 8.29965C0 3.99208 3.49196 0.500122 7.79952 0.500122C12.1071 0.500122 15.599 3.99208 15.599 8.29965C15.599 10.0516 15.0214 11.6686 14.0463 12.9707L14.0463 12.9707ZM7.79954 13.8707C10.8763 13.8707 13.3706 11.3765 13.3706 8.29965C13.3706 5.22285 10.8763 2.72856 7.79954 2.72856C4.72274 2.72856 2.22846 5.22285 2.22846 8.29965C2.22846 11.3765 4.72274 13.8707 7.79954 13.8707Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.login::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 18 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M17 19V17C17 15.9391 16.5786 14.9217 15.8284 14.1716C15.0783 13.4214 14.0609 13 13 13H5C3.93913 13 2.92172 13.4214 2.17157 14.1716C1.42143 14.9217 1 15.9391 1 17V19%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27square%27 stroke-linejoin=%27round%27/%3e%3cpath d=%27M9 9C11.2091 9 13 7.20914 13 5C13 2.79086 11.2091 1 9 1C6.79086 1 5 2.79086 5 5C5 7.20914 6.79086 9 9 9Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 18 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M17 19V17C17 15.9391 16.5786 14.9217 15.8284 14.1716C15.0783 13.4214 14.0609 13 13 13H5C3.93913 13 2.92172 13.4214 2.17157 14.1716C1.42143 14.9217 1 15.9391 1 17V19%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27square%27 stroke-linejoin=%27round%27/%3e%3cpath d=%27M9 9C11.2091 9 13 7.20914 13 5C13 2.79086 11.2091 1 9 1C6.79086 1 5 2.79086 5 5C5 7.20914 6.79086 9 9 9Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.arrow-left::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 18 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.76074 8.68378L18.0001 8.68378%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M8.07605 2.36939L1.76074 8.68469L8.07605 15%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 18 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.76074 8.68378L18.0001 8.68378%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M8.07605 2.36939L1.76074 8.68469L8.07605 15%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.arrow-right::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 18 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M16.2393 8.31622L-0.000104785 8.31622%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M9.92395 14.6306L16.2393 8.31531L9.92395 2%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 18 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M16.2393 8.31622L-0.000104785 8.31622%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M9.92395 14.6306L16.2393 8.31531L9.92395 2%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.arrow-up::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 17 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M8.31641 1.76074L8.31641 18.0001%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M14.6309 8.07605L8.31555 1.76074L2.00024 8.07605%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 17 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M8.31641 1.76074L8.31641 18.0001%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M14.6309 8.07605L8.31555 1.76074L2.00024 8.07605%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.arrow-down::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 17 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M8.68359 16.2393L8.6836 -0.000104785%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M2.36914 9.92395L8.68445 16.2393L14.9998 9.92395%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 17 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M8.68359 16.2393L8.6836 -0.000104785%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M2.36914 9.92395L8.68445 16.2393L14.9998 9.92395%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.chevron-left::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M9 1L2 7.49645L9 14%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M9 1L2 7.49645L9 14%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.chevron-right::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0.999999 14L8 7.50355L0.999998 1%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0.999999 14L8 7.50355L0.999998 1%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.chevron-up::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 15 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M14 9L7.50355 2L1 9%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 15 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M14 9L7.50355 2L1 9%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.chevron-down::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 15 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1 0.999999L7.49645 8L14 0.999998%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 15 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1 0.999999L7.49645 8L14 0.999998%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.share::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 17 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M14.2782 13.4365C13.6006 13.4365 12.9944 13.7228 12.5308 14.1713L6.17435 10.2109C6.21892 9.99146 6.25458 9.77197 6.25458 9.54294C6.25458 9.31391 6.21892 9.09443 6.17435 8.87494L12.4595 4.95279C12.9409 5.42993 13.5739 5.72577 14.2782 5.72577C14.9875 5.72577 15.6678 5.42414 16.1694 4.88725C16.6709 4.35035 16.9527 3.62217 16.9527 2.86288C16.9527 2.1036 16.6709 1.37541 16.1694 0.838519C15.6678 0.301624 14.9875 0 14.2782 0C13.5688 0 12.8886 0.301624 12.387 0.838519C11.8854 1.37541 11.6036 2.1036 11.6036 2.86288C11.6036 3.09191 11.6393 3.3114 11.6839 3.53089L5.39873 7.45304C4.91732 6.97589 4.28434 6.68006 3.58005 6.68006C2.87072 6.68006 2.19044 6.98168 1.68887 7.51858C1.1873 8.05547 0.905518 8.78366 0.905518 9.54294C0.905518 10.3022 1.1873 11.0304 1.68887 11.5673C2.19044 12.1042 2.87072 12.4058 3.58005 12.4058C4.28434 12.4058 4.91732 12.11 5.39873 11.6328L11.7463 15.5932C11.7017 15.7936 11.675 16.0035 11.675 16.223C11.675 17.7594 12.8428 19 14.2782 19C15.7135 19 16.8814 17.7594 16.8814 16.223C16.8814 15.484 16.6071 14.7752 16.1189 14.2526C15.6307 13.73 14.9686 13.4365 14.2782 13.4365Z%27 fill=%27white%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 17 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M14.2782 13.4365C13.6006 13.4365 12.9944 13.7228 12.5308 14.1713L6.17435 10.2109C6.21892 9.99146 6.25458 9.77197 6.25458 9.54294C6.25458 9.31391 6.21892 9.09443 6.17435 8.87494L12.4595 4.95279C12.9409 5.42993 13.5739 5.72577 14.2782 5.72577C14.9875 5.72577 15.6678 5.42414 16.1694 4.88725C16.6709 4.35035 16.9527 3.62217 16.9527 2.86288C16.9527 2.1036 16.6709 1.37541 16.1694 0.838519C15.6678 0.301624 14.9875 0 14.2782 0C13.5688 0 12.8886 0.301624 12.387 0.838519C11.8854 1.37541 11.6036 2.1036 11.6036 2.86288C11.6036 3.09191 11.6393 3.3114 11.6839 3.53089L5.39873 7.45304C4.91732 6.97589 4.28434 6.68006 3.58005 6.68006C2.87072 6.68006 2.19044 6.98168 1.68887 7.51858C1.1873 8.05547 0.905518 8.78366 0.905518 9.54294C0.905518 10.3022 1.1873 11.0304 1.68887 11.5673C2.19044 12.1042 2.87072 12.4058 3.58005 12.4058C4.28434 12.4058 4.91732 12.11 5.39873 11.6328L11.7463 15.5932C11.7017 15.7936 11.675 16.0035 11.675 16.223C11.675 17.7594 12.8428 19 14.2782 19C15.7135 19 16.8814 17.7594 16.8814 16.223C16.8814 15.484 16.6071 14.7752 16.1189 14.2526C15.6307 13.73 14.9686 13.4365 14.2782 13.4365Z%27 fill=%27white%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.twitter::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 17 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M16.8474 2.1962C16.7373 2.44437 16.5321 2.75783 16.2322 3.13658C15.9322 3.51533 15.5618 3.84838 15.121 4.13572C15.1333 4.24022 15.1424 4.33817 15.1486 4.42959C15.1961 5.83721 14.88 7.29765 14.4415 8.51435C13.5914 10.7765 12.2888 12.5971 10.4284 13.8333C8.48834 15.0204 6.22888 15.2729 4.14713 15.0578C2.76511 14.8885 1.40298 14.4071 0.372864 13.5003C2.25691 13.7405 4.01519 13.0569 5.40523 11.9526C3.86112 11.9943 2.73922 10.8028 2.2095 9.42532C2.44829 9.49208 2.69809 9.48403 2.92579 9.46452C3.20608 9.43643 3.47214 9.40839 3.73391 9.34698C2.74932 9.00813 1.88781 8.38521 1.43812 7.44663C1.17435 6.85192 1.05525 6.28559 1.05244 5.64424C1.5138 5.90334 2.06876 6.15587 2.57685 6.13401C1.80952 5.44064 1.19435 4.55451 1.07999 3.53817C1.00779 2.69076 1.20659 1.91721 1.49324 1.19703C2.64107 2.54263 3.92894 3.65 5.41444 4.33162C6.43035 4.77537 7.44337 5.01269 8.49081 5.0173C8.3699 4.01936 8.46391 3.05422 8.90406 2.23535C9.42205 1.35496 10.1778 0.844162 11.0254 0.589686C12.2381 0.257961 13.421 0.726538 14.166 1.62802C14.9694 1.53545 15.7391 1.15525 16.3516 0.766004C16.0913 1.60674 15.5845 2.44267 14.8456 2.84267C15.5491 2.70372 16.2205 2.48155 16.8474 2.1962Z%27 fill=%27white%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 17 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M16.8474 2.1962C16.7373 2.44437 16.5321 2.75783 16.2322 3.13658C15.9322 3.51533 15.5618 3.84838 15.121 4.13572C15.1333 4.24022 15.1424 4.33817 15.1486 4.42959C15.1961 5.83721 14.88 7.29765 14.4415 8.51435C13.5914 10.7765 12.2888 12.5971 10.4284 13.8333C8.48834 15.0204 6.22888 15.2729 4.14713 15.0578C2.76511 14.8885 1.40298 14.4071 0.372864 13.5003C2.25691 13.7405 4.01519 13.0569 5.40523 11.9526C3.86112 11.9943 2.73922 10.8028 2.2095 9.42532C2.44829 9.49208 2.69809 9.48403 2.92579 9.46452C3.20608 9.43643 3.47214 9.40839 3.73391 9.34698C2.74932 9.00813 1.88781 8.38521 1.43812 7.44663C1.17435 6.85192 1.05525 6.28559 1.05244 5.64424C1.5138 5.90334 2.06876 6.15587 2.57685 6.13401C1.80952 5.44064 1.19435 4.55451 1.07999 3.53817C1.00779 2.69076 1.20659 1.91721 1.49324 1.19703C2.64107 2.54263 3.92894 3.65 5.41444 4.33162C6.43035 4.77537 7.44337 5.01269 8.49081 5.0173C8.3699 4.01936 8.46391 3.05422 8.90406 2.23535C9.42205 1.35496 10.1778 0.844162 11.0254 0.589686C12.2381 0.257961 13.421 0.726538 14.166 1.62802C14.9694 1.53545 15.7391 1.15525 16.3516 0.766004C16.0913 1.60674 15.5845 2.44267 14.8456 2.84267C15.5491 2.70372 16.2205 2.48155 16.8474 2.1962Z%27 fill=%27white%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.facebook::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M9.57625 0.784596V3.68877H7.91311C7.30577 3.68877 6.89616 3.82078 6.6843 4.08479C6.47243 4.34881 6.3665 4.74483 6.3665 5.27286V7.35198H9.47032L9.05718 10.6082H6.3665V18.9577H3.12498V10.6082H0.423706V7.35198H3.12498V4.95384C3.12498 3.58976 3.49221 2.53187 4.22667 1.78015C4.96114 1.02844 5.93924 0.652588 7.16099 0.652588C8.19913 0.652588 9.00421 0.69659 9.57625 0.784596Z%27 fill=%27white%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M9.57625 0.784596V3.68877H7.91311C7.30577 3.68877 6.89616 3.82078 6.6843 4.08479C6.47243 4.34881 6.3665 4.74483 6.3665 5.27286V7.35198H9.47032L9.05718 10.6082H6.3665V18.9577H3.12498V10.6082H0.423706V7.35198H3.12498V4.95384C3.12498 3.58976 3.49221 2.53187 4.22667 1.78015C4.96114 1.02844 5.93924 0.652588 7.16099 0.652588C8.19913 0.652588 9.00421 0.69659 9.57625 0.784596Z%27 fill=%27white%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.linkedin::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 21 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M5.04502 19.1864V6.56155H0.681229V19.1864H5.04502ZM2.86369 4.8368C4.38542 4.8368 5.33263 3.86736 5.33263 2.65588C5.30428 1.41708 4.38548 0.474548 2.89257 0.474548C1.39989 0.474548 0.423767 1.4171 0.423767 2.65588C0.423767 3.86742 1.37074 4.8368 2.8352 4.8368H2.86355H2.86369ZM7.46037 19.1864H11.8242V12.1361C11.8242 11.7587 11.8525 11.3818 11.9678 11.1121C12.2832 10.3582 13.0012 9.57739 14.2067 9.57739C15.7858 9.57739 16.4175 10.7351 16.4175 12.4323V19.1863H20.781V11.9473C20.781 8.06948 18.6282 6.26515 15.757 6.26515C13.403 6.26515 12.3693 7.53049 11.7951 8.3923H11.8243V6.56129H7.46047C7.51774 7.74593 7.46047 19.1862 7.46047 19.1862L7.46037 19.1864Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 21 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M5.04502 19.1864V6.56155H0.681229V19.1864H5.04502ZM2.86369 4.8368C4.38542 4.8368 5.33263 3.86736 5.33263 2.65588C5.30428 1.41708 4.38548 0.474548 2.89257 0.474548C1.39989 0.474548 0.423767 1.4171 0.423767 2.65588C0.423767 3.86742 1.37074 4.8368 2.8352 4.8368H2.86355H2.86369ZM7.46037 19.1864H11.8242V12.1361C11.8242 11.7587 11.8525 11.3818 11.9678 11.1121C12.2832 10.3582 13.0012 9.57739 14.2067 9.57739C15.7858 9.57739 16.4175 10.7351 16.4175 12.4323V19.1863H20.781V11.9473C20.781 8.06948 18.6282 6.26515 15.757 6.26515C13.403 6.26515 12.3693 7.53049 11.7951 8.3923H11.8243V6.56129H7.46047C7.51774 7.74593 7.46047 19.1862 7.46047 19.1862L7.46037 19.1864Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.instagram::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 17 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M0.703857 3.92932C0.703857 2.27247 2.047 0.929321 3.70386 0.929321H13.6155C15.2723 0.929321 16.6155 2.27247 16.6155 3.92932V14.0637C16.6155 15.7206 15.2723 17.0637 13.6155 17.0637H3.70386C2.047 17.0637 0.703857 15.7206 0.703857 14.0637V3.92932ZM11.9746 8.99653C11.9746 10.8529 10.4905 12.3579 8.65967 12.3579C6.82889 12.3579 5.34475 10.8529 5.34475 8.99653C5.34475 7.14011 6.82889 5.63519 8.65967 5.63519C10.4905 5.63519 11.9746 7.14011 11.9746 8.99653ZM13.3006 5.63519C14.0329 5.63519 14.6265 5.03322 14.6265 4.29066C14.6265 3.54809 14.0329 2.94612 13.3006 2.94612C12.5682 2.94612 11.9746 3.54809 11.9746 4.29066C11.9746 5.03322 12.5682 5.63519 13.3006 5.63519Z%27 fill=%27white%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 17 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M0.703857 3.92932C0.703857 2.27247 2.047 0.929321 3.70386 0.929321H13.6155C15.2723 0.929321 16.6155 2.27247 16.6155 3.92932V14.0637C16.6155 15.7206 15.2723 17.0637 13.6155 17.0637H3.70386C2.047 17.0637 0.703857 15.7206 0.703857 14.0637V3.92932ZM11.9746 8.99653C11.9746 10.8529 10.4905 12.3579 8.65967 12.3579C6.82889 12.3579 5.34475 10.8529 5.34475 8.99653C5.34475 7.14011 6.82889 5.63519 8.65967 5.63519C10.4905 5.63519 11.9746 7.14011 11.9746 8.99653ZM13.3006 5.63519C14.0329 5.63519 14.6265 5.03322 14.6265 4.29066C14.6265 3.54809 14.0329 2.94612 13.3006 2.94612C12.5682 2.94612 11.9746 3.54809 11.9746 4.29066C11.9746 5.03322 12.5682 5.63519 13.3006 5.63519Z%27 fill=%27white%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.youtube::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 20 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0.594482 7.3242L0.58667 7.32416L0.594482 7.32412L0.594482 7.32401L0.594483 7.32357L0.594484 7.32178L0.594495 7.31471L0.59458 7.28695L0.595266 7.18013C0.596049 7.08733 0.597616 6.953 0.600751 6.78689C0.60702 6.45466 0.619557 5.9953 0.644631 5.48678C0.694791 4.46952 0.795091 3.25631 0.995508 2.47035C1.10428 2.0444 1.3181 1.65597 1.61546 1.34404C1.91283 1.03213 2.28326 0.8077 2.68954 0.69326C3.06367 0.588401 3.71997 0.509615 4.49463 0.450494C5.26907 0.391391 6.16114 0.351985 7.0064 0.325712C7.85165 0.299441 8.65004 0.286305 9.23713 0.279737C9.53067 0.276453 9.77137 0.274811 9.9387 0.27399L10.1321 0.273271L10.1827 0.273181L10.1956 0.27317L10.1988 0.273169L10.1997 0.273169L10.1999 0.273169L10.1999 0.265356L10.2 0.273169L10.2002 0.273169L10.201 0.273169L10.2043 0.27317L10.2172 0.273181L10.2678 0.273272C10.3122 0.273375 10.3775 0.273581 10.4612 0.273994C10.6285 0.274819 10.8692 0.27647 11.1628 0.279772C11.7498 0.286375 12.5482 0.299581 13.3935 0.325993C14.2387 0.352406 15.1308 0.392023 15.9052 0.451442C16.6799 0.510879 17.3362 0.590086 17.7103 0.695503C18.1164 0.810315 18.4867 1.03487 18.784 1.34673C19.0813 1.6586 19.2953 2.04684 19.4044 2.47261C19.6048 3.25744 19.7051 4.47009 19.7553 5.48707C19.7803 5.99544 19.7929 6.45473 19.7991 6.78693C19.8023 6.95302 19.8038 7.08734 19.8046 7.18013L19.8053 7.28695L19.8054 7.31471L19.8054 7.32178L19.8054 7.32357V7.32401V7.32412L19.8132 7.32416L19.8054 7.3242V7.32431V7.32476L19.8054 7.32654L19.8054 7.33361L19.8053 7.36137L19.8046 7.46819C19.8038 7.56098 19.8023 7.6953 19.7991 7.8614C19.7929 8.19359 19.7803 8.65288 19.7553 9.16126C19.7051 10.1782 19.6048 11.3909 19.4044 12.1757C19.184 13.0409 18.5358 13.7221 17.7104 13.9528L17.7103 13.9528C17.3362 14.0582 16.6799 14.1374 15.9052 14.1969C15.1308 14.2563 14.2387 14.2959 13.3935 14.3223C12.5482 14.3487 11.7498 14.3619 11.1628 14.3686C10.8692 14.3719 10.6285 14.3735 10.4612 14.3743C10.3775 14.3747 10.3122 14.3749 10.2678 14.3751L10.2172 14.3751L10.2043 14.3752L10.201 14.3752H10.2002H10.2L10.1999 14.383L10.1999 14.3752H10.1997H10.1988L10.1956 14.3752L10.1827 14.3751L10.1321 14.3751C10.0877 14.3749 10.0224 14.3747 9.9387 14.3743C9.77138 14.3735 9.53067 14.3719 9.23713 14.3686C8.65004 14.3619 7.85165 14.3487 7.0064 14.3223C6.16114 14.2959 5.26908 14.2563 4.49464 14.1969C3.71997 14.1374 3.06368 14.0582 2.68955 13.9528L2.68954 13.9528C1.86622 13.7221 1.21587 13.0409 0.995509 12.1757C0.795091 11.3909 0.694791 10.1782 0.644631 9.16126C0.619557 8.65288 0.60702 8.19359 0.600751 7.8614C0.597616 7.6953 0.596049 7.56098 0.595266 7.46819L0.59458 7.36137L0.594495 7.33361L0.594484 7.32654L0.594483 7.32476L0.594482 7.32431L0.594482 7.3242ZM8.29798 10.3365H8.30517L13.2725 7.30835L13.2685 7.30168L13.2644 7.29501L13.2597 7.2873L8.29419 4.30511L8.29016 4.31181L8.28614 4.3185L8.28235 4.32481V10.3365H8.29016H8.29798Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%270.015625%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 20 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0.594482 7.3242L0.58667 7.32416L0.594482 7.32412L0.594482 7.32401L0.594483 7.32357L0.594484 7.32178L0.594495 7.31471L0.59458 7.28695L0.595266 7.18013C0.596049 7.08733 0.597616 6.953 0.600751 6.78689C0.60702 6.45466 0.619557 5.9953 0.644631 5.48678C0.694791 4.46952 0.795091 3.25631 0.995508 2.47035C1.10428 2.0444 1.3181 1.65597 1.61546 1.34404C1.91283 1.03213 2.28326 0.8077 2.68954 0.69326C3.06367 0.588401 3.71997 0.509615 4.49463 0.450494C5.26907 0.391391 6.16114 0.351985 7.0064 0.325712C7.85165 0.299441 8.65004 0.286305 9.23713 0.279737C9.53067 0.276453 9.77137 0.274811 9.9387 0.27399L10.1321 0.273271L10.1827 0.273181L10.1956 0.27317L10.1988 0.273169L10.1997 0.273169L10.1999 0.273169L10.1999 0.265356L10.2 0.273169L10.2002 0.273169L10.201 0.273169L10.2043 0.27317L10.2172 0.273181L10.2678 0.273272C10.3122 0.273375 10.3775 0.273581 10.4612 0.273994C10.6285 0.274819 10.8692 0.27647 11.1628 0.279772C11.7498 0.286375 12.5482 0.299581 13.3935 0.325993C14.2387 0.352406 15.1308 0.392023 15.9052 0.451442C16.6799 0.510879 17.3362 0.590086 17.7103 0.695503C18.1164 0.810315 18.4867 1.03487 18.784 1.34673C19.0813 1.6586 19.2953 2.04684 19.4044 2.47261C19.6048 3.25744 19.7051 4.47009 19.7553 5.48707C19.7803 5.99544 19.7929 6.45473 19.7991 6.78693C19.8023 6.95302 19.8038 7.08734 19.8046 7.18013L19.8053 7.28695L19.8054 7.31471L19.8054 7.32178L19.8054 7.32357V7.32401V7.32412L19.8132 7.32416L19.8054 7.3242V7.32431V7.32476L19.8054 7.32654L19.8054 7.33361L19.8053 7.36137L19.8046 7.46819C19.8038 7.56098 19.8023 7.6953 19.7991 7.8614C19.7929 8.19359 19.7803 8.65288 19.7553 9.16126C19.7051 10.1782 19.6048 11.3909 19.4044 12.1757C19.184 13.0409 18.5358 13.7221 17.7104 13.9528L17.7103 13.9528C17.3362 14.0582 16.6799 14.1374 15.9052 14.1969C15.1308 14.2563 14.2387 14.2959 13.3935 14.3223C12.5482 14.3487 11.7498 14.3619 11.1628 14.3686C10.8692 14.3719 10.6285 14.3735 10.4612 14.3743C10.3775 14.3747 10.3122 14.3749 10.2678 14.3751L10.2172 14.3751L10.2043 14.3752L10.201 14.3752H10.2002H10.2L10.1999 14.383L10.1999 14.3752H10.1997H10.1988L10.1956 14.3752L10.1827 14.3751L10.1321 14.3751C10.0877 14.3749 10.0224 14.3747 9.9387 14.3743C9.77138 14.3735 9.53067 14.3719 9.23713 14.3686C8.65004 14.3619 7.85165 14.3487 7.0064 14.3223C6.16114 14.2959 5.26908 14.2563 4.49464 14.1969C3.71997 14.1374 3.06368 14.0582 2.68955 13.9528L2.68954 13.9528C1.86622 13.7221 1.21587 13.0409 0.995509 12.1757C0.795091 11.3909 0.694791 10.1782 0.644631 9.16126C0.619557 8.65288 0.60702 8.19359 0.600751 7.8614C0.597616 7.6953 0.596049 7.56098 0.595266 7.46819L0.59458 7.36137L0.594495 7.33361L0.594484 7.32654L0.594483 7.32476L0.594482 7.32431L0.594482 7.3242ZM8.29798 10.3365H8.30517L13.2725 7.30835L13.2685 7.30168L13.2644 7.29501L13.2597 7.2873L8.29419 4.30511L8.29016 4.31181L8.28614 4.3185L8.28235 4.32481V10.3365H8.29016H8.29798Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%270.015625%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.email::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 23 14%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0.752686 0L11.34 10.9363L21.9274 0H0.752686Z%27 fill=%27black%27/%3e%3cpath d=%27M6.60385 6.99992L0.218811 0.404419V13.5372L6.60385 6.99992Z%27 fill=%27black%27/%3e%3cpath d=%27M15.6147 7.47498L11.3413 11.8924L7.06776 7.47498L0.69458 14H21.9879L15.6147 7.47498Z%27 fill=%27black%27/%3e%3cpath d=%27M22.4634 0.404419L16.0784 6.99992L22.4634 13.5372V0.404419Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 23 14%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0.752686 0L11.34 10.9363L21.9274 0H0.752686Z%27 fill=%27black%27/%3e%3cpath d=%27M6.60385 6.99992L0.218811 0.404419V13.5372L6.60385 6.99992Z%27 fill=%27black%27/%3e%3cpath d=%27M15.6147 7.47498L11.3413 11.8924L7.06776 7.47498L0.69458 14H21.9879L15.6147 7.47498Z%27 fill=%27black%27/%3e%3cpath d=%27M22.4634 0.404419L16.0784 6.99992L22.4634 13.5372V0.404419Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.copy-link::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M10.0995 13.9006L9.26454 13.0656C8.15129 11.9522 8.15129 10.1473 9.26454 9.03399L15.6857 2.6128C16.7991 1.49951 18.6041 1.49951 19.7174 2.61279L21.3873 4.28272C22.5006 5.39602 22.5006 7.20102 21.3873 8.31431L19.1269 10.5746M13.9006 10.0995L14.7354 10.9345C15.8488 12.0479 15.8488 13.8528 14.7354 14.9661L8.31431 21.3873C7.20102 22.5006 5.39601 22.5006 4.28272 21.3873L2.6128 19.7174C1.49951 18.6041 1.49951 16.7991 2.6128 15.6857L4.87314 13.4254%27 stroke=%27%23D93F00%27 stroke-width=%272.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M10.0995 13.9006L9.26454 13.0656C8.15129 11.9522 8.15129 10.1473 9.26454 9.03399L15.6857 2.6128C16.7991 1.49951 18.6041 1.49951 19.7174 2.61279L21.3873 4.28272C22.5006 5.39602 22.5006 7.20102 21.3873 8.31431L19.1269 10.5746M13.9006 10.0995L14.7354 10.9345C15.8488 12.0479 15.8488 13.8528 14.7354 14.9661L8.31431 21.3873C7.20102 22.5006 5.39601 22.5006 4.28272 21.3873L2.6128 19.7174C1.49951 18.6041 1.49951 16.7991 2.6128 15.6857L4.87314 13.4254%27 stroke=%27%23D93F00%27 stroke-width=%272.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.whatsapp::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 360 362%27 style=%27enable-background:new 0 0 360 362;%27 xml:space=%27preserve%27%3e%3cstyle type=%27text/css%27%3e.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23D93F00;}%3c/style%3e%3cpath class=%27st0%27 d=%27M307.5,52.6C273.7,18.7,228.7,0,180.8,0C82,0,1.5,80.4,1.5,179.2c0,31.6,8.2,62.4,23.9,89.6L0,361.7l95-24.9 c26.2,14.3,55.7,21.8,85.7,21.8h0.1c98.8,0,179.2-80.4,179.2-179.2C360,131.5,341.4,86.5,307.5,52.6z M268.4,243.3 c-3.7,10.5-21.6,20-30.2,21.3c-7.7,1.1-17.5,1.6-28.2-1.8c-6.5-2-14.8-4.8-25.5-9.4c-44.9-19.4-74.3-64.6-76.5-67.6 c-2.3-3-18.3-24.2-18.3-46.3s11.6-32.9,15.7-37.4c4.1-4.5,8.9-5.6,11.9-5.6s6,0.1,8.6,0.2c2.8,0.2,6.5-1,10.1,7.7 c3.7,9,12.7,31.1,13.8,33.3c1.1,2.2,1.9,4.8,0.4,7.8s-2.3,4.9-4.5,7.5c-2.2,2.6-4.7,5.8-6.7,7.8c-2.3,2.2-4.6,4.6-2,9.1 s11.6,19.1,24.9,31c17.1,15.2,31.5,20,36,22.2c4.5,2.3,7.1,1.9,9.7-1.1c2.6-3,11.2-13.1,14.2-17.6c3-4.4,6-3.7,10.1-2.2 c4.1,1.5,26.1,12.4,30.6,14.6c4.4,2.2,7.4,3.3,8.5,5.2C272.1,223.9,272.1,232.8,268.4,243.3z%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 360 362%27 style=%27enable-background:new 0 0 360 362;%27 xml:space=%27preserve%27%3e%3cstyle type=%27text/css%27%3e.st0{fill-rule:evenodd;clip-rule:evenodd;fill:%23D93F00;}%3c/style%3e%3cpath class=%27st0%27 d=%27M307.5,52.6C273.7,18.7,228.7,0,180.8,0C82,0,1.5,80.4,1.5,179.2c0,31.6,8.2,62.4,23.9,89.6L0,361.7l95-24.9 c26.2,14.3,55.7,21.8,85.7,21.8h0.1c98.8,0,179.2-80.4,179.2-179.2C360,131.5,341.4,86.5,307.5,52.6z M268.4,243.3 c-3.7,10.5-21.6,20-30.2,21.3c-7.7,1.1-17.5,1.6-28.2-1.8c-6.5-2-14.8-4.8-25.5-9.4c-44.9-19.4-74.3-64.6-76.5-67.6 c-2.3-3-18.3-24.2-18.3-46.3s11.6-32.9,15.7-37.4c4.1-4.5,8.9-5.6,11.9-5.6s6,0.1,8.6,0.2c2.8,0.2,6.5-1,10.1,7.7 c3.7,9,12.7,31.1,13.8,33.3c1.1,2.2,1.9,4.8,0.4,7.8s-2.3,4.9-4.5,7.5c-2.2,2.6-4.7,5.8-6.7,7.8c-2.3,2.2-4.6,4.6-2,9.1 s11.6,19.1,24.9,31c17.1,15.2,31.5,20,36,22.2c4.5,2.3,7.1,1.9,9.7-1.1c2.6-3,11.2-13.1,14.2-17.6c3-4.4,6-3.7,10.1-2.2 c4.1,1.5,26.1,12.4,30.6,14.6c4.4,2.2,7.4,3.3,8.5,5.2C272.1,223.9,272.1,232.8,268.4,243.3z%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.play::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 14 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M14 7.79423L0.5 15.5885L0.500001 -5.90104e-07L14 7.79423ZM2.5 3.4641L2.5 12.1244L10 7.79423L2.5 3.4641Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 14 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M14 7.79423L0.5 15.5885L0.500001 -5.90104e-07L14 7.79423ZM2.5 3.4641L2.5 12.1244L10 7.79423L2.5 3.4641Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.download::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 21 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.96875 21.5C1.44375 21.5 0.984375 21.3031 0.590625 20.9094C0.196875 20.5156 0 20.0562 0 19.5312V14.8391H1.96875V19.5312H19.0312V14.8391H21V19.5312C21 20.0562 20.8031 20.5156 20.4094 20.9094C20.0156 21.3031 19.5562 21.5 19.0312 21.5H1.96875ZM10.5 16.4797L4.16719 10.1469L5.57812 8.73594L9.51562 12.6734V0.5H11.4844V12.6734L15.4219 8.73594L16.8328 10.1469L10.5 16.4797Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 21 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.96875 21.5C1.44375 21.5 0.984375 21.3031 0.590625 20.9094C0.196875 20.5156 0 20.0562 0 19.5312V14.8391H1.96875V19.5312H19.0312V14.8391H21V19.5312C21 20.0562 20.8031 20.5156 20.4094 20.9094C20.0156 21.3031 19.5562 21.5 19.0312 21.5H1.96875ZM10.5 16.4797L4.16719 10.1469L5.57812 8.73594L9.51562 12.6734V0.5H11.4844V12.6734L15.4219 8.73594L16.8328 10.1469L10.5 16.4797Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.download-page::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 15 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cg clip-path=%27url%28%23clip0_788_68780%29%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M11.8952 2.59323L10.4336 1.09801H9.39581H1.13239V16.4864H13.5492V5.33594V4.28516L11.8952 2.59323ZM0.0976562 0.0367432V17.5477H14.584V5.33594L9.39581 0.0367432H0.0976562Z%27 fill=%27black%27/%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M11.0004 9.77042L7.70795 13.1474C7.5059 13.3546 7.17832 13.3546 6.97628 13.1474L3.68376 9.77042C3.48172 9.56319 3.48172 9.22722 3.68376 9.01999C3.88581 8.81276 4.21339 8.81276 4.41543 9.01999L6.82475 11.4911V4.81262H7.85948V11.4911L10.2688 9.01999C10.4708 8.81276 10.7984 8.81276 11.0004 9.01999C11.2025 9.22721 11.2025 9.56319 11.0004 9.77042Z%27 fill=%27black%27/%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M9.40918 0.0365601V5.34291H14.5829L9.40918 0.0365601ZM10.444 2.59869V4.28164H12.0848L10.444 2.59869Z%27 fill=%27black%27/%3e%3c/g%3e%3cdefs%3e%3cclipPath id=%27clip0_788_68780%27%3e%3crect width=%2715%27 height=%2718%27 fill=%27white%27/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 15 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cg clip-path=%27url%28%23clip0_788_68780%29%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M11.8952 2.59323L10.4336 1.09801H9.39581H1.13239V16.4864H13.5492V5.33594V4.28516L11.8952 2.59323ZM0.0976562 0.0367432V17.5477H14.584V5.33594L9.39581 0.0367432H0.0976562Z%27 fill=%27black%27/%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M11.0004 9.77042L7.70795 13.1474C7.5059 13.3546 7.17832 13.3546 6.97628 13.1474L3.68376 9.77042C3.48172 9.56319 3.48172 9.22722 3.68376 9.01999C3.88581 8.81276 4.21339 8.81276 4.41543 9.01999L6.82475 11.4911V4.81262H7.85948V11.4911L10.2688 9.01999C10.4708 8.81276 10.7984 8.81276 11.0004 9.01999C11.2025 9.22721 11.2025 9.56319 11.0004 9.77042Z%27 fill=%27black%27/%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M9.40918 0.0365601V5.34291H14.5829L9.40918 0.0365601ZM10.444 2.59869V4.28164H12.0848L10.444 2.59869Z%27 fill=%27black%27/%3e%3c/g%3e%3cdefs%3e%3cclipPath id=%27clip0_788_68780%27%3e%3crect width=%2715%27 height=%2718%27 fill=%27white%27/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.print::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M5.33594 8.74996V1.16663H18.3359V8.74996%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3cpath d=%27M5.33333 18.4996H3.16667C2.59203 18.4996 2.04093 18.2714 1.6346 17.865C1.22827 17.4587 1 16.9076 1 16.333V10.9163C1 10.3417 1.22827 9.79057 1.6346 9.38424C2.04093 8.97791 2.59203 8.74963 3.16667 8.74963H20.5C21.0746 8.74963 21.6257 8.97791 22.0321 9.38424C22.4384 9.79057 22.6667 10.3417 22.6667 10.9163V16.333C22.6667 16.9076 22.4384 17.4587 22.0321 17.865C21.6257 18.2714 21.0746 18.4996 20.5 18.4996H18.3333%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3cpath d=%27M18.3359 14.1666H5.33594V22.8333H18.3359V14.1666Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M5.33594 8.74996V1.16663H18.3359V8.74996%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3cpath d=%27M5.33333 18.4996H3.16667C2.59203 18.4996 2.04093 18.2714 1.6346 17.865C1.22827 17.4587 1 16.9076 1 16.333V10.9163C1 10.3417 1.22827 9.79057 1.6346 9.38424C2.04093 8.97791 2.59203 8.74963 3.16667 8.74963H20.5C21.0746 8.74963 21.6257 8.97791 22.0321 9.38424C22.4384 9.79057 22.6667 10.3417 22.6667 10.9163V16.333C22.6667 16.9076 22.4384 17.4587 22.0321 17.865C21.6257 18.2714 21.0746 18.4996 20.5 18.4996H18.3333%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3cpath d=%27M18.3359 14.1666H5.33594V22.8333H18.3359V14.1666Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.external-link::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 13 14%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M0 2.86365H6.04218V4.301H1.43735V12.0627H9.19901V7.45788H10.6364V13.5H0V2.86365Z%27 fill=%27black%27/%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M11.5714 2.93917L5.73791 8.77271L4.72754 7.76239L10.5611 1.9288L6.14064 1.9288L6.14064 0.499978L13.0003 0.499978L13.0003 7.35944L11.5714 7.35944L11.5714 2.93917Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 13 14%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M0 2.86365H6.04218V4.301H1.43735V12.0627H9.19901V7.45788H10.6364V13.5H0V2.86365Z%27 fill=%27black%27/%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M11.5714 2.93917L5.73791 8.77271L4.72754 7.76239L10.5611 1.9288L6.14064 1.9288L6.14064 0.499978L13.0003 0.499978L13.0003 7.35944L11.5714 7.35944L11.5714 2.93917Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.quote-marks::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 70 53%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M27.9799 0.686768V21.0133C27.9799 36.6967 17.6938 49.2731 3.21437 52.1326L0.471447 46.2156C7.17375 43.6939 11.4846 34.2697 11.4846 28.1891H0.457054V0.686768H27.9799ZM69.5414 0.686768V21.0133C69.5414 36.6967 59.2087 49.2766 44.7293 52.1326L41.9837 46.2168C48.6912 43.6926 53.0015 34.2692 53.0015 28.1891H42.0194V0.686768H69.5414Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 70 53%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M27.9799 0.686768V21.0133C27.9799 36.6967 17.6938 49.2731 3.21437 52.1326L0.471447 46.2156C7.17375 43.6939 11.4846 34.2697 11.4846 28.1891H0.457054V0.686768H27.9799ZM69.5414 0.686768V21.0133C69.5414 36.6967 59.2087 49.2766 44.7293 52.1326L41.9837 46.2168C48.6912 43.6926 53.0015 34.2692 53.0015 28.1891H42.0194V0.686768H69.5414Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.check::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 11 9%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.91308 4.03516H1.91326C1.99256 4.03525 2.07081 4.05331 2.14213 4.08798C2.21341 4.12262 2.27591 4.17295 2.32497 4.2352L1.91308 4.03516ZM1.91308 4.03516H1.09394C0.890308 4.03516 0.776602 4.26975 0.902321 4.4292L0.902371 4.42927L4.11214 8.49567L4.11218 8.49573C4.32247 8.76188 4.72568 8.76114 4.93667 8.49617L4.93708 8.49566L10.6597 1.24398C10.6598 1.24378 10.66 1.24358 10.6602 1.24338C10.7884 1.08295 10.6699 0.85 10.4689 0.85H9.6498C9.48941 0.85 9.33668 0.9235 9.2376 1.05044C9.23751 1.05055 9.23742 1.05066 9.23734 1.05077L4.52403 7.02157M1.91308 4.03516L4.52403 7.02157M4.52403 7.02157L2.32506 4.23531L4.52403 7.02157Z%27 fill=%27white%27 stroke=%27%23E74300%27 stroke-width=%270.3%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 11 9%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.91308 4.03516H1.91326C1.99256 4.03525 2.07081 4.05331 2.14213 4.08798C2.21341 4.12262 2.27591 4.17295 2.32497 4.2352L1.91308 4.03516ZM1.91308 4.03516H1.09394C0.890308 4.03516 0.776602 4.26975 0.902321 4.4292L0.902371 4.42927L4.11214 8.49567L4.11218 8.49573C4.32247 8.76188 4.72568 8.76114 4.93667 8.49617L4.93708 8.49566L10.6597 1.24398C10.6598 1.24378 10.66 1.24358 10.6602 1.24338C10.7884 1.08295 10.6699 0.85 10.4689 0.85H9.6498C9.48941 0.85 9.33668 0.9235 9.2376 1.05044C9.23751 1.05055 9.23742 1.05066 9.23734 1.05077L4.52403 7.02157M1.91308 4.03516L4.52403 7.02157M4.52403 7.02157L2.32506 4.23531L4.52403 7.02157Z%27 fill=%27white%27 stroke=%27%23E74300%27 stroke-width=%270.3%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.piggy-bank::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 60 53%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M26.4408 14.0605C24.0433 14.3579 21.7177 15.0786 19.5721 16.1889C11.9295 20.252 10.6719 26.8305 10.6719 31.9578C10.6719 37.0851 12.8969 44.631 21.12 51.3062H28.1822V47.4365L36.7922 47.9202C37.414 49.1233 38.1597 50.2581 39.0173 51.3062H45.499V45.5017C47.5623 44.05 49.5035 42.4323 51.3035 40.6646C54.109 40.9548 57.0113 38.7297 58.0754 32.248C58.0754 31.2806 57.5917 30.9904 57.108 30.9904C56.078 30.9005 55.0837 30.569 54.2058 30.023C53.8188 29.5393 52.6579 25.4761 50.5296 22.2836C51.3397 20.2598 52.717 18.5129 54.496 17.253C51.7872 15.8986 48.9817 14.9312 43.4674 15.5117C42.0163 15.2215 39.5977 14.641 37.2759 14.254%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M31.9581 16.4787C36.2324 16.4787 39.6975 13.0137 39.6975 8.73936C39.6975 4.46503 36.2324 1 31.9581 1C27.6838 1 24.2188 4.46503 24.2188 8.73936C24.2188 13.0137 27.6838 16.4787 31.9581 16.4787Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M10.6742 31.9573C7.86868 31.6671 1 30.6029 1 33.8922C1 37.1814 2.8381 37.1814 4.67619 36.4075C6.51429 35.6335 8.8361 31.0866 1 28.0876M25.8627 19.4776C29.84 18.1183 34.1507 18.0844 38.1489 19.3809%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M45.5025 29.0551C46.0368 29.0551 46.4699 28.6219 46.4699 28.0877C46.4699 27.5534 46.0368 27.1202 45.5025 27.1202C44.9682 27.1202 44.5351 27.5534 44.5351 28.0877C44.5351 28.6219 44.9682 29.0551 45.5025 29.0551Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 60 53%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M26.4408 14.0605C24.0433 14.3579 21.7177 15.0786 19.5721 16.1889C11.9295 20.252 10.6719 26.8305 10.6719 31.9578C10.6719 37.0851 12.8969 44.631 21.12 51.3062H28.1822V47.4365L36.7922 47.9202C37.414 49.1233 38.1597 50.2581 39.0173 51.3062H45.499V45.5017C47.5623 44.05 49.5035 42.4323 51.3035 40.6646C54.109 40.9548 57.0113 38.7297 58.0754 32.248C58.0754 31.2806 57.5917 30.9904 57.108 30.9904C56.078 30.9005 55.0837 30.569 54.2058 30.023C53.8188 29.5393 52.6579 25.4761 50.5296 22.2836C51.3397 20.2598 52.717 18.5129 54.496 17.253C51.7872 15.8986 48.9817 14.9312 43.4674 15.5117C42.0163 15.2215 39.5977 14.641 37.2759 14.254%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M31.9581 16.4787C36.2324 16.4787 39.6975 13.0137 39.6975 8.73936C39.6975 4.46503 36.2324 1 31.9581 1C27.6838 1 24.2188 4.46503 24.2188 8.73936C24.2188 13.0137 27.6838 16.4787 31.9581 16.4787Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M10.6742 31.9573C7.86868 31.6671 1 30.6029 1 33.8922C1 37.1814 2.8381 37.1814 4.67619 36.4075C6.51429 35.6335 8.8361 31.0866 1 28.0876M25.8627 19.4776C29.84 18.1183 34.1507 18.0844 38.1489 19.3809%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M45.5025 29.0551C46.0368 29.0551 46.4699 28.6219 46.4699 28.0877C46.4699 27.5534 46.0368 27.1202 45.5025 27.1202C44.9682 27.1202 44.5351 27.5534 44.5351 28.0877C44.5351 28.6219 44.9682 29.0551 45.5025 29.0551Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.money-bag::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 48 59%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M29.4082 16.151C29.4082 16.151 46.4531 29.4082 46.4531 48.347C46.4531 50.8584 45.4554 53.267 43.6796 55.0428C41.9037 56.8187 39.4951 57.8164 36.9837 57.8164H10.4694C7.95795 57.8164 5.54938 56.8187 3.77352 55.0428C1.99767 53.267 1 50.8584 1 48.347C1 29.4082 18.0449 16.151 18.0449 16.151C18.0449 16.151 6.68164 6.30286 6.68164 2.89388C6.68164 -0.515103 14.2571 4.78776 18.0449 4.78776C23.4425 4.78776 24.0106 1 27.5143 1C31.018 1 31.3967 4.88245 36.9837 4.88245C39.067 4.88245 35.0898 10.5641 29.4082 16.151Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M18.043 16.151H30.3532C34.7813 16.4329 39.1597 15.0857 42.6634 12.3633M40.7695 19.9388C43.4209 19.9388 45.5042 20.8857 46.4511 22.7796%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M15.3906 48.3476H30.5417M16.1482 38.8782H29.4053M31.2992 31.3027C31.2992 29.7959 30.7006 28.3507 29.6351 27.2852C28.5696 26.2197 27.1244 25.6211 25.6176 25.6211C24.1107 25.6211 22.6656 26.2197 21.6 27.2852C20.5345 28.3507 19.9359 29.7959 19.9359 31.3027V43.8023C19.9359 46.075 19.1784 48.3476 15.3906 48.3476%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 48 59%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M29.4082 16.151C29.4082 16.151 46.4531 29.4082 46.4531 48.347C46.4531 50.8584 45.4554 53.267 43.6796 55.0428C41.9037 56.8187 39.4951 57.8164 36.9837 57.8164H10.4694C7.95795 57.8164 5.54938 56.8187 3.77352 55.0428C1.99767 53.267 1 50.8584 1 48.347C1 29.4082 18.0449 16.151 18.0449 16.151C18.0449 16.151 6.68164 6.30286 6.68164 2.89388C6.68164 -0.515103 14.2571 4.78776 18.0449 4.78776C23.4425 4.78776 24.0106 1 27.5143 1C31.018 1 31.3967 4.88245 36.9837 4.88245C39.067 4.88245 35.0898 10.5641 29.4082 16.151Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M18.043 16.151H30.3532C34.7813 16.4329 39.1597 15.0857 42.6634 12.3633M40.7695 19.9388C43.4209 19.9388 45.5042 20.8857 46.4511 22.7796%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M15.3906 48.3476H30.5417M16.1482 38.8782H29.4053M31.2992 31.3027C31.2992 29.7959 30.7006 28.3507 29.6351 27.2852C28.5696 26.2197 27.1244 25.6211 25.6176 25.6211C24.1107 25.6211 22.6656 26.2197 21.6 27.2852C20.5345 28.3507 19.9359 29.7959 19.9359 31.3027V43.8023C19.9359 46.075 19.1784 48.3476 15.3906 48.3476%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.coins::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 61 59%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M49.597 51.735C47.6531 51.735 35.1151 57.3722 28.2143 57.3722C24.1322 57.3722 20.536 55.234 12.6633 51.5406C8.9699 49.7911 1 45.1258 1 41.8212C1 38.5166 11.5941 42.8903 20.536 45.709M49.597 34.0457H59.3164V55.4283H49.597V34.0457Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M32.1974 16.551C36.4917 16.551 39.9729 13.0698 39.9729 8.77551C39.9729 4.48122 36.4917 1 32.1974 1C27.9031 1 24.4219 4.48122 24.4219 8.77551C24.4219 13.0698 27.9031 16.551 32.1974 16.551Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M18.4941 34.0459C22.7884 34.0459 26.2696 30.5647 26.2696 26.2704C26.2696 21.9761 22.7884 18.4949 18.4941 18.4949C14.1998 18.4949 10.7185 21.9761 10.7185 26.2704C10.7185 30.5647 14.1998 34.0459 18.4941 34.0459Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M34.1423 49.5974H24.4229C23.3918 49.5974 22.4029 49.1878 21.6739 48.4587C20.9448 47.7296 20.5352 46.7407 20.5352 45.7096C20.5352 44.6785 20.9448 43.6897 21.6739 42.9606C22.4029 42.2315 23.3918 41.8219 24.4229 41.8219H28.3107C39.9739 41.8219 36.0862 35.9902 49.6933 35.9902%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 61 59%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M49.597 51.735C47.6531 51.735 35.1151 57.3722 28.2143 57.3722C24.1322 57.3722 20.536 55.234 12.6633 51.5406C8.9699 49.7911 1 45.1258 1 41.8212C1 38.5166 11.5941 42.8903 20.536 45.709M49.597 34.0457H59.3164V55.4283H49.597V34.0457Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M32.1974 16.551C36.4917 16.551 39.9729 13.0698 39.9729 8.77551C39.9729 4.48122 36.4917 1 32.1974 1C27.9031 1 24.4219 4.48122 24.4219 8.77551C24.4219 13.0698 27.9031 16.551 32.1974 16.551Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M18.4941 34.0459C22.7884 34.0459 26.2696 30.5647 26.2696 26.2704C26.2696 21.9761 22.7884 18.4949 18.4941 18.4949C14.1998 18.4949 10.7185 21.9761 10.7185 26.2704C10.7185 30.5647 14.1998 34.0459 18.4941 34.0459Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M34.1423 49.5974H24.4229C23.3918 49.5974 22.4029 49.1878 21.6739 48.4587C20.9448 47.7296 20.5352 46.7407 20.5352 45.7096C20.5352 44.6785 20.9448 43.6897 21.6739 42.9606C22.4029 42.2315 23.3918 41.8219 24.4229 41.8219H28.3107C39.9739 41.8219 36.0862 35.9902 49.6933 35.9902%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.calendar::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 33 29%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M31.5 1.5H1.5V6.5H31.5V1.5ZM1.5 27.5V8H31.5V27.5H1.5ZM1.5 0H0V1.5V27.5V29H1.5H31.5H33V27.5V1.5V0H31.5H1.5ZM7.5 12.5H10.2273V15.5H7.5V12.5ZM6 11H7.5H10.2273H11.7273V12.5V15.5V17H10.2273H7.5H6V15.5V12.5V11ZM17.8636 12.5H15.1364V15.5H17.8636V12.5ZM15.1364 11H13.6364V12.5V15.5V17H15.1364H17.8636H19.3636V15.5V12.5V11H17.8636H15.1364ZM22.7727 12.5H25.5V15.5H22.7727V12.5ZM21.2727 11H22.7727H25.5H27V12.5V15.5V17H25.5H22.7727H21.2727V15.5V12.5V11ZM10.2273 20.5H7.5V23.5H10.2273V20.5ZM7.5 19H6V20.5V23.5V25H7.5H10.2273H11.7273V23.5V20.5V19H10.2273H7.5ZM15.1364 20.5H17.8636V23.5H15.1364V20.5ZM13.6364 19H15.1364H17.8636H19.3636V20.5V23.5V25H17.8636H15.1364H13.6364V23.5V20.5V19ZM25.5 20.5H22.7727V23.5H25.5V20.5ZM22.7727 19H21.2727V20.5V23.5V25H22.7727H25.5H27V23.5V20.5V19H25.5H22.7727ZM5.4 5.39998C6.1732 5.39998 6.8 4.77317 6.8 3.99998C6.8 3.22678 6.1732 2.59998 5.4 2.59998C4.6268 2.59998 4 3.22678 4 3.99998C4 4.77317 4.6268 5.39998 5.4 5.39998ZM10.8 3.99998C10.8 4.77317 10.1732 5.39998 9.4 5.39998C8.6268 5.39998 8 4.77317 8 3.99998C8 3.22678 8.6268 2.59998 9.4 2.59998C10.1732 2.59998 10.8 3.22678 10.8 3.99998ZM13.4 5.39998C14.1732 5.39998 14.8 4.77317 14.8 3.99998C14.8 3.22678 14.1732 2.59998 13.4 2.59998C12.6268 2.59998 12 3.22678 12 3.99998C12 4.77317 12.6268 5.39998 13.4 5.39998Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 33 29%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M31.5 1.5H1.5V6.5H31.5V1.5ZM1.5 27.5V8H31.5V27.5H1.5ZM1.5 0H0V1.5V27.5V29H1.5H31.5H33V27.5V1.5V0H31.5H1.5ZM7.5 12.5H10.2273V15.5H7.5V12.5ZM6 11H7.5H10.2273H11.7273V12.5V15.5V17H10.2273H7.5H6V15.5V12.5V11ZM17.8636 12.5H15.1364V15.5H17.8636V12.5ZM15.1364 11H13.6364V12.5V15.5V17H15.1364H17.8636H19.3636V15.5V12.5V11H17.8636H15.1364ZM22.7727 12.5H25.5V15.5H22.7727V12.5ZM21.2727 11H22.7727H25.5H27V12.5V15.5V17H25.5H22.7727H21.2727V15.5V12.5V11ZM10.2273 20.5H7.5V23.5H10.2273V20.5ZM7.5 19H6V20.5V23.5V25H7.5H10.2273H11.7273V23.5V20.5V19H10.2273H7.5ZM15.1364 20.5H17.8636V23.5H15.1364V20.5ZM13.6364 19H15.1364H17.8636H19.3636V20.5V23.5V25H17.8636H15.1364H13.6364V23.5V20.5V19ZM25.5 20.5H22.7727V23.5H25.5V20.5ZM22.7727 19H21.2727V20.5V23.5V25H22.7727H25.5H27V23.5V20.5V19H25.5H22.7727ZM5.4 5.39998C6.1732 5.39998 6.8 4.77317 6.8 3.99998C6.8 3.22678 6.1732 2.59998 5.4 2.59998C4.6268 2.59998 4 3.22678 4 3.99998C4 4.77317 4.6268 5.39998 5.4 5.39998ZM10.8 3.99998C10.8 4.77317 10.1732 5.39998 9.4 5.39998C8.6268 5.39998 8 4.77317 8 3.99998C8 3.22678 8.6268 2.59998 9.4 2.59998C10.1732 2.59998 10.8 3.22678 10.8 3.99998ZM13.4 5.39998C14.1732 5.39998 14.8 4.77317 14.8 3.99998C14.8 3.22678 14.1732 2.59998 13.4 2.59998C12.6268 2.59998 12 3.22678 12 3.99998C12 4.77317 12.6268 5.39998 13.4 5.39998Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.clock::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 59 59%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M29.1582 57.3164C44.7095 57.3164 57.3164 44.7095 57.3164 29.1582C57.3164 13.6068 44.7095 1 29.1582 1C13.6068 1 1 13.6068 1 29.1582C1 44.7095 13.6068 57.3164 29.1582 57.3164Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M29.1566 5.69336V10.3864M29.1566 47.9306V52.6237M5.69141 29.1585H10.3844M47.9287 29.1585H52.6217%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M29.1585 31.9741C30.1952 31.9741 31.0357 31.1337 31.0357 30.0969C31.0357 29.0602 30.1952 28.2197 29.1585 28.2197C28.1217 28.2197 27.2812 29.0602 27.2812 30.0969C27.2812 31.1337 28.1217 31.9741 29.1585 31.9741Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M27.3583 29.5635L18.832 22.5878M44.1744 16.0176L30.8668 29.3251%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 59 59%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M29.1582 57.3164C44.7095 57.3164 57.3164 44.7095 57.3164 29.1582C57.3164 13.6068 44.7095 1 29.1582 1C13.6068 1 1 13.6068 1 29.1582C1 44.7095 13.6068 57.3164 29.1582 57.3164Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M29.1566 5.69336V10.3864M29.1566 47.9306V52.6237M5.69141 29.1585H10.3844M47.9287 29.1585H52.6217%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M29.1585 31.9741C30.1952 31.9741 31.0357 31.1337 31.0357 30.0969C31.0357 29.0602 30.1952 28.2197 29.1585 28.2197C28.1217 28.2197 27.2812 29.0602 27.2812 30.0969C27.2812 31.1337 28.1217 31.9741 29.1585 31.9741Z%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M27.3583 29.5635L18.832 22.5878M44.1744 16.0176L30.8668 29.3251%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.has-icon, .has-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content
}

    .has-icon span {
        margin-left: 1rem;
        transition: all 0.3s ease;
        flex-shrink: 0
    }

        .has-icon span::after {
            margin: 0
        }

.reverse {
    flex-direction: row-reverse
}

    .reverse::after {
        margin-left: 0;
        margin-right: 1rem
    }

    .reverse span {
        margin-left: 0;
        margin-right: 1rem
    }

        .reverse span::after {
            margin: 0
        }

.no-text::after {
    margin: 0
}

.round.no-text, .round:not(.no-text) span {
    border-radius: 50%;
    border: 2px solid;
    width: 3rem;
    height: 3rem
}

    .round.no-text span::after, .round.no-text::after, .round:not(.no-text) span span::after, .round:not(.no-text) span::after {
        width: 1.4rem;
        height: 1.4rem
    }

@media (min-width: 992px) {
    .round.no-text, .round:not(.no-text) span {
        width: 3.5rem;
        height: 3.5rem
    }
}

@font-face {
    font-family: 'GeneralSans';
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Bold.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Bold.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Bold.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Bold.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Bold.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Bold.svg#GeneralSans-Bold) format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'GeneralSans';
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-BoldItalic.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-BoldItalic.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-BoldItalic.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-BoldItalic.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-BoldItalic.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-BoldItalic.svg#GeneralSans-BoldItalic) format("svg");
    font-weight: bold;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: 'GeneralSans';
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Light.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Light.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Light.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Light.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Light.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Light.svg#GeneralSans-Light) format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'GeneralSans';
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Italic.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Italic.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Italic.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Italic.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Italic.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Italic.svg#GeneralSans-Italic) format("svg");
    font-weight: normal;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: 'GeneralSans';
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-LightItalic.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-LightItalic.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-LightItalic.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-LightItalic.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-LightItalic.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-LightItalic.svg#GeneralSans-LightItalic) format("svg");
    font-weight: 300;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: 'GeneralSans';
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Medium.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Medium.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Medium.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Medium.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Medium.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Medium.svg#GeneralSans-Medium) format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'GeneralSans';
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-MediumItalic.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-MediumItalic.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-MediumItalic.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-MediumItalic.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-MediumItalic.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-MediumItalic.svg#GeneralSans-MediumItalic) format("svg");
    font-weight: 500;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: 'GeneralSans';
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Regular.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Regular.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Regular.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Regular.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Regular.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/GeneralSans-Regular.svg#GeneralSans-Regular) format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'RobotoSlab';
    src: url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Bold.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Bold.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Bold.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Bold.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Bold.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Bold.svg#RobotoSlab-Bold) format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'RobotoSlab';
    src: url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-ExtraBold.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-ExtraBold.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-ExtraBold.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-ExtraBold.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-ExtraBold.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-ExtraBold.svg#RobotoSlab-ExtraBold) format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'RobotoSlab';
    src: url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Light.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Light.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Light.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Light.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Light.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Light.svg#RobotoSlab-Light) format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'RobotoSlab';
    src: url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Medium.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Medium.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Medium.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Medium.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Medium.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Medium.svg#RobotoSlab-Medium) format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'RobotoSlab';
    src: url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Regular.eot);
    src: url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Regular.eot?#iefix) format("embedded-opentype"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Regular.woff2) format("woff2"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Regular.woff) format("woff"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Regular.ttf) format("truetype"),url(https://www.turn2us.org.uk/assets/fonts/RobotoSlab-Regular.svg#RobotoSlab-Regular) format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

.wysiwyg h1, .wysiwyg .h1, .tabbedContent .tab-list__content-header, h1, .h1 {
    font-family: "GeneralSans","Arial",sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 120%;
    transition: all 0.3s ease
}

@media (min-width: 992px) {
    .wysiwyg h1, .wysiwyg .h1, .tabbedContent .tab-list__content-header, h1, .h1 {
        font-size: 4.4rem
    }
}

.h2--stats, .wysiwyg h2, .wysiwyg .h2, .warningMessage--myt2u-error li, h2, .h2 {
    font-family: "GeneralSans","Arial",sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 120%;
    transition: all 0.3s ease
}

@media (min-width: 992px) {
    .h2--stats, .wysiwyg h2, .wysiwyg .h2, .warningMessage--myt2u-error li, h2, .h2 {
        font-size: 3rem
    }
}

.h2--stats {
    transition: all 0.3s ease
}

@media (min-width: 992px) {
    .h2--stats {
        font-size: 3.6rem
    }
}

.wysiwyg h3, .wysiwyg .h3, .pageIntro p, .pageIntro .wysiwyg p, h3, .h3 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 120%;
    transition: all 0.3s ease
}

.wysiwyg h4, .wysiwyg .h4, .card__title a, .tileCard__title, .contactDetails__header, .searchResultsInfo h2, .searchResultsInfo .h2, .tabbedContent .tab-list .tileCard__title a, .warningMessage__content p, footer:not(.myt2uForm__footer) #footer__address-mobile, .header__search label[for="search"], .accordion h3, .accordion .h3, .formRow__privacyStatement h3, .formRow__privacyStatement .h3, .inPageNavigation ul li a.button, .quickLinks .accordion h3, .quickLinks .accordion .h3, .sideMenu .accordion h2, .sideMenu .accordion .h2, .situationRow__leftPanel h3, .situationRow__leftPanel .h3, .situationRow__rightPanel h3, .situationRow__rightPanel .h3, h4, .h4 {
    font-family: "GeneralSans","Arial",sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 120%;
    transition: all 0.3s ease
}

@media (min-width: 992px) {
    .wysiwyg h4, .wysiwyg .h4, .card__title a, .tileCard__title, .contactDetails__header, .searchResultsInfo h2, .searchResultsInfo .h2, .tabbedContent .tab-list .tileCard__title a, .warningMessage__content p, footer:not(.myt2uForm__footer) #footer__address-mobile, .header__search label[for="search"], .accordion h3, .accordion .h3, .formRow__privacyStatement h3, .formRow__privacyStatement .h3, .inPageNavigation ul li a.button, .quickLinks .accordion h3, .quickLinks .accordion .h3, .sideMenu .accordion h2, .sideMenu .accordion .h2, .situationRow__leftPanel h3, .situationRow__leftPanel .h3, .situationRow__rightPanel h3, .situationRow__rightPanel .h3, h4, .h4 {
        font-size: 2rem
    }
}

.wysiwyg h5, .wysiwyg .h5, footer:not(.myt2uForm__footer) #footer__address-desktop, .iconList__list li, .iconList__list li p, .situationsList .accordion--situationsList h3, .situationsList .accordion--situationsList .h3, h5, .h5 {
    font-family: "GeneralSans","Arial",sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 120%;
    transition: all 0.3s ease
}

@media (min-width: 992px) {
    .wysiwyg h5, .wysiwyg .h5, footer:not(.myt2uForm__footer) #footer__address-desktop, .iconList__list li, .iconList__list li p, .situationsList .accordion--situationsList h3, .situationsList .accordion--situationsList .h3, h5, .h5 {
        font-size: 1.8rem
    }
}

.wysiwyg h6, .wysiwyg .h6, .wysiwyg table th, .wysiwyg table td, table:not(.ui-datepicker-calendar) th, table:not(.ui-datepicker-calendar) td, .card__label, .card__subtitle, .card__detail, .listCard__tag, .cardsList__resultsCount h2, .cardsList__resultsCount .h2, .filters__form label, .form--kentico label, .myt2uForm label, .clientInformations__details, .clientNotes__note-date, .clientNotes__note-title, .myt2uForm__tooltip-block-tooltip p, .tableForm__tooltip-block-tooltip p, .myt2uForm__group-title h2, .myt2uForm__group-title .h2, .tableForm__group-title h2, .tableForm__group-title .h2, .myt2uForm fieldset .myt2uForm__text-row h2, .myt2uForm fieldset .myt2uForm__text-row .h2, .tableForm fieldset .myt2uForm__text-row h2, .tableForm fieldset .myt2uForm__text-row .h2, .detailsInfo__key, .summary__item-key, .downloadRow__list li, .heroRow .heroRow__details dl > div dt, .heroRow .heroRow__details dl > div dd, .keyStatistics__item-quote, .socialShare h2, .socialShare .h2, .accordion--video button.accordion__trigger, h6, .h6 {
    font-family: "GeneralSans","Arial",sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 120%;
    transition: all 0.3s ease
}

.wysiwyg p a, .card__tags .card__tag a, .tileCard__tag a, .form--kentico .explanation-text a, .myt2uForm .explanation-text a, .form--kentico .formwidget-submit-text a, .myt2uForm .formwidget-submit-text a, .form--kentico input[type="text"] a, .form--kentico input[type="email"] a, .form--kentico input[type="number"] a, .form--kentico input[type="password"] a, .form--kentico input[type="date" i] a, .form--kentico input[type="tel"] a, .form--kentico textarea a, .myt2uForm input[type="text"] a, .myt2uForm input[type="email"] a, .myt2uForm input[type="number"] a, .myt2uForm input[type="password"] a, .myt2uForm input[type="date" i] a, .myt2uForm input[type="tel"] a, .myt2uForm textarea a, .detailsInfo__value a, .heroRow .heroRow__tags ul li a, p a, .wysiwyg ul li a:not(.button), .sideMenu .accordion__panel ol li a:not(.button), ul li a:not(.button), .wysiwyg ol li a:not(.button), .card__summary .wysiwyg a, .myt2uForm .wysiwyg a:not(.button), .tableForm .wysiwyg a:not(.button), .clientsTable table a {
    font-size: 1.6rem;
    font-weight: 300;
    color: #000;
    transition: all 0.3s ease
}

    .card__tags .card__tag a:hover, .tileCard__tag a:hover, .form--kentico .explanation-text a:hover, .myt2uForm .explanation-text a:hover, .form--kentico .formwidget-submit-text a:hover, .myt2uForm .formwidget-submit-text a:hover, .form--kentico input[type="text"] a:hover, .form--kentico input[type="email"] a:hover, .form--kentico input[type="number"] a:hover, .form--kentico input[type="password"] a:hover, .form--kentico input[type="date" i] a:hover, .form--kentico input[type="tel"] a:hover, .form--kentico textarea a:hover, .myt2uForm input[type="text"] a:hover, .myt2uForm input[type="email"] a:hover, .myt2uForm input[type="number"] a:hover, .myt2uForm input[type="password"] a:hover, .myt2uForm input[type="date" i] a:hover, .myt2uForm input[type="tel"] a:hover, .myt2uForm textarea a:hover, .detailsInfo__value a:hover, .heroRow .heroRow__tags ul li a:hover, p a:hover, .sideMenu .accordion__panel ol li a:hover:not(.button), ul li a:hover:not(.button), .wysiwyg ol li a:hover:not(.button), .card__summary .wysiwyg a:hover, .myt2uForm .wysiwyg a:hover:not(.button), .tableForm .wysiwyg a:hover:not(.button), .clientsTable table a:hover {
        color: #D93F00
    }

a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button) {
    position: relative;
    padding-right: 2rem
}

    a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button)::after {
        content: '';
        position: absolute;
        bottom: 0.4rem;
        width: 1.4rem;
        height: 1.4rem;
        margin-left: 0.4rem;
        margin-top: 0.4rem;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        -webkit-mask-position: center;
        -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 13 14%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M0 2.86365H6.04218V4.301H1.43735V12.0627H9.19901V7.45788H10.6364V13.5H0V2.86365Z%27 fill=%27black%27/%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M11.5714 2.93917L5.73791 8.77271L4.72754 7.76239L10.5611 1.9288L6.14064 1.9288L6.14064 0.499978L13.0003 0.499978L13.0003 7.35944L11.5714 7.35944L11.5714 2.93917Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
        mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 13 14%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M0 2.86365H6.04218V4.301H1.43735V12.0627H9.19901V7.45788H10.6364V13.5H0V2.86365Z%27 fill=%27black%27/%3e%3cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M11.5714 2.93917L5.73791 8.77271L4.72754 7.76239L10.5611 1.9288L6.14064 1.9288L6.14064 0.499978L13.0003 0.499978L13.0003 7.35944L11.5714 7.35944L11.5714 2.93917Z%27 fill=%27black%27/%3e%3c/svg%3e") no-repeat center;
        background-color: #000;
        transition: all 0.3s ease
    }

    a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button):hover::after, a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button):visited::after {
        background-color: #D93F00
    }

h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    color: #000;
    transition: all 0.3s ease
}

    h2 a:hover, .h2 a:hover, h3 a:hover, .h3 a:hover, h4 a:hover, .h4 a:hover, h5 a:hover, .h5 a:hover, h6 a:hover, .h6 a:hover {
        color: #D93F00
    }

.button, a.button, p a.button, .form--kentico input[type="file"]::-webkit-file-upload-button, .myt2uForm input[type="file"]::-webkit-file-upload-button, .form--kentico input[type="submit"], .form--kentico button[type="submit"], .myt2uForm input[type="submit"], .myt2uForm button[type="submit"] {
    font-size: 1.6rem;
    font-family: "GeneralSans","Arial",sans-serif;
    font-weight: 500
}

@media (min-width: 992px) {
    .button, a.button, p a.button, .form--kentico input[type="file"]::-webkit-file-upload-button, .myt2uForm input[type="file"]::-webkit-file-upload-button, .form--kentico input[type="submit"], .form--kentico button[type="submit"], .myt2uForm input[type="submit"], .myt2uForm button[type="submit"] {
        font-size: 1.8rem
    }
}

.wysiwyg p, .card__tags .card__tag, .tileCard__tag, .form--kentico .explanation-text, .myt2uForm .explanation-text, .form--kentico .formwidget-submit-text, .myt2uForm .formwidget-submit-text, .form--kentico input[type="text"], .form--kentico input[type="email"], .form--kentico input[type="number"], .form--kentico input[type="password"], .form--kentico input[type="date" i], .form--kentico input[type="tel"], .form--kentico textarea, .myt2uForm input[type="text"], .myt2uForm input[type="email"], .myt2uForm input[type="number"], .myt2uForm input[type="password"], .myt2uForm input[type="date" i], .myt2uForm input[type="tel"], .myt2uForm textarea, .detailsInfo__value, .heroRow .heroRow__tags ul li, p {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 140%
}

.wysiwyg figcaption, .imageGallery__slider .imageGallery__slide figure figcaption p, figcaption {
    font-family: "GeneralSans","Arial",sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 120%
}

@media (min-width: 992px) {
    .wysiwyg figcaption, .imageGallery__slider .imageGallery__slide figure figcaption p, figcaption {
        line-height: 140%
    }
}

.wysiwyg .tag, .tag {
    font-family: "RobotoSlab","Helvetica","Arial",sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 140%
}

.wysiwyg .label, .heroRow--job .heroRow__tag p, .label {
    font-family: "GeneralSans","Arial",sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.6rem
}

.wysiwyg blockquote, blockquote {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 120%
}

@media (min-width: 992px) {
    .wysiwyg blockquote, blockquote {
        font-size: 2rem;
        line-height: 140%
    }
}

.wysiwyg ul, .sideMenu .accordion__panel ol, ul {
    font-size: 1.6rem;
    font-weight: 300
}

    .wysiwyg ul li a:not(.button), .sideMenu .accordion__panel ol li a:not(.button), ul li a:not(.button) {
        line-height: 200% !important
    }

    .wysiwyg ul li p:last-child, .sideMenu .accordion__panel ol li p:last-child, ul li p:last-child {
        margin-bottom: 0
    }

.wysiwyg ul, .relatedContent ul, .quickLinks .accordion__panel ul {
    padding-left: 1rem
}

    .wysiwyg ul li, .relatedContent ul li, .quickLinks .accordion__panel ul li {
        padding-left: 1rem
    }

        .wysiwyg ul li::marker, .relatedContent ul li::marker, .quickLinks .accordion__panel ul li::marker {
            content: '-'
        }

.wysiwyg ol {
    display: table;
    font-size: 1.6rem;
    font-weight: 300;
    counter-reset: item;
    padding-left: 0
}

    .wysiwyg ol li {
        display: table-row;
        position: relative
    }

        .wysiwyg ol li:before {
            display: table-cell;
            content: counters(item, ".") ".";
            counter-increment: item;
            padding-right: 0.5rem
        }

    .wysiwyg ol ol {
        margin-bottom: 0
    }

        .wysiwyg ol ol li:after {
            display: none
        }

form {
    font-family: "RobotoSlab","Helvetica","Arial",sans-serif
}

.wysiwyg h3, .wysiwyg .h3 {
    font-family: "GeneralSans","Arial",sans-serif;
    font-weight: 500
}

.wysiwyg a:not(.button):visited {
    color: #D93F00
}

.wysiwyg :where(h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6,p):empty {
    display: none
}

.show-flex {
    display: flex !important
}

html {
    font-size: 62.5%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -webkit-overflow-scrolling: touch;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 9.4rem
}

@media (min-width: 1220px) {
    html {
        scroll-padding-top: 17.8rem
    }
}

body {
    font-family: "RobotoSlab","Helvetica","Arial",sans-serif;
    font-size: 1rem;
    color: #000;
    overflow-x: hidden
}

.lock-scroll {
    overflow: hidden;
    height: 100vh;
    max-height: 100vh
}

    .lock-scroll::after {
        content: '';
        background-color: rgba(0,0,0,0.5);
        width: 100%;
        height: 100%;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        z-index: 3
    }

    .lock-scroll .header + main > *:first-child:not([class*='bg--']) {
        border-top: 2px solid transparent
    }

main {
    transition: all 0.3s ease
}

.wysiwyg h1, .wysiwyg .h1, .tabbedContent .tab-list__content-header, h1, .h1, .h2--stats, .wysiwyg h2, .wysiwyg .h2, .warningMessage--myt2u-error li, h2, .h2, .wysiwyg h3, .wysiwyg .h3, .pageIntro p, .pageIntro .wysiwyg p, h3, .h3, .wysiwyg h4, .wysiwyg .h4, .card__title a, .tileCard__title, .contactDetails__header, .searchResultsInfo h2, .searchResultsInfo .h2, .tabbedContent .tab-list .tileCard__title a, .warningMessage__content p, footer:not(.myt2uForm__footer) #footer__address-mobile, .header__search label[for="search"], .accordion h3, .accordion .h3, .formRow__privacyStatement h3, .formRow__privacyStatement .h3, .inPageNavigation ul li a.button, .quickLinks .accordion h3, .quickLinks .accordion .h3, .sideMenu .accordion h2, .sideMenu .accordion .h2, .situationRow__leftPanel h3, .situationRow__leftPanel .h3, .situationRow__rightPanel h3, .situationRow__rightPanel .h3, h4, .h4, .wysiwyg h5, .wysiwyg .h5, footer:not(.myt2uForm__footer) #footer__address-desktop, .iconList__list li, .iconList__list li p, .situationsList .accordion--situationsList h3, .situationsList .accordion--situationsList .h3, h5, .h5, .wysiwyg h6, .wysiwyg .h6, .wysiwyg table th, .wysiwyg table td, table:not(.ui-datepicker-calendar) th, table:not(.ui-datepicker-calendar) td, .card__label, .card__subtitle, .card__detail, .listCard__tag, .cardsList__resultsCount h2, .cardsList__resultsCount .h2, .filters__form label, .form--kentico label, .myt2uForm label, .clientInformations__details, .clientNotes__note-date, .clientNotes__note-title, .myt2uForm__tooltip-block-tooltip p, .tableForm__tooltip-block-tooltip p, .myt2uForm__group-title h2, .myt2uForm__group-title .h2, .tableForm__group-title h2, .tableForm__group-title .h2, .myt2uForm fieldset .myt2uForm__text-row h2, .myt2uForm fieldset .myt2uForm__text-row .h2, .tableForm fieldset .myt2uForm__text-row h2, .tableForm fieldset .myt2uForm__text-row .h2, .detailsInfo__key, .summary__item-key, .downloadRow__list li, .heroRow .heroRow__details dl > div dt, .heroRow .heroRow__details dl > div dd, .keyStatistics__item-quote, .socialShare h2, .socialShare .h2, .accordion--video button.accordion__trigger, h6, .h6, .wysiwyg p, .card__tags .card__tag, .tileCard__tag, .form--kentico .explanation-text, .myt2uForm .explanation-text, .form--kentico .formwidget-submit-text, .myt2uForm .formwidget-submit-text, .form--kentico input[type="text"], .form--kentico input[type="email"], .form--kentico input[type="number"], .form--kentico input[type="password"], .form--kentico input[type="date" i], .form--kentico input[type="tel"], .form--kentico textarea, .myt2uForm input[type="text"], .myt2uForm input[type="email"], .myt2uForm input[type="number"], .myt2uForm input[type="password"], .myt2uForm input[type="date" i], .myt2uForm input[type="tel"], .myt2uForm textarea, .detailsInfo__value, .heroRow .heroRow__tags ul li, p, .wysiwyg ul, .wysiwyg ol, .tileCard--panel, .listCard, .form--kentico .form-field, .form--kentico .myt2uForm__field, .myt2uForm .form-field, .myt2uForm .myt2uForm__field, .clientInformations__item:not(:last-of-type), .clientNotes__note, .clientNotes form fieldset, .myt2uForm__header, .tableForm__header, .myt2uForm__tooltip-block-tooltip, .tableForm__tooltip-block-tooltip, .myt2uForm__group, .tableForm__group, .myt2uForm__text-row, .tableForm__text-row, .summary__item:not(:last-of-type), .ud-summary .myt2uForm__footer ul li, .featuredPromos .card__title, .formRow__intro, .heroRow--job .heroRow__tag, .quickLinks .accordion, .sideMenu .accordion {
    margin-bottom: 2rem
}

@media (min-width: 992px) {
    .wysiwyg h1, .wysiwyg .h1, .tabbedContent .tab-list__content-header, h1, .h1, .h2--stats, .wysiwyg h2, .wysiwyg .h2, .warningMessage--myt2u-error li, h2, .h2, .wysiwyg h3, .wysiwyg .h3, .pageIntro p, .pageIntro .wysiwyg p, h3, .h3, .wysiwyg h4, .wysiwyg .h4, .card__title a, .tileCard__title, .contactDetails__header, .searchResultsInfo h2, .searchResultsInfo .h2, .tabbedContent .tab-list .tileCard__title a, .warningMessage__content p, footer:not(.myt2uForm__footer) #footer__address-mobile, .header__search label[for="search"], .accordion h3, .accordion .h3, .formRow__privacyStatement h3, .formRow__privacyStatement .h3, .inPageNavigation ul li a.button, .quickLinks .accordion h3, .quickLinks .accordion .h3, .sideMenu .accordion h2, .sideMenu .accordion .h2, .situationRow__leftPanel h3, .situationRow__leftPanel .h3, .situationRow__rightPanel h3, .situationRow__rightPanel .h3, h4, .h4, .wysiwyg h5, .wysiwyg .h5, footer:not(.myt2uForm__footer) #footer__address-desktop, .iconList__list li, .iconList__list li p, .situationsList .accordion--situationsList h3, .situationsList .accordion--situationsList .h3, h5, .h5, .wysiwyg h6, .wysiwyg .h6, .wysiwyg table th, .wysiwyg table td, table:not(.ui-datepicker-calendar) th, table:not(.ui-datepicker-calendar) td, .card__label, .card__subtitle, .card__detail, .listCard__tag, .cardsList__resultsCount h2, .cardsList__resultsCount .h2, .filters__form label, .form--kentico label, .myt2uForm label, .clientInformations__details, .clientNotes__note-date, .clientNotes__note-title, .myt2uForm__tooltip-block-tooltip p, .tableForm__tooltip-block-tooltip p, .myt2uForm__group-title h2, .myt2uForm__group-title .h2, .tableForm__group-title h2, .tableForm__group-title .h2, .myt2uForm fieldset .myt2uForm__text-row h2, .myt2uForm fieldset .myt2uForm__text-row .h2, .tableForm fieldset .myt2uForm__text-row h2, .tableForm fieldset .myt2uForm__text-row .h2, .detailsInfo__key, .summary__item-key, .downloadRow__list li, .heroRow .heroRow__details dl > div dt, .heroRow .heroRow__details dl > div dd, .keyStatistics__item-quote, .socialShare h2, .socialShare .h2, .accordion--video button.accordion__trigger, h6, .h6, .wysiwyg p, .card__tags .card__tag, .tileCard__tag, .form--kentico .explanation-text, .myt2uForm .explanation-text, .form--kentico .formwidget-submit-text, .myt2uForm .formwidget-submit-text, .form--kentico input[type="text"], .form--kentico input[type="email"], .form--kentico input[type="number"], .form--kentico input[type="password"], .form--kentico input[type="date" i], .form--kentico input[type="tel"], .form--kentico textarea, .myt2uForm input[type="text"], .myt2uForm input[type="email"], .myt2uForm input[type="number"], .myt2uForm input[type="password"], .myt2uForm input[type="date" i], .myt2uForm input[type="tel"], .myt2uForm textarea, .detailsInfo__value, .heroRow .heroRow__tags ul li, p, .wysiwyg ul, .wysiwyg ol, .tileCard--panel, .listCard, .form--kentico .form-field, .form--kentico .myt2uForm__field, .myt2uForm .form-field, .myt2uForm .myt2uForm__field, .clientInformations__item:not(:last-of-type), .clientNotes__note, .clientNotes form fieldset, .myt2uForm__header, .tableForm__header, .myt2uForm__tooltip-block-tooltip, .tableForm__tooltip-block-tooltip, .myt2uForm__group, .tableForm__group, .myt2uForm__text-row, .tableForm__text-row, .summary__item:not(:last-of-type), .ud-summary .myt2uForm__footer ul li, .featuredPromos .card__title, .formRow__intro, .heroRow--job .heroRow__tag, .quickLinks .accordion, .sideMenu .accordion {
        margin-bottom: 3rem
    }
}

section .container .row:not(.g-0) > .col-12 > div:not(:last-child):not(.pageIntro):not(.socialShare), .wysiwyg table, table:not(.ui-datepicker-calendar), figure, .button, .tabbedContent .tab-list__toggle, .detailsInfo, .inPageNavigation, .socialShare, .wysiwyg .video__inLine {
    margin-bottom: 4rem
}

@media (min-width: 992px) {
    section .container .row:not(.g-0) > .col-12 > div:not(:last-child):not(.pageIntro):not(.socialShare), .wysiwyg table, table:not(.ui-datepicker-calendar), figure, .button, .tabbedContent .tab-list__toggle, .detailsInfo, .inPageNavigation, .socialShare, .wysiwyg .video__inLine {
        margin-bottom: 6rem
    }
}

section, .pagination, .imageGallery {
    padding-block: 4rem
}

@media (min-width: 992px) {
    section, .pagination, .imageGallery {
        padding-block: 6rem
    }
}

.split {
    padding: 0
}

    .split > .container {
        max-width: unset;
        margin: 0;
        padding: 0
    }

        .split > .container > .row {
            margin-right: unset;
            margin-left: unset
        }

            .split > .container > .row [class*="col-"] {
                padding: 0;
                display: flex;
                justify-content: flex-end;
                height: fit-content
            }

.row.g-0 {
    --bs-gutter-x: 3rem
}

section:not([class*='bg--']):not([class*=border--]) + section:not([class*='bg--']):not([class*=border--]) {
    padding-top: 0
}

.wysiwyg table, table:not(.ui-datepicker-calendar) {
    overflow-x: auto;
    display: block;
    scrollbar-width: thin
}

    .wysiwyg table::-webkit-scrollbar, table:not(.ui-datepicker-calendar)::-webkit-scrollbar {
        display: block;
        margin: 0 auto;
        height: 0.5rem
    }

@media (min-width: 992px) {
    .wysiwyg table::-webkit-scrollbar, table:not(.ui-datepicker-calendar)::-webkit-scrollbar {
        height: 1rem
    }
}

.wysiwyg table::-webkit-scrollbar-thumb, table:not(.ui-datepicker-calendar)::-webkit-scrollbar-thumb {
    background: #AEADAD
}

.wysiwyg table::-webkit-scrollbar-track, table:not(.ui-datepicker-calendar)::-webkit-scrollbar-track {
    background: #ECEEEF
}

.wysiwyg table thead, table:not(.ui-datepicker-calendar) thead {
    background-color: #F2F2F2;
    border-bottom: 2px solid #E74300
}

.wysiwyg table tbody tr, table:not(.ui-datepicker-calendar) tbody tr {
    border-bottom: 2px solid #F2F2F2
}

.wysiwyg table th, .wysiwyg table td, table:not(.ui-datepicker-calendar) th, table:not(.ui-datepicker-calendar) td {
    margin: 0;
    vertical-align: top;
    min-width: 14rem;
    max-width: 20rem
}

.wysiwyg table th, table:not(.ui-datepicker-calendar) th {
    padding: 1.5rem 1.5rem 1.3rem 1.5rem
}

.wysiwyg table td, table:not(.ui-datepicker-calendar) td {
    padding: 1.5rem
}

figure img {
    width: 100%
}

figure figcaption {
    padding: 1.4rem 1rem
}

.wysiwyg figure img {
    width: 100% !important;
    height: auto !important
}

.sr-only {
    text-indent: -999990px;
    text-indent: -99999rem
}

.bg--primary {
    background-color: #E74300
}

    .bg--primary .button:hover, .bg--primary .button:focus-visible {
        background-color: #fff
    }

    .bg--primary .accordion__trigger.round span {
        border-color: #fff;
        background-color: #fff
    }

@media (hover: hover) {
    .bg--primary .accordion__trigger:hover {
        background-color: #fff
    }

        .bg--primary .accordion__trigger:hover span::after, .bg--primary .accordion__trigger:hover::after {
            background-color: #000
        }

        .bg--primary .accordion__trigger:hover.round span {
            border-color: #E74300;
            background-color: #E74300
        }
}

.bg--primary .accordion__trigger:focus-visible {
    outline: none;
    background-color: #fff
}

    .bg--primary .accordion__trigger:focus-visible span::after, .bg--primary .accordion__trigger:focus-visible::after {
        background-color: #000
    }

    .bg--primary .accordion__trigger:focus-visible.round span {
        border-color: #E74300;
        background-color: #E74300
    }

.bg--primary .iconList li span.round.no-text {
    border-color: #fff;
    background-color: #fff
}

.bg--primary .downloadRow a.button:hover, .bg--primary .downloadRow a.button:focus-visible {
    background-color: #fff !important
}

    .bg--primary .downloadRow a.button:hover span, .bg--primary .downloadRow a.button:focus-visible span {
        border-color: #E74300;
        background-color: #E74300
    }

        .bg--primary .downloadRow a.button:hover span span::after, .bg--primary .downloadRow a.button:hover span::after, .bg--primary .downloadRow a.button:focus-visible span span::after, .bg--primary .downloadRow a.button:focus-visible span::after {
            background-color: #000
        }

.bg--primary .downloadRow a.button:hover {
    outline: none
}

.bg--primary .downloadRow a.button:focus-visible {
    outline: 2px solid #000
}

.bg--primary .downloadRow a.button span {
    background-color: #fff;
    border-color: #fff
}

.bg--primary .keyStatistics__item span.round.no-text {
    border-color: #fff;
    background-color: #fff
}

.bg--primary .keyStatistics__item-quote {
    border-top: 2px solid #000
}

.bg--primary + .pagination {
    background-color: #E74300
}

.bg--secondary {
    background-color: #F29CA7
}

    .bg--secondary .button:hover, .bg--secondary .button:focus-visible {
        background-color: #fff
    }

    .bg--secondary .accordion__trigger.round span {
        border-color: #fff;
        background-color: #fff
    }

@media (hover: hover) {
    .bg--secondary .accordion__trigger:hover {
        background-color: #fff
    }

        .bg--secondary .accordion__trigger:hover span::after, .bg--secondary .accordion__trigger:hover::after {
            background-color: #000
        }

        .bg--secondary .accordion__trigger:hover.round span {
            border-color: #F29CA7;
            background-color: #F29CA7
        }
}

.bg--secondary .accordion__trigger:focus-visible {
    outline: none;
    background-color: #fff
}

    .bg--secondary .accordion__trigger:focus-visible span::after, .bg--secondary .accordion__trigger:focus-visible::after {
        background-color: #000
    }

    .bg--secondary .accordion__trigger:focus-visible.round span {
        border-color: #F29CA7;
        background-color: #F29CA7
    }

.bg--secondary .iconList li span.round.no-text {
    border-color: #fff;
    background-color: #fff
}

.bg--secondary .downloadRow a.button:hover, .bg--secondary .downloadRow a.button:focus-visible {
    background-color: #fff !important
}

    .bg--secondary .downloadRow a.button:hover span, .bg--secondary .downloadRow a.button:focus-visible span {
        border-color: #F29CA7;
        background-color: #F29CA7
    }

        .bg--secondary .downloadRow a.button:hover span span::after, .bg--secondary .downloadRow a.button:hover span::after, .bg--secondary .downloadRow a.button:focus-visible span span::after, .bg--secondary .downloadRow a.button:focus-visible span::after {
            background-color: #000
        }

.bg--secondary .downloadRow a.button:hover {
    outline: none
}

.bg--secondary .downloadRow a.button:focus-visible {
    outline: 2px solid #000
}

.bg--secondary .downloadRow a.button span {
    background-color: #fff;
    border-color: #fff
}

.bg--secondary .keyStatistics__item span.round.no-text {
    border-color: #fff;
    background-color: #fff
}

.bg--secondary .keyStatistics__item-quote {
    border-top: 2px solid #000
}

.bg--secondary + .pagination {
    background-color: #F29CA7
}

.bg--secondary-light {
    background-color: #FADADE
}

    .bg--secondary-light .button:hover, .bg--secondary-light .button:focus-visible {
        background-color: #fff
    }

    .bg--secondary-light .accordion__trigger.round span {
        border-color: #fff;
        background-color: #fff
    }

@media (hover: hover) {
    .bg--secondary-light .accordion__trigger:hover {
        background-color: #fff
    }

        .bg--secondary-light .accordion__trigger:hover span::after, .bg--secondary-light .accordion__trigger:hover::after {
            background-color: #000
        }

        .bg--secondary-light .accordion__trigger:hover.round span {
            border-color: #FADADE;
            background-color: #FADADE
        }
}

.bg--secondary-light .accordion__trigger:focus-visible {
    outline: none;
    background-color: #fff
}

    .bg--secondary-light .accordion__trigger:focus-visible span::after, .bg--secondary-light .accordion__trigger:focus-visible::after {
        background-color: #000
    }

    .bg--secondary-light .accordion__trigger:focus-visible.round span {
        border-color: #FADADE;
        background-color: #FADADE
    }

.bg--secondary-light .iconList li span.round.no-text {
    border-color: #fff;
    background-color: #fff
}

.bg--secondary-light .downloadRow a.button:hover, .bg--secondary-light .downloadRow a.button:focus-visible {
    background-color: #fff !important
}

    .bg--secondary-light .downloadRow a.button:hover span, .bg--secondary-light .downloadRow a.button:focus-visible span {
        border-color: #FADADE;
        background-color: #FADADE
    }

        .bg--secondary-light .downloadRow a.button:hover span span::after, .bg--secondary-light .downloadRow a.button:hover span::after, .bg--secondary-light .downloadRow a.button:focus-visible span span::after, .bg--secondary-light .downloadRow a.button:focus-visible span::after {
            background-color: #000
        }

.bg--secondary-light .downloadRow a.button:hover {
    outline: none
}

.bg--secondary-light .downloadRow a.button:focus-visible {
    outline: 2px solid #000
}

.bg--secondary-light .downloadRow a.button span {
    background-color: #fff;
    border-color: #fff
}

.bg--secondary-light .keyStatistics__item span.round.no-text {
    border-color: #fff;
    background-color: #fff
}

.bg--secondary-light .keyStatistics__item-quote {
    border-top: 2px solid #000
}

.bg--secondary-light + .pagination {
    background-color: #FADADE
}

.inPageNavigation nav, .bg--neutral-lighter {
    background-color: #F2F2F2
}

    .inPageNavigation nav .button:hover, .inPageNavigation nav .button:focus-visible, .bg--neutral-lighter .button:hover, .bg--neutral-lighter .button:focus-visible {
        background-color: #fff
    }

    .inPageNavigation nav .accordion__trigger.round span, .bg--neutral-lighter .accordion__trigger.round span {
        border-color: #fff;
        background-color: #fff
    }

@media (hover: hover) {
    .inPageNavigation nav .accordion__trigger:hover, .bg--neutral-lighter .accordion__trigger:hover {
        background-color: #fff
    }

        .inPageNavigation nav .accordion__trigger:hover span::after, .inPageNavigation nav .accordion__trigger:hover::after, .bg--neutral-lighter .accordion__trigger:hover span::after, .bg--neutral-lighter .accordion__trigger:hover::after {
            background-color: #000
        }

        .inPageNavigation nav .accordion__trigger:hover.round span, .bg--neutral-lighter .accordion__trigger:hover.round span {
            border-color: #F2F2F2;
            background-color: #F2F2F2
        }
}

.inPageNavigation nav .accordion__trigger:focus-visible, .bg--neutral-lighter .accordion__trigger:focus-visible {
    outline: none;
    background-color: #fff
}

    .inPageNavigation nav .accordion__trigger:focus-visible span::after, .inPageNavigation nav .accordion__trigger:focus-visible::after, .bg--neutral-lighter .accordion__trigger:focus-visible span::after, .bg--neutral-lighter .accordion__trigger:focus-visible::after {
        background-color: #000
    }

    .inPageNavigation nav .accordion__trigger:focus-visible.round span, .bg--neutral-lighter .accordion__trigger:focus-visible.round span {
        border-color: #F2F2F2;
        background-color: #F2F2F2
    }

.inPageNavigation nav .iconList li span.round.no-text, .bg--neutral-lighter .iconList li span.round.no-text {
    border-color: #fff;
    background-color: #fff
}

.inPageNavigation nav .downloadRow a.button:hover, .inPageNavigation nav .downloadRow a.button:focus-visible, .bg--neutral-lighter .downloadRow a.button:hover, .bg--neutral-lighter .downloadRow a.button:focus-visible {
    background-color: #fff !important
}

    .inPageNavigation nav .downloadRow a.button:hover span, .inPageNavigation nav .downloadRow a.button:focus-visible span, .bg--neutral-lighter .downloadRow a.button:hover span, .bg--neutral-lighter .downloadRow a.button:focus-visible span {
        border-color: #F2F2F2;
        background-color: #F2F2F2
    }

        .inPageNavigation nav .downloadRow a.button:hover span span::after, .inPageNavigation nav .downloadRow a.button:hover span::after, .inPageNavigation nav .downloadRow a.button:focus-visible span span::after, .inPageNavigation nav .downloadRow a.button:focus-visible span::after, .bg--neutral-lighter .downloadRow a.button:hover span span::after, .bg--neutral-lighter .downloadRow a.button:hover span::after, .bg--neutral-lighter .downloadRow a.button:focus-visible span span::after, .bg--neutral-lighter .downloadRow a.button:focus-visible span::after {
            background-color: #000
        }

.inPageNavigation nav .downloadRow a.button:hover, .bg--neutral-lighter .downloadRow a.button:hover {
    outline: none
}

.inPageNavigation nav .downloadRow a.button:focus-visible, .bg--neutral-lighter .downloadRow a.button:focus-visible {
    outline: 2px solid #000
}

.inPageNavigation nav .downloadRow a.button span, .bg--neutral-lighter .downloadRow a.button span {
    background-color: #fff;
    border-color: #fff
}

.inPageNavigation nav .keyStatistics__item span.round.no-text, .bg--neutral-lighter .keyStatistics__item span.round.no-text {
    border-color: #fff;
    background-color: #fff
}

.inPageNavigation nav .keyStatistics__item-quote, .bg--neutral-lighter .keyStatistics__item-quote {
    border-top: 2px solid #000
}

.inPageNavigation nav + .pagination, .bg--neutral-lighter + .pagination {
    background-color: #F2F2F2
}

.bg--validation {
    background-color: rgba(46,133,69,0.5)
}

    .bg--validation .button:hover, .bg--validation .button:focus-visible {
        background-color: #fff
    }

    .bg--validation .accordion__trigger.round span {
        border-color: #fff;
        background-color: #fff
    }

@media (hover: hover) {
    .bg--validation .accordion__trigger:hover {
        background-color: #fff
    }

        .bg--validation .accordion__trigger:hover span::after, .bg--validation .accordion__trigger:hover::after {
            background-color: #000
        }

        .bg--validation .accordion__trigger:hover.round span {
            border-color: rgba(46,133,69,0.5);
            background-color: rgba(46,133,69,0.5)
        }
}

.bg--validation .accordion__trigger:focus-visible {
    outline: none;
    background-color: #fff
}

    .bg--validation .accordion__trigger:focus-visible span::after, .bg--validation .accordion__trigger:focus-visible::after {
        background-color: #000
    }

    .bg--validation .accordion__trigger:focus-visible.round span {
        border-color: rgba(46,133,69,0.5);
        background-color: rgba(46,133,69,0.5)
    }

.bg--validation .iconList li span.round.no-text {
    border-color: #fff;
    background-color: #fff
}

.bg--validation .downloadRow a.button:hover, .bg--validation .downloadRow a.button:focus-visible {
    background-color: #fff !important
}

    .bg--validation .downloadRow a.button:hover span, .bg--validation .downloadRow a.button:focus-visible span {
        border-color: rgba(46,133,69,0.5);
        background-color: rgba(46,133,69,0.5)
    }

        .bg--validation .downloadRow a.button:hover span span::after, .bg--validation .downloadRow a.button:hover span::after, .bg--validation .downloadRow a.button:focus-visible span span::after, .bg--validation .downloadRow a.button:focus-visible span::after {
            background-color: #000
        }

.bg--validation .downloadRow a.button:hover {
    outline: none
}

.bg--validation .downloadRow a.button:focus-visible {
    outline: 2px solid #000
}

.bg--validation .downloadRow a.button span {
    background-color: #fff;
    border-color: #fff
}

.bg--validation .keyStatistics__item span.round.no-text {
    border-color: #fff;
    background-color: #fff
}

.bg--validation .keyStatistics__item-quote {
    border-top: 2px solid #000
}

.bg--validation + .pagination {
    background-color: rgba(46,133,69,0.5)
}

.bg--black {
    background-color: #000
}

.bg--black {
    color: #fff
}

    .bg--black .button {
        border-color: #fff;
        color: #fff
    }

        .bg--black .button span::after, .bg--black .button::after {
            background-color: #fff
        }

        .bg--black .button:hover, .bg--black .button:focus-visible {
            background-color: #fff;
            border-color: #fff;
            color: #000
        }

            .bg--black .button:hover span::after, .bg--black .button:hover::after, .bg--black .button:focus-visible span::after, .bg--black .button:focus-visible::after {
                background-color: #000
            }

    .bg--black ul li a, .bg--black a {
        color: #fff
    }

@media (min-width: 768px) {
    .bg--d-neutral-lighter {
        background-color: #F2F2F2
    }
}

.border--primary {
    border: 20px solid #E74300
}

@media (min-width: 992px) {
    .border--primary {
        border: 40px solid #E74300
    }
}

@media (min-width: 1220px) {
    .border--primary {
        border: 60px solid #E74300
    }
}

.border--primary .card {
    border: 2px solid #E74300
}

.border--primary .card__label {
    background-color: #E74300
}

.border--primary .card__label {
    color: #000 !important
}

.border--primary .card__title a {
    color: #D93F00 !important
}

    .border--primary .card__title a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button)::after {
        background-color: #D93F00 !important
    }

.border--secondary {
    border: 20px solid #F29CA7
}

@media (min-width: 992px) {
    .border--secondary {
        border: 40px solid #F29CA7
    }
}

@media (min-width: 1220px) {
    .border--secondary {
        border: 60px solid #F29CA7
    }
}

.border--secondary .card {
    border: 2px solid #F29CA7
}

.border--secondary .card__label {
    background-color: #F29CA7
}

.border--secondary .card__label {
    color: #000 !important
}

.border--secondary .card__title a:hover {
    color: #000
}

.border--secondary .card__title a::before {
    background-color: #F2F2F2
}

.border--secondary-light {
    border: 20px solid #FADADE
}

@media (min-width: 992px) {
    .border--secondary-light {
        border: 40px solid #FADADE
    }
}

@media (min-width: 1220px) {
    .border--secondary-light {
        border: 60px solid #FADADE
    }
}

.border--secondary-light .card {
    border: 2px solid #FADADE
}

.border--secondary-light .card__label {
    background-color: #FADADE
}

.border--secondary-light .card__label {
    color: #000 !important
}

.border--secondary-light .card__title a:hover {
    color: #000
}

.border--secondary-light .card__title a::before {
    background-color: #F2F2F2
}

.border--neutral-lighter {
    border: 20px solid #F2F2F2
}

@media (min-width: 992px) {
    .border--neutral-lighter {
        border: 40px solid #F2F2F2
    }
}

@media (min-width: 1220px) {
    .border--neutral-lighter {
        border: 60px solid #F2F2F2
    }
}

.border--neutral-lighter .card {
    border: 2px solid #F2F2F2
}

.border--neutral-lighter .card__label {
    background-color: #F2F2F2
}

.border--neutral-lighter .card__label {
    color: #000 !important
}

.border--neutral-lighter .card__title a:hover {
    color: #000
}

.border--validation {
    border: 20px solid rgba(46,133,69,0.5)
}

@media (min-width: 992px) {
    .border--validation {
        border: 40px solid rgba(46,133,69,0.5)
    }
}

@media (min-width: 1220px) {
    .border--validation {
        border: 60px solid rgba(46,133,69,0.5)
    }
}

.border--validation .card {
    border: 2px solid rgba(46,133,69,0.5)
}

.border--validation .card__label {
    background-color: rgba(46,133,69,0.5)
}

.border--validation .card__label {
    color: #000 !important
}

.border--validation .card__title a:hover {
    color: #000
}

.border--black {
    border: 20px solid #000;
    background-color: #F2F2F2
}

@media (min-width: 992px) {
    .border--black {
        border: 40px solid #000
    }
}

@media (min-width: 1220px) {
    .border--black {
        border: 60px solid #000
    }
}

.border--black .card {
    border: 2px solid #000
}

.border--black .card__label {
    background-color: #000
}

.border--black .card__title a:hover {
    color: #000
}

.button {
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid;
    border-color: #000;
    color: #000;
    text-decoration: none;
    background-color: transparent;
    padding: 1.35rem 1.5rem;
    transition: all 0.3s ease;
    text-align: left
}

    .button:hover, .button:focus-visible {
        outline: none;
        border-color: #D93F00;
        color: #D93F00;
        text-decoration: underline
    }

        .button:hover span::after, .button:hover::after, .button:focus-visible span::after, .button:focus-visible::after {
            background-color: #D93F00
        }

@media (min-width: 992px) {
    .button {
        padding: 1.35rem 1.5rem
    }
}

.button--no-border {
    border: none;
    padding: 0
}

    .button--no-border:hover, .button--no-border:focus-visible {
        background-color: transparent !important
    }

.button--no-margin {
    margin: 0
}

.button--donate {
    margin: 0 1.5rem 0 0;
    padding: 1rem 1.2rem;
    background-color: #D93F00
}

    .button--donate:focus-visible {
        background: #fff !important
    }

@media (min-width: 1220px) {
    .button--donate {
        margin: 0 0 0 3rem;
        padding: 1.5rem 3rem;
        color: #fff
    }
}

.button#t-gup-print {
    margin-bottom: 0
}

a.button {
    display: flex;
    width: fit-content
}

    a.button.button--primary, button.button.button--primary {
        background-color: #D93F00 !important;
        border: 2px solid #D93F00 !important
    }

        a.button.button--primary:hover, a.button.button--primary:focus-visible, button.button.button--primary:hover, button.button.button--primary:focus-visible {
            outline: none;
            background-color: #fff !important;
            color: #000 !important
        }

            a.button.button--primary:hover::after, a.button.button--primary:focus-visible::after, button.button.button--primary:hover::after, button.button.button--primary:focus-visible::after {
                background-color: #000 !important
            }

button {
    color: #000
}

.card {
    border: 2px solid #000;
    height: calc(100% - 2rem);
    margin-bottom: 2rem
}

    .card a {
        line-height: 120% !important
    }

        .card a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button) {
            position: unset
        }

            .card a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button)::after {
                content: 'a';
                color: transparent;
                position: relative;
                bottom: -0.2rem;
                font-size: 2.4rem
            }

@media (min-width: 768px) {
    .card {
        height: calc(100% - 3rem);
        margin-bottom: 3rem
    }
}

.card__label {
    margin: 0;
    color: #fff;
    background-color: #000;
    padding: 1rem 1.5rem
}

@media (min-width: 768px) {
    .card__label {
        padding: 1rem 2.5rem
    }
}

.card__body {
    height: 100%;
    position: relative;
    z-index: 2
}

    .card__body .card__content {
        display: flex;
        flex-direction: column
    }

.card__label + .card__body {
    height: calc(100% - 4rem)
}

.card__image img {
    max-width: unset;
    width: 100%;
    object-fit: cover
}

.card__content {
    padding: 2rem 1.5rem
}

@media (min-width: 768px) {
    .card__content {
        padding: 3rem
    }
}

.card__title {
    margin-bottom: 1rem;
    line-height: 85%
}

    .card__title a {
        color: #000;
        text-decoration: none;
        margin-bottom: 0;
        line-height: 100% !important
    }

        .card__title a:hover, .card__title a:focus-visible {
            outline: none;
            text-decoration: underline
        }

            .card__title a:hover::before, .card__title a:focus-visible::before {
                opacity: 1
            }

        .card__title a::before {
            content: '';
            bottom: 0;
            left: 0;
            overflow: hidden;
            position: absolute;
            right: 0;
            top: 0;
            white-space: nowrap;
            z-index: -2;
            background-color: #FADADE;
            opacity: 0;
            transition: all 0.3s ease
        }

        .card__title a:hover::after {
            background-color: #000 !important
        }

.card__subtitle, .card__detail {
    margin-bottom: 1rem
}

.card__summary > * {
    margin-bottom: 0
}

.card__tags {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    display: flex;
    align-items: center
}

    .card__tags .card__tag {
        margin-bottom: 0;
        margin-top: 2rem
    }

@media (min-width: 768px) {
    .card__tags .card__tag {
        margin-top: 3rem
    }
}

.card__tags .card__tag:not(:last-of-type)::after {
    content: '|';
    margin-inline: 1rem
}

.card:not(.tileCard):not(.listCard) .card__title a:hover {
    color: #000
}

.row.g-0 [class="col-12"]:last-child .card {
    margin-bottom: 0;
    height: 100%
}

@media (min-width: 768px) {
    .row.g-0 [class="col-12"] .card__image {
        padding: 3rem 0 3rem 3rem;
        width: 35%;
        flex-shrink: 0
    }
}

@media (min-width: 768px) {
    .row.g-0 [class="col-12"] .card__image picture, .row.g-0 [class="col-12"] .card__image img {
        height: 100%
    }
}

@media (min-width: 768px) {
    .row.g-0 [class="col-12"] .card__body {
        display: flex
    }
}

@media (min-width: 992px) {
    .row.g-0 [class="col-12 col-md-6"] .card__image {
        padding: 3rem 0 3rem 3rem;
        width: 50%;
        flex-shrink: 0
    }
}

@media (min-width: 992px) {
    .row.g-0 [class="col-12 col-md-6"] .card__image picture, .row.g-0 [class="col-12 col-md-6"] .card__image img {
        height: 100%
    }
}

@media (min-width: 992px) {
    .row.g-0 [class="col-12 col-md-6"] .card__body {
        display: flex
    }
}

.tileCard {
    height: calc(100% - 2rem);
    margin-bottom: 2rem
}

@media (min-width: 768px) {
    .tileCard {
        height: calc(100% - 3rem);
        margin-bottom: 3rem
    }
}

.tileCard:not(.tileCard--panel) {
    margin-bottom: 4rem
}

@media (min-width: 768px) {
    .tileCard {
        padding-top: 2rem;
        border-top: 2px solid rgba(0,0,0,0.1)
    }
}

.tileCard__tag {
    margin-bottom: 1rem
}

.tileCard__title {
    margin-bottom: 1rem
}

    .tileCard__title a {
        line-height: 120% !important;
        color: #000;
        transition: all 0.3s ease
    }

        .tileCard__title a:hover, .tileCard__title a:focus-visible {
            outline: none;
            color: #D93F00
        }

        .tileCard__title a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button) {
            position: unset
        }

            .tileCard__title a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button)::after {
                content: 'a';
                color: transparent;
                position: relative;
                bottom: -0.2rem;
                font-size: 2.4rem
            }

            .tileCard__title a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button):focus-visible::after {
                background-color: #D93F00
            }

.tileCard__summary > * {
    margin-bottom: 0
}

.tileCard--panel {
    background-color: #F2F2F2;
    border: none;
    padding: 2rem;
    position: relative;
    z-index: 1
}

    .tileCard--panel .tileCard__title a {
        text-decoration: none
    }

        .tileCard--panel .tileCard__title a:hover, .tileCard--panel .tileCard__title a:focus-visible {
            outline: none;
            text-decoration: underline
        }

            .tileCard--panel .tileCard__title a:hover::before, .tileCard--panel .tileCard__title a:focus-visible::before {
                opacity: 1
            }

        .tileCard--panel .tileCard__title a::before {
            content: '';
            bottom: 0;
            left: 0;
            overflow: hidden;
            position: absolute;
            right: 0;
            top: 0;
            white-space: nowrap;
            z-index: -2;
            background-color: #FADADE;
            opacity: 0;
            transition: all 0.3s ease
        }

.listCard {
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding-bottom: 2rem
}

@media (min-width: 768px) {
    .listCard {
        padding-bottom: 3rem;
        display: flex
    }
}

.listCard__thumbnail {
    margin-bottom: 3rem;
    flex-shrink: 0
}

@media (min-width: 768px) {
    .listCard__thumbnail {
        margin-right: 3rem;
        margin-bottom: 0
    }
}

.listCard__thumbnail img {
    width: 6rem;
    height: 6rem
}

.listCard__tag {
    margin-bottom: 1rem
}

.listCard__title {
    margin-bottom: 1rem
}

    .listCard__title a {
        font-size: 2rem !important;
        font-family: "GeneralSans","Arial",sans-serif;
        font-weight: 500 !important;
        text-decoration: none;
        line-height: 120% !important
    }

        .listCard__title a:hover, .listCard__title a:focus-visible {
            outline: none;
            text-decoration: underline;
            color: #D93F00
        }

        .listCard__title a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button) {
            position: unset
        }

            .listCard__title a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button)::after {
                content: 'a';
                color: transparent;
                position: relative;
                bottom: -0.2rem;
                font-size: 2.4rem
            }

            .listCard__title a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button):focus-visible::after {
                background-color: #D93F00
            }

.listCard__summary > * {
    margin-bottom: 0
}

.cardsList {
    all: unset;
    list-style: none
}

.cardsList__resultsCount {
    margin-bottom: 0 !important
}

    .cardsList__resultsCount h2, .cardsList__resultsCount .h2 {
        padding-bottom: 2rem;
        border-bottom: 2px solid rgba(0,0,0,0.1)
    }

@media (min-width: 768px) {
    .cardsList__resultsCount h2, .cardsList__resultsCount .h2 {
        padding-bottom: 3rem
    }
}

.contactDetails {
    display: flex;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(0,0,0,0.1)
}

@media (min-width: 768px) {
    .contactDetails {
        display: block;
        margin-bottom: 0;
        padding-bottom: 0;
        border: none
    }
}

.contactDetails img {
    border-radius: 50%;
    width: 12.5rem;
    height: 12.5rem;
    flex-shrink: 0;
    margin-right: 2rem
}

@media (min-width: 768px) {
    .contactDetails img {
        margin-right: 0;
        margin-bottom: 3rem
    }
}

.contactDetails__header {
    margin-bottom: 1rem
}

.contactDetails__name {
    margin-bottom: 1rem
}

.contactDetails__email {
    margin-bottom: 0
}

.filters {
    padding-bottom: 2rem;
    position: relative
}

    .filters::after {
        content: '';
        position: absolute;
        height: 2px;
        width: calc(100% + (var(--bs-gutter-x) * 2));
        bottom: 0;
        left: calc(var(--bs-gutter-x) * -1);
        background: #E74300
    }

@media (min-width: 992px) {
    .filters::after {
        display: none
    }
}

@media (min-width: 992px) {
    .filters__form {
        display: flex;
        align-items: end
    }
}

@media (min-width: 992px) {
    .filters__form fieldset {
        display: flex
    }
}

.filters__form label {
    margin-bottom: 1rem
}

.filters__form .select2-container {
    margin-bottom: 2rem
}

@media (min-width: 992px) {
    .filters__form .select2-container {
        margin-bottom: 0
    }
}

@media (min-width: 992px) {
    .filters__form .select2-container--default .select2-selection--single .select2-selection__arrow {
        right: 1.5rem
    }
}

@media (min-width: 992px) {
    .filters__form .select2-container .select2-selection--single .select2-selection__rendered {
        padding: 1.5rem 2.5rem 1.5rem
    }
}

@media (min-width: 992px) {
    .filters__form .filters__select-wrapper {
        width: 18.2rem;
        display: block;
        margin-right: 3rem
    }
}

@media (min-width: 1220px) {
    .filters__form .filters__select-wrapper {
        width: 22rem
    }
}

.filters__form button[type="submit"] {
    margin-bottom: 2rem
}

@media (min-width: 992px) {
    .filters__form button[type="submit"] {
        margin-bottom: 0;
        padding-block: 1rem
    }
}

.filters__form button[type="reset"] {
    margin-bottom: 0
}

    .filters__form button[type="reset"] span::after, .filters__form button[type="reset"]::after {
        width: 1.6rem;
        height: 1.6rem
    }

@media (min-width: 992px) {
    .filters__form button[type="reset"] {
        font-size: 1.6rem;
        margin: 0 0 1rem 3rem
    }
}

.form--kentico label, .myt2uForm label {
    margin-bottom: 1rem
}

.form--kentico .explanation-text, .myt2uForm .explanation-text {
    margin-top: 0.5rem
}

.form--kentico .formwidget-submit-text, .myt2uForm .formwidget-submit-text {
    margin: 0
}

.form--kentico input[type="text"], .form--kentico input[type="email"], .form--kentico input[type="number"], .form--kentico input[type="password"], .form--kentico input[type="date" i], .form--kentico input[type="tel"], .form--kentico textarea, .myt2uForm input[type="text"], .myt2uForm input[type="email"], .myt2uForm input[type="number"], .myt2uForm input[type="password"], .myt2uForm input[type="date" i], .myt2uForm input[type="tel"], .myt2uForm textarea {
    border-radius: 0;
    border: 1px solid #000;
    width: 100%;
    margin: 0;
    padding: 1.5rem
}

    .form--kentico input[type="text"]:focus-visible, .form--kentico input[type="text"]:focus, .form--kentico input[type="text"]:active, .form--kentico input[type="email"]:focus-visible, .form--kentico input[type="email"]:focus, .form--kentico input[type="email"]:active, .form--kentico input[type="number"]:focus-visible, .form--kentico input[type="number"]:focus, .form--kentico input[type="number"]:active, .form--kentico input[type="password"]:focus-visible, .form--kentico input[type="password"]:focus, .form--kentico input[type="password"]:active, .form--kentico input[type="date" i]:focus-visible, .form--kentico input[type="date" i]:focus, .form--kentico input[type="date" i]:active, .form--kentico input[type="tel"]:focus-visible, .form--kentico input[type="tel"]:focus, .form--kentico input[type="tel"]:active, .form--kentico textarea:focus-visible, .form--kentico textarea:focus, .form--kentico textarea:active, .myt2uForm input[type="text"]:focus-visible, .myt2uForm input[type="text"]:focus, .myt2uForm input[type="text"]:active, .myt2uForm input[type="email"]:focus-visible, .myt2uForm input[type="email"]:focus, .myt2uForm input[type="email"]:active, .myt2uForm input[type="number"]:focus-visible, .myt2uForm input[type="number"]:focus, .myt2uForm input[type="number"]:active, .myt2uForm input[type="password"]:focus-visible, .myt2uForm input[type="password"]:focus, .myt2uForm input[type="password"]:active, .myt2uForm input[type="date" i]:focus-visible, .myt2uForm input[type="date" i]:focus, .myt2uForm input[type="date" i]:active, .myt2uForm input[type="tel"]:focus-visible, .myt2uForm input[type="tel"]:focus, .myt2uForm input[type="tel"]:active, .myt2uForm textarea:focus-visible, .myt2uForm textarea:focus, .myt2uForm textarea:active {
        border-radius: 0;
        border-color: transparent;
        outline: 1px solid #E74300
    }

    .form--kentico input[type="date" i]::-webkit-datetime-edit-fields-wrapper, .myt2uForm input[type="date" i]::-webkit-datetime-edit-fields-wrapper {
        font-family: "GeneralSans","Arial",sans-serif;
        font-weight: 500
    }

.form--kentico input[type="checkbox"], .myt2uForm input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    margin-bottom: 0;
    position: absolute;
    margin-left: 0.3rem
}

    .form--kentico input[type="checkbox"] + label, .myt2uForm input[type="checkbox"] + label {
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: start
    }

        .form--kentico input[type="checkbox"] + label::before, .myt2uForm input[type="checkbox"] + label::before {
            content: '';
            position: relative;
            margin-right: 1rem;
            left: 0;
            width: 2rem;
            height: 2rem;
            border: 1px solid #000;
            cursor: pointer;
            flex-shrink: 0
        }

        .form--kentico input[type="checkbox"] + label:hover::before, .myt2uForm input[type="checkbox"] + label:hover::before {
            border: 1px solid #E74300
        }

    .form--kentico input[type="checkbox"]:checked + label:before, .myt2uForm input[type="checkbox"]:checked + label:before {
        border: 1px solid #E74300;
        width: 2rem;
        height: 2rem;
        background-image: url("data:image/svg+xml, %3csvg viewBox=%270 0 11 9%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.91308 4.03516H1.91326C1.99256 4.03525 2.07081 4.05331 2.14213 4.08798C2.21341 4.12262 2.27591 4.17295 2.32497 4.2352L1.91308 4.03516ZM1.91308 4.03516H1.09394C0.890308 4.03516 0.776602 4.26975 0.902321 4.4292L0.902371 4.42927L4.11214 8.49567L4.11218 8.49573C4.32247 8.76188 4.72568 8.76114 4.93667 8.49617L4.93708 8.49566L10.6597 1.24398C10.6598 1.24378 10.66 1.24358 10.6602 1.24338C10.7884 1.08295 10.6699 0.85 10.4689 0.85H9.6498C9.48941 0.85 9.33668 0.9235 9.2376 1.05044C9.23751 1.05055 9.23742 1.05066 9.23734 1.05077L4.52403 7.02157M1.91308 4.03516L4.52403 7.02157M4.52403 7.02157L2.32506 4.23531L4.52403 7.02157Z%27 fill=%27white%27 stroke=%27%23E74300%27 stroke-width=%270.3%27/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 1.5rem;
        background-color: #E74300
    }

    .form--kentico input[type="checkbox"]:checked + label:hover:before, .myt2uForm input[type="checkbox"]:checked + label:hover:before {
        border: 1px solid #000
    }

    .form--kentico input[type="checkbox"]:focus + label:before, .form--kentico input[type="checkbox"]:focus-visible + label:before, .myt2uForm input[type="checkbox"]:focus + label:before, .myt2uForm input[type="checkbox"]:focus-visible + label:before {
        border: 1px solid #E74300
    }

    .form--kentico input[type="checkbox"]:checked:focus + label:before, .form--kentico input[type="checkbox"]:checked:focus-visible + label:before, .myt2uForm input[type="checkbox"]:checked:focus + label:before, .myt2uForm input[type="checkbox"]:checked:focus-visible + label:before {
        border: 1px solid #000
    }

.form--kentico .ktc-checkbox-list input[type="checkbox"] + label, .myt2uForm .ktc-checkbox-list input[type="checkbox"] + label {
    font-family: "RobotoSlab","Helvetica","Arial",sans-serif;
    font-weight: 300;
    margin-bottom: 3rem
}

    .form--kentico .ktc-checkbox-list input[type="checkbox"] + label::before, .myt2uForm .ktc-checkbox-list input[type="checkbox"] + label::before {
        width: 3rem;
        height: 3rem
    }

.form--kentico .ktc-checkbox-list input[type="checkbox"]:checked + label:before, .myt2uForm .ktc-checkbox-list input[type="checkbox"]:checked + label:before {
    background-size: 2rem
}

.form--kentico .ktc-radio, .myt2uForm .ktc-radio {
    display: inline-flex;
    align-items: center
}

.form--kentico input[type="radio"], .myt2uForm input[type="radio"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 50%;
    border: 2px solid #000;
    width: 2.8rem;
    height: 2.8rem
}

    .form--kentico input[type="radio"] + label, .myt2uForm input[type="radio"] + label {
        margin-bottom: 0;
        margin-left: 1rem;
        margin-right: 3rem
    }

    .form--kentico input[type="radio"]:hover, .form--kentico input[type="radio"]:focus, .form--kentico input[type="radio"]:focus-visible, .myt2uForm input[type="radio"]:hover, .myt2uForm input[type="radio"]:focus, .myt2uForm input[type="radio"]:focus-visible {
        border: 2px solid #E74300;
        outline: none
    }

    .form--kentico input[type="radio"]::after, .myt2uForm input[type="radio"]::after {
        content: '';
        position: relative;
        border-radius: 50%;
        width: 1rem;
        height: 1rem;
        background-color: #fff
    }

    .form--kentico input[type="radio"]:checked:hover, .form--kentico input[type="radio"]:checked:focus, .form--kentico input[type="radio"]:checked:focus-visible, .myt2uForm input[type="radio"]:checked:hover, .myt2uForm input[type="radio"]:checked:focus, .myt2uForm input[type="radio"]:checked:focus-visible {
        border: 2px solid #000;
        outline: none
    }

        .form--kentico input[type="radio"]:checked:hover::after, .form--kentico input[type="radio"]:checked:focus::after, .form--kentico input[type="radio"]:checked:focus-visible::after, .myt2uForm input[type="radio"]:checked:hover::after, .myt2uForm input[type="radio"]:checked:focus::after, .myt2uForm input[type="radio"]:checked:focus-visible::after {
            background-color: #E74300
        }

    .form--kentico input[type="radio"]:checked::after, .myt2uForm input[type="radio"]:checked::after {
        content: '';
        position: relative;
        border-radius: 50%;
        width: 1rem;
        height: 1rem;
        background-color: #000
    }

.form--kentico input[type="file"], .myt2uForm input[type="file"] {
    display: block
}

    .form--kentico input[type="file"]:focus-visible, .myt2uForm input[type="file"]:focus-visible {
        outline: none
    }

        .form--kentico input[type="file"]:focus-visible::-webkit-file-upload-button, .myt2uForm input[type="file"]:focus-visible::-webkit-file-upload-button {
            outline: none;
            border-color: #D93F00;
            color: #D93F00;
            text-decoration: underline
        }

            .form--kentico input[type="file"]:focus-visible::-webkit-file-upload-button span::after, .form--kentico input[type="file"]:focus-visible::-webkit-file-upload-button::after, .myt2uForm input[type="file"]:focus-visible::-webkit-file-upload-button span::after, .myt2uForm input[type="file"]:focus-visible::-webkit-file-upload-button::after {
                background-color: #D93F00
            }

    .form--kentico input[type="file"]::-webkit-file-upload-button, .myt2uForm input[type="file"]::-webkit-file-upload-button {
        appearance: none;
        -webkit-appearance: none;
        border: 2px solid;
        border-color: #000;
        color: #000;
        text-decoration: none;
        background-color: transparent;
        padding: 1.35rem 1.5rem;
        transition: all 0.3s ease
    }

        .form--kentico input[type="file"]::-webkit-file-upload-button:hover, .myt2uForm input[type="file"]::-webkit-file-upload-button:hover {
            border-color: #D93F00;
            color: #D93F00;
            text-decoration: underline
        }

            .form--kentico input[type="file"]::-webkit-file-upload-button:hover span::after, .form--kentico input[type="file"]::-webkit-file-upload-button:hover::after, .myt2uForm input[type="file"]::-webkit-file-upload-button:hover span::after, .myt2uForm input[type="file"]::-webkit-file-upload-button:hover::after {
                background-color: #D93F00
            }

@media (min-width: 992px) {
    .form--kentico input[type="file"]::-webkit-file-upload-button, .myt2uForm input[type="file"]::-webkit-file-upload-button {
        padding: 1.35rem 1.5rem
    }
}

.form--kentico input[type="file"]::-webkit-file-upload-button + span, .myt2uForm input[type="file"]::-webkit-file-upload-button + span {
    font-size: 1.6rem
}

.form--kentico input[type="submit"], .form--kentico button[type="submit"], .myt2uForm input[type="submit"], .myt2uForm button[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid;
    border-color: #000;
    color: #000;
    text-decoration: none;
    background-color: transparent;
    padding: 1.35rem 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content
}

    .form--kentico input[type="submit"]:hover, .form--kentico input[type="submit"]:focus-visible, .form--kentico button[type="submit"]:hover, .form--kentico button[type="submit"]:focus-visible, .myt2uForm input[type="submit"]:hover, .myt2uForm input[type="submit"]:focus-visible, .myt2uForm button[type="submit"]:hover, .myt2uForm button[type="submit"]:focus-visible {
        outline: none;
        background-color: #fff;
        border-color: #D93F00;
        color: #D93F00;
        text-decoration: underline
    }

        .form--kentico input[type="submit"]:hover span::after, .form--kentico input[type="submit"]:hover::after, .form--kentico input[type="submit"]:focus-visible span::after, .form--kentico input[type="submit"]:focus-visible::after, .form--kentico button[type="submit"]:hover span::after, .form--kentico button[type="submit"]:hover::after, .form--kentico button[type="submit"]:focus-visible span::after, .form--kentico button[type="submit"]:focus-visible::after, .myt2uForm input[type="submit"]:hover span::after, .myt2uForm input[type="submit"]:hover::after, .myt2uForm input[type="submit"]:focus-visible span::after, .myt2uForm input[type="submit"]:focus-visible::after, .myt2uForm button[type="submit"]:hover span::after, .myt2uForm button[type="submit"]:hover::after, .myt2uForm button[type="submit"]:focus-visible span::after, .myt2uForm button[type="submit"]:focus-visible::after {
            background-color: #D93F00
        }

@media (min-width: 992px) {
    .form--kentico input[type="submit"], .form--kentico button[type="submit"], .myt2uForm input[type="submit"], .myt2uForm button[type="submit"] {
        padding: 1.35rem 1.5rem
    }
}

.form--kentico input[type="submit"]::after, .form--kentico button[type="submit"]::after, .myt2uForm input[type="submit"]::after, .myt2uForm button[type="submit"]::after {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 18 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M16.2393 8.31622L-0.000104785 8.31622%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M9.92395 14.6306L16.2393 8.31531L9.92395 2%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 18 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M16.2393 8.31622L-0.000104785 8.31622%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3cpath d=%27M9.92395 14.6306L16.2393 8.31531L9.92395 2%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.form--kentico input[type="submit"]:hover, .form--kentico button[type="submit"]:hover, .myt2uForm input[type="submit"]:hover, .myt2uForm button[type="submit"]:hover {
    background-color: #fff
}

.form--kentico .field-validation-error, .myt2uForm .field-validation-error {
    color: #EB0000;
    font-family: "GeneralSans","Arial",sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-top: 1rem
}

.form--kentico input[type="checkbox"] + label {
    align-items: center
}

.filters__form .select2-container--default .select2-selection--single, .form--kentico .select2-container--default .select2-selection--single, .myt2uForm .select2-container--default .select2-selection--single {
    border: 1px solid #000;
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease
}

    .filters__form .select2-container--default .select2-selection--single:hover, .form--kentico .select2-container--default .select2-selection--single:hover, .myt2uForm .select2-container--default .select2-selection--single:hover {
        border: 1px solid #E74300
    }

.filters__form .select2-selection__placeholder, .form--kentico .select2-selection__placeholder, .myt2uForm .select2-selection__placeholder {
    color: #000 !important
}

.filters__form .select2-dropdown, .form--kentico .select2-dropdown, .myt2uForm .select2-dropdown {
    border-radius: 0;
    border: 1px solid #000;
    z-index: 3
}

.filters__form .select2-container--focus, .form--kentico .select2-container--focus, .myt2uForm .select2-container--focus {
    outline: none
}

    .filters__form .select2-container--focus .select2-selection--single, .form--kentico .select2-container--focus .select2-selection--single, .myt2uForm .select2-container--focus .select2-selection--single {
        border: 1px solid #E74300
    }

.filters__form .select2-container .select2-selection--single, .form--kentico .select2-container .select2-selection--single, .myt2uForm .select2-container .select2-selection--single {
    height: fit-content
}

    .filters__form .select2-container .select2-selection--single .select2-selection__rendered, .form--kentico .select2-container .select2-selection--single .select2-selection__rendered, .myt2uForm .select2-container .select2-selection--single .select2-selection__rendered {
        padding: 1.5rem;
        line-height: 120%;
        font-size: 1.6rem;
        font-family: "GeneralSans","Arial",sans-serif;
        font-weight: 500;
        color: #000
    }

@media (min-width: 992px) {
    .filters__form .select2-container .select2-selection--single .select2-selection__rendered, .form--kentico .select2-container .select2-selection--single .select2-selection__rendered, .myt2uForm .select2-container .select2-selection--single .select2-selection__rendered {
        padding: 1.5rem 3rem
    }
}

.filters__form .select2-container--default .select2-results > .select2-results__options, .form--kentico .select2-container--default .select2-results > .select2-results__options, .myt2uForm .select2-container--default .select2-results > .select2-results__options {
    max-height: 40rem
}


.filters__form .select2-results__option, .form--kentico .select2-results__option, .myt2uForm .select2-results__option {
    padding: 1.5rem
}

    .filters__form .select2-results__option:not(:last-of-type), .form--kentico .select2-results__option:not(:last-of-type), .myt2uForm .select2-results__option:not(:last-of-type) {
        border-bottom: 1px solid #000
    }

@media (min-width: 992px) {
    .filters__form .select2-results__option, .form--kentico .select2-results__option, .myt2uForm .select2-results__option {
        padding: 1.5rem 3rem
    }
}

.filters__form .select2-container--default .select2-results__option--selected, .form--kentico .select2-container--default .select2-results__option--selected, .myt2uForm .select2-container--default .select2-results__option--selected {
    background-color: #fff
}

.filters__form .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable, .form--kentico .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable, .myt2uForm .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #fff;
    color: #D93F00;
    text-decoration: underline
}

.filters__form .select2-container--default .select2-selection--single .select2-selection__arrow, .form--kentico .select2-container--default .select2-selection--single .select2-selection__arrow, .myt2uForm .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content
}

@media (min-width: 992px) {
    .filters__form .select2-container--default .select2-selection--single .select2-selection__arrow, .form--kentico .select2-container--default .select2-selection--single .select2-selection__arrow, .myt2uForm .select2-container--default .select2-selection--single .select2-selection__arrow {
        right: 3rem
    }
}

.filters__form .select2-container--default .select2-selection--single .select2-selection__arrow b, .form--kentico .select2-container--default .select2-selection--single .select2-selection__arrow b, .myt2uForm .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    width: 1.3rem;
    height: 1.3rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 15 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1 0.999999L7.49645 8L14 0.999998%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 15 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1 0.999999L7.49645 8L14 0.999998%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
    background-color: #000;
    margin: 0;
    position: relative;
    top: 0;
    left: 0;
    transition: all 0.3s ease
}

.filters__form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b, .form--kentico .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b, .myt2uForm .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(180deg)
}

.filters__form .select2-container--default .select2-selection--multiple, .form--kentico .select2-container--default .select2-selection--multiple, .myt2uForm .select2-container--default .select2-selection--multiple {
    border: 1px solid #000;
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
    padding: 1.5rem;
    line-height: 120%;
    font-size: 1.6rem;
    font-family: "GeneralSans","Arial",sans-serif;
    font-weight: 500;
    color: #000
}

@media (min-width: 992px) {
    .filters__form .select2-container--default .select2-selection--multiple, .form--kentico .select2-container--default .select2-selection--multiple, .myt2uForm .select2-container--default .select2-selection--multiple {
        padding: 1.5rem 3rem
    }
}

.filters__form .select2-container--default .select2-selection--multiple:hover, .form--kentico .select2-container--default .select2-selection--multiple:hover, .myt2uForm .select2-container--default .select2-selection--multiple:hover {
    border: 1px solid #E74300
}

.filters__form .select2-container--default .select2-selection--multiple .select2-search__field, .form--kentico .select2-container--default .select2-selection--multiple .select2-search__field, .myt2uForm .select2-container--default .select2-selection--multiple .select2-search__field {
    margin: 0;
    height: 2.2rem
}

    .filters__form .select2-container--default .select2-selection--multiple .select2-search__field::-webkit-input-placeholder, .form--kentico .select2-container--default .select2-selection--multiple .select2-search__field::-webkit-input-placeholder, .myt2uForm .select2-container--default .select2-selection--multiple .select2-search__field::-webkit-input-placeholder {
        font-family: "GeneralSans","Arial",sans-serif;
        color: #828282;
        font-weight: 500
    }

.filters__form .select2-container--default .select2-selection--multiple .select2-selection__choice, .form--kentico .select2-container--default .select2-selection--multiple .select2-selection__choice, .myt2uForm .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0;
    font-family: "GeneralSans","Arial",sans-serif;
    font-weight: 500;
    margin-top: 0;
    height: unset;
    padding: 0.5rem 0 0.5rem 2rem
}

    .filters__form .select2-container--default .select2-selection--multiple .select2-selection__choice button, .form--kentico .select2-container--default .select2-selection--multiple .select2-selection__choice button, .myt2uForm .select2-container--default .select2-selection--multiple .select2-selection__choice button {
        height: 100%;
        padding: 0 0.6rem;
        font-weight: 500;
        color: #000;
        border-right: 1px solid #000
    }

        .filters__form .select2-container--default .select2-selection--multiple .select2-selection__choice button + span, .form--kentico .select2-container--default .select2-selection--multiple .select2-selection__choice button + span, .myt2uForm .select2-container--default .select2-selection--multiple .select2-selection__choice button + span {
            padding: 0.5rem 1rem 0.5rem 1.4rem
        }

.filters__form [aria-multiselectable="true"] .select2-results__option, .form--kentico [aria-multiselectable="true"] .select2-results__option, .myt2uForm [aria-multiselectable="true"] .select2-results__option {
    position: relative;
    display: flex
}

    .filters__form [aria-multiselectable="true"] .select2-results__option::before, .form--kentico [aria-multiselectable="true"] .select2-results__option::before, .myt2uForm [aria-multiselectable="true"] .select2-results__option::before {
        content: '';
        position: relative;
        left: 0;
        width: 2rem;
        height: 2rem;
        border: 1px solid #000;
        background-color: #fff;
        cursor: pointer;
        flex-shrink: 0;
        margin-right: 1rem
    }

    .filters__form [aria-multiselectable="true"] .select2-results__option:hover::before, .form--kentico [aria-multiselectable="true"] .select2-results__option:hover::before, .myt2uForm [aria-multiselectable="true"] .select2-results__option:hover::before {
        border: 1px solid #E74300
    }

    .filters__form [aria-multiselectable="true"] .select2-results__option.select2-results__option--selected:before, .form--kentico [aria-multiselectable="true"] .select2-results__option.select2-results__option--selected:before, .myt2uForm [aria-multiselectable="true"] .select2-results__option.select2-results__option--selected:before {
        border: 1px solid #E74300;
        width: 2rem;
        height: 2rem;
        background-image: url("data:image/svg+xml, %3csvg viewBox=%270 0 11 9%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.91308 4.03516H1.91326C1.99256 4.03525 2.07081 4.05331 2.14213 4.08798C2.21341 4.12262 2.27591 4.17295 2.32497 4.2352L1.91308 4.03516ZM1.91308 4.03516H1.09394C0.890308 4.03516 0.776602 4.26975 0.902321 4.4292L0.902371 4.42927L4.11214 8.49567L4.11218 8.49573C4.32247 8.76188 4.72568 8.76114 4.93667 8.49617L4.93708 8.49566L10.6597 1.24398C10.6598 1.24378 10.66 1.24358 10.6602 1.24338C10.7884 1.08295 10.6699 0.85 10.4689 0.85H9.6498C9.48941 0.85 9.33668 0.9235 9.2376 1.05044C9.23751 1.05055 9.23742 1.05066 9.23734 1.05077L4.52403 7.02157M1.91308 4.03516L4.52403 7.02157M4.52403 7.02157L2.32506 4.23531L4.52403 7.02157Z%27 fill=%27white%27 stroke=%27%23E74300%27 stroke-width=%270.3%27/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 1.5rem;
        background-color: #E74300;
        margin-right: 1rem
    }

    .filters__form [aria-multiselectable="true"] .select2-results__option.select2-results__option--selected:hover:before, .form--kentico [aria-multiselectable="true"] .select2-results__option.select2-results__option--selected:hover:before, .myt2uForm [aria-multiselectable="true"] .select2-results__option.select2-results__option--selected:hover:before {
        border: 1px solid #000
    }

.select2-dropdown.ktc-object-selector-dropdown {
    z-index: 100000
}

.jobButtons .button:first-child {
    margin-bottom: 2rem
}

@media (min-width: 992px) {
    .jobButtons .button:first-child {
        margin-bottom: 0;
        margin-right: 3rem
    }
}

.jobButtons .button:last-child {
    margin-bottom: 0
}

@media (min-width: 992px) {
    .jobButtons {
        display: flex;
        align-items: center
    }
}

.pagesNavigation nav {
    height: 100%
}

.pagesNavigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
    height: 100%
}

.pagesNavigation__item {
    background-color: #F2F2F2;
    width: calc(50% - 0.75rem);
    height: 100%
}

@media (min-width: 768px) {
    .pagesNavigation__item {
        width: calc(50% - 1.5rem)
    }
}

.pagesNavigation__item.prev:only-child {
    justify-self: start;
    margin-right: auto
}

.pagesNavigation__item.prev .pagesNavigation__link p {
    margin-left: 3rem
}

.pagesNavigation__item.next:only-child {
    justify-self: end;
    margin-left: auto
}

.pagesNavigation__item.next .pagesNavigation__link {
    align-items: flex-end
}

    .pagesNavigation__item.next .pagesNavigation__link p {
        margin-right: 3rem;
        text-align: right
    }

.pagesNavigation__link {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    height: 100%;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease
}

@media (min-width: 768px) {
    .pagesNavigation__link {
        padding: 1.5rem 2rem
    }
}

.pagesNavigation__link:hover, .pagesNavigation__link:focus-visible {
    outline: none;
    color: #D93F00;
    background-color: #fff;
    border-color: #D93F00
}

    .pagesNavigation__link:hover span span::after, .pagesNavigation__link:hover span::after, .pagesNavigation__link:focus-visible span span::after, .pagesNavigation__link:focus-visible span::after {
        background-color: #D93F00
    }

.pagesNavigation__link span {
    font-family: "GeneralSans","Arial",sans-serif;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 0.5rem;
    text-decoration: underline
}

@media (min-width: 768px) {
    .pagesNavigation__link span {
        font-size: 1.8rem
    }
}

.pagesNavigation__link p {
    margin-bottom: 0
}

.pagination {
    padding-top: 0
}

    .pagination nav {
        margin: 0 auto;
        width: 100%;
        max-width: 45rem
    }

        .pagination nav[data-progress="start"] .pagination__item.prev {
            pointer-events: none
        }

            .pagination nav[data-progress="start"] .pagination__item.prev .pagination__link.has-icon:hover span::after, .pagination nav[data-progress="start"] .pagination__item.prev .pagination__link.has-icon:hover::after {
                background-color: #000
            }

            .pagination nav[data-progress="start"] .pagination__item.prev .pagination__link.has-icon:hover span {
                border-color: #F29CA7
            }

            .pagination nav[data-progress="start"] .pagination__item.prev .pagination__link.has-icon span {
                background-color: transparent
            }

        .pagination nav[data-progress="end"] .pagination__item.next {
            pointer-events: none
        }

            .pagination nav[data-progress="end"] .pagination__item.next .pagination__link.has-icon:hover span::after, .pagination nav[data-progress="end"] .pagination__item.next .pagination__link.has-icon:hover::after {
                background-color: #000
            }

            .pagination nav[data-progress="end"] .pagination__item.next .pagination__link.has-icon:hover span {
                border-color: #F29CA7
            }

            .pagination nav[data-progress="end"] .pagination__item.next .pagination__link.has-icon span {
                background-color: transparent
            }

    .pagination ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

.pagination__item:not(.prev):not(.next) {
    font-size: 1.6rem;
    font-family: "GeneralSans","Arial",sans-serif;
    font-weight: 500;
    border: 2px solid;
    border-color: transparent;
    transition: all 0.3s ease
}

    .pagination__item:not(.prev):not(.next):hover {
        border-color: #D93F00
    }

    .pagination__item:not(.prev):not(.next) a {
        padding: 0 1.3rem
    }

.pagination__item.active {
    border-color: #000 !important
}

    .pagination__item.active:hover {
        background-color: #FADADE
    }

        .pagination__item.active:hover a {
            color: #000
        }

.pagination__item .pagination__link {
    font-weight: 500
}

.pagination__item.prev .pagination__link.has-icon span, .pagination__item.next .pagination__link.has-icon span {
    margin-left: 0;
    border-color: #F29CA7;
    background-color: #F29CA7
}

.pagination__item.prev .pagination__link.has-icon:hover span::after, .pagination__item.prev .pagination__link.has-icon:hover::after, .pagination__item.next .pagination__link.has-icon:hover span::after, .pagination__item.next .pagination__link.has-icon:hover::after {
    background-color: #F29CA7
}

.pagination__item.prev .pagination__link.has-icon:hover span, .pagination__item.next .pagination__link.has-icon:hover span {
    border-color: #000;
    background-color: #000
}

.pagination__item.prev {
    margin-right: 1.5rem
}

.pagination__item.next {
    margin-left: 1.5rem
}

.pagination + section:not([class*='bg--']) {
    padding-top: 0
}

@media print {
    body {
        max-width: 1920px;
        margin: 0 auto;
        position: relative;
        display: block
    }

    div, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, span, picture, img {
        break-before: avoid;
        break-after: avoid;
        break-inside: auto
    }

    .page-body {
        width: 1000px !important;
        min-width: 1000px !important
    }

    .container {
        max-width: 108rem !important
    }

    header, .breadcrumbRow, .socialShare, .sideMenu, .inPageNavigation, .pageUseful, .iconList, .downloadRow, .featuredPromos, .ctaPanel, .situationsList, .formRow, .quickLinks, .promoPanel, .videoRow, .imageGallery, .imageRow, .warningMessage, .pagesNavigation, .relatedContent, #t-gup-print, picture, figcaption, img, footer {
        display: none !important
    }

    .offset-md-4 {
        margin-left: 0
    }

    .col-md-8 {
        width: 100%
    }

    .heroRow.bg--secondary-light {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        background-color: #FADADE
    }

    .heroRow .button {
        display: none
    }

    .wysiwyg button {
        display: none
    }

    .accordionRow .accordion__panel {
        break-before: avoid;
        break-inside: avoid;
        display: block !important
    }

    .accordionRow .accordion__trigger {
        break-after: avoid
    }

        .accordionRow .accordion__trigger span {
            display: none
        }

    .quoteRow {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        background-color: #FADADE;
        padding: 3rem !important;
        break-inside: avoid
    }

        .quoteRow picture {
            display: none
        }

        .quoteRow .quoteRow__content {
            width: 100% !important
        }

        .quoteRow blockquote p {
            font-size: 2rem !important
        }

    .split .quoteRow {
        padding: 0 !important
    }

        .split .quoteRow .has-icon {
            margin: 0
        }

    .keyStatistics .keyStatistics__item .has-icon {
        display: none
    }

    .keyStatistics .keyStatistics__item .h2--stats {
        font-size: 2rem
    }

    .keyStatistics a.button {
        display: none
    }

    .situationRow {
        border-bottom: none !important
    }

        .situationRow a.button {
            display: none
        }

        .situationRow .tileCard {
            padding: 0
        }
}

.relatedContent {
    padding: 3rem 1.5rem
}

@media (min-width: 992px) {
    .relatedContent {
        padding: 3rem
    }
}

.relatedContent h4, .relatedContent .h4 {
    margin-bottom: 1.5rem
}

.relatedContent li a:hover {
    font-weight: 500
}

.searchResultsInfo h2, .searchResultsInfo .h2 {
    margin-bottom: 1rem
}

.sitemap ul {
    list-style: none;
    padding: 0;
    margin: 0
}

    .sitemap ul li a {
        font-family: "GeneralSans","Arial",sans-serif;
        font-weight: 500 !important;
        line-height: 120% !important
    }

        .sitemap ul li a:hover, .sitemap ul li a:focus-visible {
            outline: none;
            color: #D93F00
        }

.sitemap .sitemapList__level1 {
    border-top: 2px solid rgba(0,0,0,0.1)
}

    .sitemap .sitemapList__level1:last-of-type {
        border-bottom: 2px solid rgba(0,0,0,0.1)
    }

.sitemap .sitemapList__level1-item {
    padding-block: 4rem
}

@media (min-width: 992px) {
    .sitemap .sitemapList__level1-item {
        padding-block: 6rem
    }
}

.sitemap .sitemapList__level1-link {
    font-size: 1.8rem
}

@media (min-width: 992px) {
    .sitemap .sitemapList__level1-link {
        font-size: 2rem
    }
}

.sitemap .sitemapList__level2 {
    margin-top: 2rem
}

.sitemap .sitemapList__level2-item:not(:last-of-type) {
    margin-bottom: 2rem
}

@media (min-width: 992px) {
    .sitemap .sitemapList__level2-item:not(:last-of-type) {
        margin-bottom: 3rem
    }
}

.sitemap .sitemapList__level2-link {
    font-size: 1.6rem
}

@media (min-width: 992px) {
    .sitemap .sitemapList__level2-link {
        font-size: 1.8rem
    }
}

.sitemap .sitemapList__level3 {
    margin-top: 1rem;
    margin-bottom: 2rem;
    column-count: 2;
    gap: 2rem
}

@media (min-width: 992px) {
    .sitemap .sitemapList__level3 {
        column-count: 4;
        gap: 3rem
    }
}

.sitemap .sitemapList__level3-item {
    line-height: 1;
    margin-bottom: 1.5rem
}

.sitemap .sitemapList__level3-link {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: block
}

@media (min-width: 992px) {
    .sitemap .sitemapList__level3-link {
        font-size: 1.6rem
    }
}

.sitemap .sitemapList__level3 a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button)::after {
    margin-top: 0
}

.sitemap .sitemapList__level4-item {
    margin-left: 1rem
}

.sitemap .sitemapList__level4-link {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block
}

@media (min-width: 992px) {
    .sitemap .sitemapList__level4-link {
        font-size: 1.4rem
    }
}

.tabbedContent {
    position: relative
}

    .tabbedContent .tab-list {
        padding: 0;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        width: 100%
    }

        .tabbedContent .tab-list.js-loaded {
            overflow-x: auto;
            overflow-y: visible;
            flex-wrap: nowrap;
            scrollbar-width: none
        }

            .tabbedContent .tab-list.js-loaded::-webkit-scrollbar {
                display: none
            }

            .tabbedContent .tab-list.js-loaded .tab-list__content {
                position: absolute;
                left: 0
            }

            .tabbedContent .tab-list.js-loaded .tab-list__item {
                max-width: fit-content
            }

    .tabbedContent .tab-list__item {
        flex: 1 0 100%
    }

        .tabbedContent .tab-list__item:not(:last-of-type) .tab-list__toggle {
            padding-right: 2rem
        }

    .tabbedContent .tab-list__item--active .tab-list__toggle {
        color: #D93F00
    }

    .tabbedContent .tab-list__toggle {
        appearance: none;
        -webkit-appearance: none;
        border: none;
        background-color: transparent;
        padding: 0;
        font-size: 1.6rem;
        font-family: "GeneralSans","Arial",sans-serif;
        font-weight: 500;
        text-decoration: underline;
        transition: all 0.3s ease
    }

@media (min-width: 992px) {
    .tabbedContent .tab-list__toggle {
        font-size: 2rem
    }
}

.tabbedContent .tab-list__toggle::after {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: 3rem;
    height: 0.4rem;
    width: 100%;
    background: #ECEEEF;
    opacity: 0;
    transition: all 0.3s ease
}

.tabbedContent .tab-list__toggle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 3rem;
    height: 0.4rem;
    width: 3rem;
    background: #AEADAD;
    opacity: 0;
    transition: all 0.3s ease
}

.tabbedContent .tab-list__toggle:hover, .tabbedContent .tab-list__toggle:focus-visible {
    outline: none;
    color: #D93F00
}

@media (max-width: 830px) {
    .tabbedContent .tab-list__toggle:hover::before, .tabbedContent .tab-list__toggle:hover::after, .tabbedContent .tab-list__toggle:focus-visible::before, .tabbedContent .tab-list__toggle:focus-visible::after {
        opacity: 0.9
    }
}

.tabbedContent .tab-list__toggle:disabled {
    text-decoration: none;
    color: #828282;
    cursor: not-allowed
}

.tabbedContent .tab-list__content {
    width: 100%
}

.tabbedContent .tab-list__content-header {
    color: #D93F00
}

.tabbedContent .tab-list .cardsGrid {
    border-top: 2px solid rgba(0,0,0,0.1)
}

    .tabbedContent .tab-list .cardsGrid .col-12:nth-of-type(1) .tileCard {
        border-top: none;
        padding-top: 4rem
    }

@media (min-width: 768px) {
    .tabbedContent .tab-list .cardsGrid .col-12:nth-of-type(1) .tileCard {
        padding-top: 2rem
    }
}

@media (min-width: 768px) {
    .tabbedContent .tab-list .cardsGrid .col-12:nth-of-type(2) .tileCard, .tabbedContent .tab-list .cardsGrid .col-12:nth-of-type(3) .tileCard {
        border-top: none
    }
}

.tabbedContent .tab-list .tileCard__title a {
    line-height: 120% !important
}

.tabbedContent--myt2u .tab-list__toggle {
    margin-bottom: 2rem;
    padding: 1.5rem;
    text-decoration: none;
    border-bottom: 2px solid #F2F2F2
}

@media (min-width: 992px) {
    .tabbedContent--myt2u .tab-list__toggle {
        margin-bottom: 3rem
    }
}

.tabbedContent--myt2u .tab-list__toggle::before, .tabbedContent--myt2u .tab-list__toggle::after {
    top: 6rem
}

.tabbedContent--myt2u .tab-list__toggle:hover, .tabbedContent--myt2u .tab-list__toggle:focus-visible {
    outline: none;
    color: #D93F00
}

@media (max-width: 520px) {
    .tabbedContent--myt2u .tab-list__toggle:hover::before, .tabbedContent--myt2u .tab-list__toggle:hover::after, .tabbedContent--myt2u .tab-list__toggle:focus-visible::before, .tabbedContent--myt2u .tab-list__toggle:focus-visible::after {
        opacity: 0.9
    }
}

@media (max-width: 830px) and (min-width: 521px) {
    .tabbedContent--myt2u .tab-list__toggle:hover::before, .tabbedContent--myt2u .tab-list__toggle:hover::after, .tabbedContent--myt2u .tab-list__toggle:focus-visible::before, .tabbedContent--myt2u .tab-list__toggle:focus-visible::after {
        opacity: 0
    }
}

.tabbedContent--myt2u .tab-list__item--active .tab-list__toggle {
    color: #000;
    border-bottom-color: #E74300
}

.warningMessage {
    padding-block: 2.5rem
}

@media (min-width: 992px) {
    .warningMessage__content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
}

@media (min-width: 992px) {
    .warningMessage__content p {
        margin-bottom: 0
    }
}

.warningMessage__content .button {
    margin-bottom: 0
}

.benefitCalculations table {
    width: 100%;
    table-layout: fixed
}

    .benefitCalculations table th {
        width: 18%
    }

    .benefitCalculations table a.button {
        margin: 0;
        text-decoration: underline
    }

.benefitCalculations .pagination {
    padding: 0
}

.benefitCalculations__actions {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 2px solid #F2F2F2
}

@media (min-width: 992px) {
    .benefitCalculations__actions {
        padding-top: 3rem;
        margin-top: 3rem
    }
}

.clientInformations {
    padding-bottom: 4rem
}

@media (min-width: 992px) {
    .clientInformations {
        padding-bottom: 6rem
    }
}

.clientInformations__details {
    list-style: none;
    padding: 0 0 2rem 0;
    margin: 0;
    border-bottom: 2px solid #F2F2F2
}

@media (min-width: 992px) {
    .clientInformations__details {
        padding: 0 0 3rem 0
    }
}

@media (min-width: 992px) {
    .clientInformations__item {
        display: flex
    }
}

@media (max-width: 991.98px) {
    .clientInformations__item-key {
        margin-bottom: 0.8rem
    }
}

@media (min-width: 992px) {
    .clientInformations__item-key {
        width: 26rem;
        padding-right: 3rem
    }
}

.clientInformations__item .button {
    font-size: 1.6rem
}

.clientInformations__actions {
    margin-top: 2rem
}

@media (min-width: 992px) {
    .clientInformations__actions {
        margin-top: 3rem;
        display: flex
    }
}

.clientInformations__actions .button {
    margin-bottom: 0
}

    .clientInformations__actions .button:not(:first-child) {
        margin-top: 2rem
    }

@media (min-width: 992px) {
    .clientInformations__actions .button:not(:first-child) {
        margin-top: 0;
        margin-left: 1rem
    }
}

.clientNotes {
    padding-bottom: 4rem
}

@media (min-width: 992px) {
    .clientNotes {
        padding-bottom: 6rem
    }
}

.clientNotes__notes {
    list-style: none;
    padding: 0;
    margin-top: 4rem
}

@media (min-width: 992px) {
    .clientNotes__notes {
        margin-top: 6rem
    }
}

@media (min-width: 992px) {
    .clientNotes__note {
        display: flex
    }
}

@media (min-width: 992px) {
    .clientNotes__note-details {
        margin-left: 2rem
    }
}

.clientNotes__note-date, .clientNotes__note-title {
    margin-bottom: 1rem
}

@media (min-width: 992px) {
    .clientNotes__note-date {
        min-width: 9rem
    }
}

.clientNotes__note-text {
    margin-bottom: 0
}

.clientNotes form fieldset {
    border-bottom: 2px solid #F2F2F2
}

.headerArea__summary > *:last-child {
    margin-bottom: 0
}

.myt2uForm > *:last-child, .tableForm > *:last-child {
    margin-bottom: 0
}

.myt2uForm label, .tableForm label {
    padding-right: 1.2rem
}

.myt2uForm + .myt2uForm, .tableForm + .myt2uForm {
    margin-top: 4rem
}

@media (min-width: 992px) {
    .myt2uForm + .myt2uForm, .tableForm + .myt2uForm {
        margin-top: 6rem
    }
}

.myt2uForm .wysiwyg > *:last-child, .tableForm .wysiwyg > *:last-child {
    margin-bottom: 0
}

.myt2uForm__header, .tableForm__header {
    position: relative
}

    .myt2uForm__header h2, .myt2uForm__header .h2, .tableForm__header h2, .tableForm__header .h2 {
        padding-top: 2rem;
        border-top: 2px solid #E74300
    }

@media (min-width: 992px) {
    .myt2uForm__header h2, .myt2uForm__header .h2, .tableForm__header h2, .tableForm__header .h2 {
        padding-top: 3rem
    }
}

.myt2uForm__header + .myt2uForm__field, .tableForm__header + .myt2uForm__field {
    margin-top: 2rem
}

@media (min-width: 992px) {
    .myt2uForm__header + .myt2uForm__field, .tableForm__header + .myt2uForm__field {
        margin-top: 3rem
    }
}

.myt2uForm__requiredTag, .tableForm__requiredTag {
    margin-top: -1rem
}

@media (min-width: 992px) {
    .myt2uForm__requiredTag, .tableForm__requiredTag {
        float: right
    }
}

@media (min-width: 992px) {
    h2 + .myt2uForm__requiredTag, .h2 + .myt2uForm__requiredTag, h2 + .tableForm__requiredTag, .h2 + .tableForm__requiredTag {
        position: absolute;
        top: 5rem;
        right: 0
    }
}

@media (min-width: 992px) {
    .myt2uForm__tooltip-block, .tableForm__tooltip-block {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between
    }
}

@media (min-width: 992px) {
    .myt2uForm__tooltip-block-content, .tableForm__tooltip-block-content {
        max-width: 95%
    }
}

.myt2uForm__tooltip-block-button, .tableForm__tooltip-block-button {
    float: right;
    font-size: 1.6rem;
    border-radius: 50%;
    margin: 2rem 0;
    border: 2px solid #D93F00;
    background-color: #D93F00;
    color: #fff;
    width: 2.8rem;
    transition: all 0.3s ease;
    text-align: center
}

    .myt2uForm__tooltip-block-button:hover, .tableForm__tooltip-block-button:hover {
        background-color: #fff;
        color: #D93F00;
        text-decoration: none !important
    }

@media (min-width: 992px) {
    .myt2uForm__tooltip-block-button, .tableForm__tooltip-block-button {
        float: none
    }
}

.myt2uForm__tooltip-block-tooltip, .tableForm__tooltip-block-tooltip {
    clear: both;
    border: 2px solid #E74300;
    padding: 2rem;
    position: relative;
    margin-top: 8rem;
    width: 100%
}

@media (min-width: 992px) {
    .myt2uForm__tooltip-block-tooltip, .tableForm__tooltip-block-tooltip {
        margin-top: 3rem
    }
}

.myt2uForm__tooltip-block-tooltip::before, .tableForm__tooltip-block-tooltip::before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: -1.2rem;
    right: 2.5px;
    transform: rotate(45deg);
    background: white;
    transform: scaleY(1.5) rotate(45deg);
    border-top: 2px solid #E74300;
    border-left: 2px solid #E74300
}

.myt2uForm__tooltip-block-tooltip p, .tableForm__tooltip-block-tooltip p {
    font-weight: 500
}

.myt2uForm__field .myt2uForm__tooltip-block, .tableForm__field .myt2uForm__tooltip-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

.myt2uForm__field .myt2uForm__tooltip-block-content, .tableForm__field .myt2uForm__tooltip-block-content {
    flex-grow: 1;
    max-width: 85%
}

@media (min-width: 768px) {
    .myt2uForm__field .myt2uForm__tooltip-block-content, .tableForm__field .myt2uForm__tooltip-block-content {
        max-width: 90%
    }
}

.myt2uForm__field .myt2uForm__tooltip-block-button, .tableForm__field .myt2uForm__tooltip-block-button {
    float: none;
    margin: 3rem 0 0 0
}

.myt2uForm__field .myt2uForm__tooltip-block-tooltip, .tableForm__field .myt2uForm__tooltip-block-tooltip {
    margin-top: 3rem
}

.myt2uForm__field--checkbox, .tableForm__field--checkbox {
    display: flex;
    flex-wrap: wrap;
    width: fit-content
}

    .myt2uForm__field--checkbox .myt2uForm__error, .tableForm__field--checkbox .myt2uForm__error {
        order: 1;
        width: 100%;
        margin-top: 0
    }

        .myt2uForm__field--checkbox .myt2uForm__error[id*="-placeholder"], .tableForm__field--checkbox .myt2uForm__error[id*="-placeholder"] {
            order: 4;
            margin: 0;
            width: unset
        }

    .myt2uForm__field--checkbox input[type="checkbox"], .tableForm__field--checkbox input[type="checkbox"] {
        order: 2
    }

    .myt2uForm__field--checkbox label, .tableForm__field--checkbox label {
        margin-bottom: 0;
        order: 3;
        max-width: calc(100% - 3rem)
    }

        .myt2uForm__field--checkbox label a, .tableForm__field--checkbox label a {
            font-weight: 500 !important
        }

.myt2uForm input[type="checkbox"], .tableForm input[type="checkbox"] {
    -moz-appearance: initial;
    opacity: 1;
    width: 2rem;
    height: 0;
    margin-left: 0;
    margin-right: 1rem;
    position: relative;
    display: flex
}

    .myt2uForm input[type="checkbox"]::before, .tableForm input[type="checkbox"]::before {
        content: '';
        position: relative;
        left: 0;
        width: 2rem;
        height: 2rem;
        border: 1px solid #000;
        background-color: #fff;
        cursor: pointer;
        flex-shrink: 0
    }

    .myt2uForm input[type="checkbox"]:hover::before, .tableForm input[type="checkbox"]:hover::before {
        border: 1px solid #E74300
    }

    .myt2uForm input[type="checkbox"]:checked::before, .tableForm input[type="checkbox"]:checked::before {
        border: 1px solid #E74300;
        width: 2rem;
        height: 2rem;
        background-image: url("data:image/svg+xml, %3csvg viewBox=%270 0 11 9%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.91308 4.03516H1.91326C1.99256 4.03525 2.07081 4.05331 2.14213 4.08798C2.21341 4.12262 2.27591 4.17295 2.32497 4.2352L1.91308 4.03516ZM1.91308 4.03516H1.09394C0.890308 4.03516 0.776602 4.26975 0.902321 4.4292L0.902371 4.42927L4.11214 8.49567L4.11218 8.49573C4.32247 8.76188 4.72568 8.76114 4.93667 8.49617L4.93708 8.49566L10.6597 1.24398C10.6598 1.24378 10.66 1.24358 10.6602 1.24338C10.7884 1.08295 10.6699 0.85 10.4689 0.85H9.6498C9.48941 0.85 9.33668 0.9235 9.2376 1.05044C9.23751 1.05055 9.23742 1.05066 9.23734 1.05077L4.52403 7.02157M1.91308 4.03516L4.52403 7.02157M4.52403 7.02157L2.32506 4.23531L4.52403 7.02157Z%27 fill=%27white%27 stroke=%27%23E74300%27 stroke-width=%270.3%27/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 1.5rem;
        background-color: #E74300
    }

    .myt2uForm input[type="checkbox"]:checked:hover::before, .tableForm input[type="checkbox"]:checked:hover::before {
        border: 1px solid #000
    }

    .myt2uForm input[type="checkbox"]:focus::before, .myt2uForm input[type="checkbox"]:focus-visible::before, .tableForm input[type="checkbox"]:focus::before, .tableForm input[type="checkbox"]:focus-visible::before {
        border: 1px solid #E74300
    }

    .myt2uForm input[type="checkbox"]:checked:focus::before, .myt2uForm input[type="checkbox"]:checked:focus-visible::before, .tableForm input[type="checkbox"]:checked:focus::before, .tableForm input[type="checkbox"]:checked:focus-visible::before {
        border: 1px solid #000
    }

.myt2uForm .checkboxes-limit-warning, .tableForm .checkboxes-limit-warning {
    font-family: "GeneralSans","Arial",sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: -1rem;
    display: inline-block
}

.myt2uForm__field--radio, .tableForm__field--radio {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    align-items: center
}

    .myt2uForm__field--radio .myt2uForm__error, .tableForm__field--radio .myt2uForm__error {
        order: 1;
        width: 100%
    }

        .myt2uForm__field--radio .myt2uForm__error[id*="-placeholder"], .tableForm__field--radio .myt2uForm__error[id*="-placeholder"] {
            order: 4;
            margin: 0
        }

    .myt2uForm__field--radio input[type="radio"], .tableForm__field--radio input[type="radio"] {
        order: 2
    }

    .myt2uForm__field--radio label, .tableForm__field--radio label {
        order: 3;
        margin: 0 0 0 1rem
    }

        .myt2uForm__field--radio label .required-mark, .tableForm__field--radio label .required-mark {
            display: none
        }

    .myt2uForm__field--radio.radio--large, .tableForm__field--radio.radio--large {
        padding: 2rem 0;
        margin: 0;
        border-top: 2px solid #F2F2F2;
        width: 100%
    }

@media (min-width: 992px) {
    .myt2uForm__field--radio.radio--large, .tableForm__field--radio.radio--large {
        padding: 3rem 0
    }
}

.myt2uForm__field--radio.radio--large:last-of-type, .tableForm__field--radio.radio--large:last-of-type {
    margin-bottom: 2rem;
    border-bottom: 2px solid #F2F2F2
}

@media (min-width: 992px) {
    .myt2uForm__field--radio.radio--large:last-of-type, .tableForm__field--radio.radio--large:last-of-type {
        margin-bottom: 3rem
    }
}

.myt2uForm__field--radio.radio--large label, .tableForm__field--radio.radio--large label {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: "RobotoSlab","Helvetica","Arial",sans-serif
}

.myt2uForm select + .myt2uForm__error, .tableForm select + .myt2uForm__error {
    display: block;
    margin-top: -8px
}

.myt2uForm__field--date, .tableForm__field--date {
    position: relative
}

    .myt2uForm__field--date span.calendar, .tableForm__field--date span.calendar {
        position: absolute;
        top: 4.6rem;
        right: 2rem
    }

    .myt2uForm__field--date input, .tableForm__field--date input {
        font-family: "GeneralSans","Arial",sans-serif
    }

.myt2uForm__group-title, .tableForm__group-title {
    display: flex;
    margin-bottom: 1rem
}

.myt2uForm__group-inputs, .tableForm__group-inputs {
    position: relative
}

    .myt2uForm__group-inputs > :last-child, .tableForm__group-inputs > :last-child {
        margin-bottom: 0
    }

    .myt2uForm__group-inputs .required-mark, .tableForm__group-inputs .required-mark {
        display: none
    }

.myt2uForm__group .myt2uForm__field--checkbox label, .tableForm__group .myt2uForm__field--checkbox label {
    font-family: "RobotoSlab","Helvetica","Arial",sans-serif;
    font-weight: 300
}

.myt2uForm fieldset, .tableForm fieldset {
    clear: both
}

    .myt2uForm fieldset legend, .tableForm fieldset legend {
        margin-bottom: 0 !important;
        line-height: 0
    }

.myt2uForm__buttons-row, .tableForm__buttons-row {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #F2F2F2
}

@media (min-width: 992px) {
    .myt2uForm__buttons-row, .tableForm__buttons-row {
        margin-top: 3rem;
        padding-top: 3rem;
        display: flex
    }
}

.myt2uForm__buttons-row > *, .tableForm__buttons-row > * {
    width: 100% !important
}

@media (min-width: 992px) {
    .myt2uForm__buttons-row > *, .tableForm__buttons-row > * {
        width: fit-content !important
    }
}

.myt2uForm__buttons-row > *:not(:last-child), .tableForm__buttons-row > *:not(:last-child) {
    margin-bottom: 2rem !important
}

@media (min-width: 992px) {
    .myt2uForm__buttons-row > *:not(:last-child), .tableForm__buttons-row > *:not(:last-child) {
        margin-bottom: 0 !important;
        margin-right: 1rem
    }
}

@media (min-width: 992px) {
    .myt2uForm__buttons-row > :first-child:not(:only-child), .tableForm__buttons-row > :first-child:not(:only-child) {
        justify-self: start;
        margin-right: auto
    }
}

@media (min-width: 992px) {
    .myt2uForm__buttons-row > :only-child, .tableForm__buttons-row > :only-child {
        justify-self: end;
        margin-left: auto
    }
}

.myt2uForm__text-row h2, .myt2uForm__text-row .h2, .tableForm__text-row h2, .tableForm__text-row .h2 {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 2px solid #E74300
}

@media (min-width: 992px) {
    .myt2uForm__text-row h2, .myt2uForm__text-row .h2, .tableForm__text-row h2, .tableForm__text-row .h2 {
        padding-top: 3rem
    }
}

.myt2uForm__text-row > *:last-child, .tableForm__text-row > *:last-child {
    margin-bottom: 0
}

.myt2uForm .required-mark, .tableForm .required-mark {
    color: #EB0000;
    font-size: 1.6rem
}

.myt2uForm__error, .tableForm__error {
    color: #EB0000;
    font-family: "GeneralSans","Arial",sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-top: 1rem
}

.myt2uForm__footer, .tableForm__footer {
    margin-top: 3rem
}

.ui-datepicker {
    background-color: #fff;
    box-shadow: 0px 16px 32px rgba(23,37,76,0.12);
    border-radius: 8px;
    display: block;
    padding: 2.4rem;
    font-family: "GeneralSans","Arial",sans-serif;
    font-size: 1.6rem
}

    .ui-datepicker .ui-datepicker-header {
        display: flex;
        align-items: center;
        margin-bottom: 2rem
    }

    .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
        display: inline-block;
        width: 1.3rem;
        height: 1.3rem;
        position: relative;
        cursor: pointer
    }

        .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
            display: none
        }

    .ui-datepicker .ui-datepicker-prev {
        order: 2;
        margin-right: 3rem
    }

        .ui-datepicker .ui-datepicker-prev::after {
            content: '';
            width: 1.3rem;
            height: 1.3rem;
            -webkit-mask-repeat: no-repeat;
            -webkit-mask-size: contain;
            -webkit-mask-position: center;
            -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M9 1L2 7.49645L9 14%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
            mask-repeat: no-repeat;
            mask-size: contain;
            mask-position: center;
            mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M9 1L2 7.49645L9 14%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
            background-color: #000;
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.3s ease
        }

    .ui-datepicker .ui-datepicker-next {
        order: 3
    }

        .ui-datepicker .ui-datepicker-next::after {
            content: '';
            width: 1.3rem;
            height: 1.3rem;
            -webkit-mask-repeat: no-repeat;
            -webkit-mask-size: contain;
            -webkit-mask-position: center;
            -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0.999999 14L8 7.50355L0.999998 1%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
            mask-repeat: no-repeat;
            mask-size: contain;
            mask-position: center;
            mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0.999999 14L8 7.50355L0.999998 1%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
            background-color: #000;
            margin: 0;
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.3s ease
        }

    .ui-datepicker .ui-datepicker-title {
        order: 1;
        justify-self: start;
        margin-right: auto;
        font-weight: 500
    }

    .ui-datepicker .ui-datepicker-calendar {
        display: block
    }

        .ui-datepicker .ui-datepicker-calendar th, .ui-datepicker .ui-datepicker-calendar td {
            padding: 0.5rem;
            text-align: center
        }

            .ui-datepicker .ui-datepicker-calendar th:first-of-type, .ui-datepicker .ui-datepicker-calendar td:first-of-type {
                padding: 0.5rem 0.5rem 0.5rem 0
            }

            .ui-datepicker .ui-datepicker-calendar th:last-of-type, .ui-datepicker .ui-datepicker-calendar td:last-of-type {
                padding: 0.5rem 0 0.5rem 0.5rem
            }

        .ui-datepicker .ui-datepicker-calendar th {
            font-weight: 500
        }

        .ui-datepicker .ui-datepicker-calendar th, .ui-datepicker .ui-datepicker-calendar .ui-datepicker-week-end a {
            color: #828282;
            text-decoration: none
        }

        .ui-datepicker .ui-datepicker-calendar td a {
            border-radius: 50%;
            width: 2.6rem;
            height: 2.6rem;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease
        }

            .ui-datepicker .ui-datepicker-calendar td a:hover {
                background-color: #F2F2F2
            }

            .ui-datepicker .ui-datepicker-calendar td a:focus-visible {
                border-color: #D93F00
            }

        .ui-datepicker .ui-datepicker-calendar td:not(.ui-datepicker-week-end):not(.ui-datepicker-today) a {
            color: #000;
            text-decoration: none
        }

        .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a {
            color: #D93F00;
            text-decoration: none
        }

        .ui-datepicker .ui-datepicker-calendar .ui-state-active {
            color: #fff !important;
            background-color: #D93F00
        }

.myt2uSearch--clients {
    position: relative
}

@media (min-width: 992px) {
    .myt2uSearch--clients {
        display: flex
    }
}

@media (min-width: 992px) {
    .myt2uSearch--clients #search-error {
        position: absolute;
        bottom: -35px
    }
}

@media (min-width: 992px) {
    .myt2uSearch--clients input[type="reset"] {
        right: 12.8rem !important;
        padding: 1.6rem 1rem !important
    }
}

.myt2uSearch input[type="search"] {
    all: unset;
    border: 1px solid #000;
    font-size: 1.6rem;
    padding: 1.5rem;
    width: 100%;
    flex-shrink: 1;
    box-sizing: border-box
}

    .myt2uSearch input[type="search"]:focus-visible, .myt2uSearch input[type="search"]:focus, .myt2uSearch input[type="search"]:active {
        border-radius: 0;
        border-color: #fff;
        outline: 1px solid #E74300
    }

        .myt2uSearch input[type="search"]:focus-visible + input[type="reset"], .myt2uSearch input[type="search"]:focus-visible + span + input[type="reset"], .myt2uSearch input[type="search"]:focus + input[type="reset"], .myt2uSearch input[type="search"]:focus + span + input[type="reset"], .myt2uSearch input[type="search"]:active + input[type="reset"], .myt2uSearch input[type="search"]:active + span + input[type="reset"] {
            border-color: #fff;
            outline: 1px solid #E74300
        }

@media (min-width: 992px) {
    .myt2uSearch input[type="search"] {
        width: calc(100% - 3.3rem)
    }
}

.myt2uSearch input[type='search' i]::-webkit-search-cancel-button {
    appearance: none
}

.myt2uSearch input[type="reset"] {
    all: unset;
    display: none;
    cursor: pointer;
    font-size: 1.6rem;
    padding: 1.5rem 1rem;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #000 #000 #000 #fff;
    border-image: initial;
    margin-left: -1px;
    position: absolute;
    right: -0.2rem;
    top: 0
}

    .myt2uSearch input[type="reset"]:focus-visible {
        outline: 2px solid #D93F00
    }

.myt2uSearch .button[type="submit"] {
    margin-bottom: 0;
    margin-top: 1rem;
    flex-shrink: 0
}

@media (min-width: 992px) {
    .myt2uSearch .button[type="submit"] {
        margin-top: 0;
        margin-left: 1rem
    }
}

.myt2uSearch .myt2uForm__field--search .myt2uForm__tooltip-block {
    position: relative
}

@media (min-width: 992px) {
    .myt2uSearch .myt2uForm__field--search .myt2uForm__tooltip-block {
        align-items: start
    }
}

.myt2uSearch .myt2uForm__field--search .myt2uForm__tooltip-block-content {
    width: 100%;
    max-width: unset
}

@media (min-width: 992px) {
    .myt2uSearch .myt2uForm__field--search .myt2uForm__tooltip-block-content {
        display: flex;
        max-width: 92%
    }
}

.myt2uSearch .myt2uForm__field--search .myt2uForm__tooltip-block-button {
    position: absolute;
    right: 0;
    top: 5.2rem
}

@media (min-width: 992px) {
    .myt2uSearch .myt2uForm__field--search .myt2uForm__tooltip-block-button {
        position: unset;
        margin-top: 1.5rem
    }
}

@media (min-width: 992px) {
    .myt2uSearch .myt2uForm__field--search input[type="search"] {
        width: 92%;
        flex-shrink: 0;
        flex-grow: 1
    }
}

.myt2uSearch .myt2uForm__field--search input[type="reset"] {
    margin-left: 0;
    border-left-color: #000
}

@media (min-width: 992px) {
    .myt2uSearch .myt2uForm__field--search input[type="reset"] {
        right: 0;
        padding-block: 1.6rem
    }
}

@media (min-width: 992px) {
    .myt2uSearch .myt2uForm__field--search .button[type="submit"] {
        height: fit-content
    }
}

.myt2uSearch .myt2uForm__field--search .myt2uForm__autocomplete-container {
    width: 100%;
    position: relative
}

@media (min-width: 992px) {
    .myt2uSearch .myt2uForm__field--search .myt2uForm__autocomplete-container {
        flex-wrap: wrap;
        display: flex
    }
}

.myt2uSearch .myt2uForm__field--search .ui-menu.ui-autocomplete {
    border: 1px solid #000;
    background-color: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 45rem;
    width: calc(100% + 0.2rem);
    z-index: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin
}

    .myt2uSearch .myt2uForm__field--search .ui-menu.ui-autocomplete::-webkit-scrollbar {
        margin: auto 0;
        width: 0.5rem
    }

@media (min-width: 992px) {
    .myt2uSearch .myt2uForm__field--search .ui-menu.ui-autocomplete::-webkit-scrollbar {
        width: 1rem
    }
}

.myt2uSearch .myt2uForm__field--search .ui-menu.ui-autocomplete::-webkit-scrollbar-thumb {
    background: #AEADAD
}

.myt2uSearch .myt2uForm__field--search .ui-menu.ui-autocomplete::-webkit-scrollbar-track {
    background: #ECEEEF
}

.myt2uSearch .myt2uForm__field--search .ui-menu.ui-autocomplete li:not(:last-of-type) {
    border-bottom: 1px solid #000
}

.myt2uSearch .myt2uForm__field--search .ui-menu.ui-autocomplete li .ui-menu-item-wrapper {
    background-color: #fff;
    display: block;
    width: 100%;
    padding: 1.5rem;
    cursor: pointer
}

    .myt2uSearch .myt2uForm__field--search .ui-menu.ui-autocomplete li .ui-menu-item-wrapper.ui-state-active, .myt2uSearch .myt2uForm__field--search .ui-menu.ui-autocomplete li .ui-menu-item-wrapper:hover {
        text-decoration: underline;
        color: #D93F00
    }

@media (min-width: 992px) {
    .myt2uSearch .myt2uForm__field--search .ui-menu.ui-autocomplete li .ui-menu-item-wrapper {
        padding: 1.5rem 3rem
    }
}

.tableForm {
    width: 100%;
    table-layout: fixed
}

    .tableForm th {
        width: 18%
    }

    .tableForm th, .tableForm td {
        white-space: nowrap;
        min-width: unset !important;
        max-width: unset !important
    }

    .tableForm .button {
        margin: 0;
        font-size: 1.6rem
    }

    .tableForm .verified {
        color: #2E8545
    }

    .tableForm .unverified {
        color: #EB0000;
        display: flex
    }

    .tableForm label {
        line-height: 0;
        display: block
    }

    .tableForm input[type="checkbox"] {
        margin-inline: auto
    }

.clientsTable {
    margin-top: 4rem
}

@media (min-width: 992px) {
    .clientsTable {
        margin-top: 6rem
    }
}

.clientsTable .button {
    margin: 0;
    font-size: 1.6rem
}

.clientsTable table {
    margin-bottom: 0;
    width: 100%;
    table-layout: fixed
}

    .clientsTable table th {
        width: 15%
    }

    .clientsTable table th, .clientsTable table td {
        white-space: nowrap;
        min-width: unset;
        max-width: unset
    }

    .clientsTable table a {
        font-weight: 500
    }

.tableForm th a.button span::after, .tableForm th a.button::after, .clientsTable th a.button span::after, .clientsTable th a.button::after {
    width: 1.4rem;
    height: 1.4rem
}

.show-client-name {
    text-decoration: underline
}

.detailsInfo {
    background-color: #F2F2F2;
    list-style: none;
    padding: 2rem
}

    .detailsInfo li {
        display: flex
    }

        .detailsInfo li:not(:last-of-type) {
            margin-bottom: 1rem
        }

.detailsInfo__key {
    margin: 0 3rem 0 0;
    min-width: 12rem
}

.detailsInfo__value {
    margin: 0;
    line-height: 120%
}

.summary__details {
    list-style: none;
    padding: 0;
    margin: 0
}

@media (min-width: 992px) {
    .summary__item {
        display: flex
    }
}

.summary__item-key {
    margin-bottom: 0.8rem
}

@media (min-width: 992px) {
    .summary__item-key {
        width: 26rem;
        padding-right: 3rem
    }
}

.summary__item-value p {
    margin-bottom: 0
}

.ud-summary .myt2uForm__footer h2, .ud-summary .myt2uForm__footer .h2 {
    border-top: 2px solid #E74300;
    padding-top: 2rem;
    margin-top: 2rem
}

@media (min-width: 992px) {
    .ud-summary .myt2uForm__footer h2, .ud-summary .myt2uForm__footer .h2 {
        padding-top: 3rem;
        margin-top: 3rem
    }
}

.ud-summary .myt2uForm__footer ul {
    list-style: none;
    padding: 0
}

    .ud-summary .myt2uForm__footer ul li .button {
        text-decoration: underline;
        text-align: left
    }

[class^="ud-"] {
    padding-bottom: 4rem
}

@media (min-width: 992px) {
    [class^="ud-"] {
        padding-bottom: 6rem
    }
}

[class^="ud-"] .wysiwyg {
    border-top: 2px solid #E74300;
    padding-top: 2rem
}

@media (min-width: 992px) {
    [class^="ud-"] .wysiwyg {
        padding-top: 3rem
    }
}

[class^="ud-"] .wysiwyg ol li:not(:last-of-type) {
    margin-bottom: 1rem
}

[class^="ud-"] .myt2uForm .wysiwyg {
    border-top: none;
    padding-top: 0
}

[class^="ud-"] label .wysiwyg p {
    font-weight: 500
}

[class^="ud-"] label .wysiwyg a {
    line-height: 120% !important
}

.warningMessage--myt2u[class*="bg--"] {
    padding: 2rem
}

.warningMessage--myt2u-error h2, .warningMessage--myt2u-error .h2, .warningMessage--myt2u-error li {
    color: #EB0000
}

.warningMessage--myt2u-error li {
    margin-bottom: 1rem
}

.warningMessage--myt2u-success h2, .warningMessage--myt2u-success .h2 {
    color: #2E8545
}

.warningMessage--myt2u > *:last-child {
    margin-bottom: 0
}

footer:not(.myt2uForm__footer) {
    padding-block: 3rem
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) {
        padding-block: 6rem
    }
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__top {
        display: flex;
        align-items: start
    }
}

footer:not(.myt2uForm__footer) .footer__top-left {
    display: flex;
    justify-content: space-between;
    flex-shrink: 0
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__top-right {
        width: 28.4%;
        justify-self: end;
        margin-left: auto
    }
}

footer:not(.myt2uForm__footer) .footer__logo {
    margin-bottom: 3rem
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__logo {
        margin-bottom: 0rem;
        margin-right: 6rem
    }
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__logo img {
        width: 12.2rem;
        height: 18rem
    }
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) #footer__sign-up-mobile, footer:not(.myt2uForm__footer) #footer__back-to-top-mobile, footer:not(.myt2uForm__footer) #footer__address-mobile {
        display: none
    }
}

footer:not(.myt2uForm__footer) #footer__sign-up-desktop, footer:not(.myt2uForm__footer) #footer__back-to-top-desktop {
    display: none
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) #footer__sign-up-desktop, footer:not(.myt2uForm__footer) #footer__back-to-top-desktop {
        display: flex
    }
}

footer:not(.myt2uForm__footer) #footer__sign-up-desktop {
    width: 100%
}

footer:not(.myt2uForm__footer) #footer__address-desktop {
    display: none
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) #footer__address-desktop {
        display: block
    }
}

footer:not(.myt2uForm__footer) [id^=footer__sign-up] {
    margin-bottom: 3rem
}

    footer:not(.myt2uForm__footer) [id^=footer__sign-up] span::after, footer:not(.myt2uForm__footer) [id^=footer__sign-up]::after {
        width: 1.7rem;
        height: 1.7rem
    }

footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button {
    color: #FADADE;
    margin-bottom: 3rem
}

    footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button span {
        border-color: #FADADE !important
    }

        footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button span span::after, footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button span::after {
            background-color: #FADADE
        }

    footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button:hover, footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button:focus-visible {
        outline: none;
        color: #FADADE
    }

        footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button:hover span, footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button:focus-visible span {
            background-color: #FADADE
        }

            footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button:hover span span::after, footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button:hover span::after, footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button:focus-visible span span::after, footer:not(.myt2uForm__footer) [id^=footer__back-to-top].button:focus-visible span::after {
                background-color: #000
            }

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__top-middle {
        width: 52%
    }
}

footer:not(.myt2uForm__footer) .footer__socials {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 3rem
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__socials {
        margin-bottom: 6rem
    }
}

footer:not(.myt2uForm__footer) .footer__socials li {
    margin-right: 1.37rem
}

    footer:not(.myt2uForm__footer) .footer__socials li:last-of-type {
        margin-right: 0
    }

    footer:not(.myt2uForm__footer) .footer__socials li a {
        width: 3.6rem;
        height: 3.6rem
    }

        footer:not(.myt2uForm__footer) .footer__socials li a span::after, footer:not(.myt2uForm__footer) .footer__socials li a::after {
            background-color: #fff
        }

        footer:not(.myt2uForm__footer) .footer__socials li a span::after, footer:not(.myt2uForm__footer) .footer__socials li a::after {
            width: 1.7rem;
            height: 1.7rem
        }

        footer:not(.myt2uForm__footer) .footer__socials li a:hover, footer:not(.myt2uForm__footer) .footer__socials li a:focus-visible {
            outline: 2px solid #fff;
            outline-offset: 3px;
            border-color: #FADADE;
            background-color: #FADADE
        }

            footer:not(.myt2uForm__footer) .footer__socials li a:hover span::after, footer:not(.myt2uForm__footer) .footer__socials li a:hover::after, footer:not(.myt2uForm__footer) .footer__socials li a:focus-visible span::after, footer:not(.myt2uForm__footer) .footer__socials li a:focus-visible::after {
                background-color: #000
            }

footer:not(.myt2uForm__footer) .footer__links {
    margin-bottom: 3rem
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__links {
        margin-bottom: 6rem
    }
}

footer:not(.myt2uForm__footer) .footer__links ul {
    list-style: none;
    padding: 0;
    font-family: "GeneralSans","Arial",sans-serif;
    margin-bottom: 0
}

@media (min-width: 768px) {
    footer:not(.myt2uForm__footer) .footer__links ul {
        column-count: 2;
        width: 45%
    }
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__links ul {
        width: 92%
    }
}

footer:not(.myt2uForm__footer) .footer__links li a {
    font-weight: 500;
    white-space: nowrap
}

    footer:not(.myt2uForm__footer) .footer__links li a:hover, footer:not(.myt2uForm__footer) .footer__links li a:focus-visible {
        outline: 2px solid #ffffff;
        outline-offset: 3px;
        color: #D93F00;
    }

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__links li a {
        font-size: 2rem
    }
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__bottom {
        display: flex;
        justify-content: space-between;
        align-items: start;
        padding-top: 6rem;
        border-top: 1px solid #fff
    }
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__bottom .fr__logo {
        margin-left: 6rem
    }
}

footer:not(.myt2uForm__footer) .footer__copyright.wysiwyg {
    margin-bottom: 2rem
}

@media (min-width: 992px) {
    footer:not(.myt2uForm__footer) .footer__copyright.wysiwyg {
        margin-bottom: 0
    }
}

.header {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    z-index: 4;
    width: 100%
}

    .header + main {
        margin-top: 9.4rem
    }

@media (min-width: 992px) and (max-width: 1219.98px) {
    .header + main {
        margin-top: 9.7rem
    }
}

@media (min-width: 1220px) {
    .header + main {
        margin-top: 17.8rem
    }
}

.header__skipTolinks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0
}

@media (min-width: 1220px) {
    .header__skipTolinks {
        display: flex;
        width: fit-content
    }
}

.header__skipTolinks .skip-link {
    background: #000;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: "GeneralSans","Arial",sans-serif;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    position: absolute;
    left: calc((100% - 19.35rem)/2);
    transform: translateY(-200%);
    z-index: 3000;
    display: block;
    margin: 0 auto;
    width: auto
}

@media (min-width: 1220px) {
    .header__skipTolinks .skip-link {
        position: relative;
        width: fit-content;
        left: unset;
        margin: 0
    }
}

.header__skipTolinks .skip-link:focus {
    transform: translateY(0rem)
}

@media (min-width: 1220px) {
    .header__skipTolinks .skip-link:focus {
        transform: translateY(0)
    }
}

.header__eyebrow {
    order: 1;
    background-color: #fff
}

@media (min-width: 1220px) {
    .header__eyebrow {
        border-bottom: 2px solid #000
    }
}

.header__eyebrow .container {
    display: flex;
    align-items: center;
    padding-block: 2rem
}

@media (min-width: 1220px) {
    .header__eyebrow .container {
        flex-direction: row-reverse;
        padding-block: 0
    }
}

.header__eyebrow .button {
    margin-bottom: 0
}

.header__eyebrow #open-search {
    padding-block: 1rem
}

@media (max-width: 1219.98px) {
    .header__eyebrow #open-search {
        padding-block: 1.5rem;
        text-indent: -999990px;
        text-indent: -99999rem
    }
}

@media (min-width: 1220px) {
    .header__eyebrow #nav-toggle {
        display: none
    }
}

.header__options {
    display: flex;
    flex-direction: row-reverse;
    align-items: center
}

@media (min-width: 1220px) {
    .header__options {
        flex-direction: row
    }
}

.header #logo-wrapper-mobile a, .header #logo-wrapper-desktop a {
    display: block;
    background-image: url(https://www.turn2us.org.uk/assets/img/logo-black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -999990px;
    text-indent: -99999rem
}

.header #logo-wrapper-mobile {
    margin-right: auto
}

@media (min-width: 1220px) {
    .header #logo-wrapper-mobile {
        display: none
    }
}

.header #logo-wrapper-mobile a {
    width: 6.3rem;
    height: 4.3rem
}

.header #logo-wrapper-desktop {
    display: none
}

@media (min-width: 1220px) {
    .header #logo-wrapper-desktop {
        display: block;
        flex-shrink: 0;
        margin-right: 4rem;
        width: 10rem
    }
}

.header #logo-wrapper-desktop a {
    width: 10.1rem;
    height: 6.9rem
}

.header__search {
    order: 2;
    overflow: hidden;
    height: 0;
    opacity: 0;
    padding-block: 0;
    transition: all 0.3s ease;
    background-color: #D93F00
}

    .header__search form {
        display: flex;
        align-items: center;
        width: 100%
    }

    .header__search label[for="search"] {
        color: #fff;
        margin: 0 2.5rem 0 0
    }

@media (max-width: 1219.98px) {
    .header__search label[for="search"] {
        display: none
    }
}

.header__search input[type="search"], .header__search input[type="reset"] {
    all: unset;
    font-size: 1.6rem;
    padding: 1rem;
    background-color: #fff
}

.header__search input[type="search"] {
    width: 100%
}

.header__search input[type='search' i]::-webkit-search-cancel-button {
    appearance: none
}

.header__search input[type="reset"] {
    display: none;
    cursor: pointer
}

    .header__search input[type="reset"]:focus-visible {
        outline: 2px solid #000
    }

.header__search .button {
    margin: 0 0 0 1rem
}

    .header__search .button span::after, .header__search .button::after {
        background-color: #fff
    }

    .header__search .button span::after, .header__search .button::after {
        width: 1.7rem;
        height: 1.7rem
    }

.header__search.show-search {
    height: 10.4rem;
    opacity: 1;
    padding-block: 3rem;
    margin-top: -2px
}

.header__nav {
    order: 3;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #F2F2F2
}

@media (min-width: 768px) and (max-width: 1219.98px) {
    .header__nav {
        width: 0;
        position: absolute;
        left: -100vw
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .header__nav {
        height: calc(100vh - 94px);
        top: 9.4rem
    }
}

@media (min-width: 992px) and (max-width: 1219.98px) {
    .header__nav {
        height: calc(100vh - 97px);
        top: 9.7rem
    }
}

@media (min-width: 1220px) {
    .header__nav {
        position: relative;
        background-color: #fff;
        height: fit-content;
        height: unset;
        overflow: visible
    }
}

.header__nav > .container {
    padding-block: 2.5rem
}

@media (min-width: 1220px) {
    .header__nav > .container {
        padding-block: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between
    }
}

.header__nav.show-nav {
    height: calc(100vh - 96px);
    overflow: auto;
    padding-bottom: 6rem
}

@media (min-width: 768px) and (max-width: 1219.98px) {
    .header__nav.show-nav {
        width: 45%;
        left: 0
    }
}

@media (min-width: 1220px) {
    .header__nav.show-nav {
        height: unset;
        overflow: visible
    }
}

.header__nav.show-nav .nav {
    display: block
}

.header__nav .nav {
    display: none
}

@media (min-width: 1220px) {
    .header__nav .nav {
        display: block;
        width: 100%
    }
}

.header__nav .nav ul {
    list-style: none;
    padding: 0;
    margin: 0
}

@media (min-width: 1220px) {
    .header__nav .nav ul {
        width: 100%;
        justify-content: space-between
    }
}

@media (min-width: 1220px) {
    .header__nav .nav > ul {
        display: flex;
        align-items: end
    }
}

.header__nav .nav__item2 {
    margin: 0;
    border-bottom: 2px solid #000
}

@media (min-width: 1220px) {
    .header__nav .nav__item2 {
        border: none;
        padding: 0;
        margin-right: 2.5rem
    }
}

@media (min-width: 1220px) {
    .header__nav .nav__item:last-of-type {
        margin-right: 0
    }
}

.header__nav .nav__item:first-of-type > a.button {
    padding-top: 0
}

.header__nav .nav__item2 > a.button {
    margin: 0;
    padding-block: 2rem;
    width: 100%;
    justify-content: start;
    text-align: start;
    position: relative;
    white-space: nowrap
}

    .header__nav .nav__item2 > a.button span::after, .header__nav .nav__item2 > a.button::after {
        width: 1.7rem;
        height: 1.7rem
    }

@media (min-width: 1220px) {
    .header__nav .nav__item2 > a.button {
        line-height: 120% !important;
        font-size: 1.7rem;
        align-items: end;
        padding: 0
    }
}

@media (max-width: 1219.98px) {
    .header__nav .nav__item2 > a.button br {
        display: none
    }
}

.header__nav .nav__item2 > a.button::before {
    content: '';
    position: absolute;
    bottom: -4rem;
    left: calc(50% - 2.5rem);
    width: 0;
    height: 0;
    border-left: 0.9rem solid transparent;
    border-right: 0.9rem solid transparent;
    border-bottom: 1.3rem solid #F2F2F2;
    opacity: 0;
    transition: all 0.3s ease
}

@media (max-width: 1219.98px) {
    .header__nav .nav__item2 > a.button::before {
        display: none
    }
}

.header__nav .nav__item--active > a.button::after {
    transform: rotate(90deg)
}

@media (min-width: 1220px) {
    .header__nav .nav__item--active > a.button::after {
        transform: none;
        opacity: 0
    }
}

.header__nav .nav__item--active > a.button::before {
    opacity: 1
}

.header__nav .nav__item-content {
    display: none;
    z-index: 1
}

@media (min-width: 1220px) {
    .header__nav .nav__item-content {
        position: absolute;
        left: 0;
        top: 11.76rem;
        width: 100%;
        background-color: #F2F2F2
    }
}

@media (max-width: 1219.98px) {
    .header__nav .nav__item-content > .container {
        padding: 0
    }
}

@media (min-width: 1220px) {
    .header__nav .nav__item-content > .container {
        display: flex;
        justify-content: space-between;
        padding-block: 4rem
    }
}

.header__nav .nav__item-intro {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column-reverse
}

@media (min-width: 1220px) {
    .header__nav .nav__item-intro {
        flex-direction: column;
        flex: 0 0 auto;
        width: 33.33333%;
        margin-right: 3rem
    }
}

.header__nav .nav__item-intro .wysiwyg {
    margin-bottom: 2rem
}

    .header__nav .nav__item-intro .wysiwyg > *:last-child {
        margin-bottom: 0
    }

@media (min-width: 1220px) {
    .header__nav .nav__item-child-list {
        padding-right: 0.85rem;
        max-height: calc(100vh - 26.4rem);
        overflow: auto;
        display: flex;
        align-items: start;
        gap: 3rem;
        justify-content: space-between;
        width: 100%
    }
}

@media (min-width: 1220px) {
    .header__nav .nav__item-column-one, .header__nav .nav__item-column-two {
        flex-grow: 0;
        flex-shrink: 0;
        width: calc(50% - 1.5rem)
    }
}

@media (max-width: 1219.98px) {
    .header__nav .nav__item-column-one .nav__child-item:last-of-type .nav__child-item-link {
        margin-bottom: 2rem
    }
}

.header__nav .nav__item-link {
    line-height: 120% !important;
    margin-bottom: 0
}

@media (min-width: 1220px) {
    .header__nav .nav__item-link {
        font-size: 3rem;
        margin-bottom: 2rem;
        border: none;
        padding: 0
    }
}

@media (min-width: 1220px) {
    .header__nav .nav__item-link::after {
        margin-left: 1.5rem
    }
}

.header__nav .nav__item-link:hover .text-mobile {
    text-decoration: underline
}

.header__nav .nav__item-link .text-mobile {
    transition: none;
    margin: 0
}

@media (min-width: 1220px) {
    .header__nav .nav__item-link .text-mobile {
        display: none
    }
}

.header__nav .nav__item-link .text-mobile br {
    display: none
}

.header__nav .nav__item-link .text-desktop {
    text-decoration: underline;
    transition: none;
    margin: 0
}

@media (max-width: 1219.98px) {
    .header__nav .nav__item-link .text-desktop {
        display: none
    }
}

.header__nav .nav__child-item {
    height: fit-content
}

    .header__nav .nav__child-item:last-of-type .nav__child-item-link {
        margin-bottom: 3rem
    }

@media (min-width: 1220px) {
    .header__nav .nav__child-item {
        background-color: #fff;
        padding: 2rem;
        margin-bottom: 2rem;
        break-inside: avoid-column
    }
}

.header__nav .nav__child-item-link {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #fff;
    line-height: 120% !important
}

    .header__nav .nav__child-item-link:hover {
        background-color: #fff !important
    }

@media (min-width: 1220px) {
    .header__nav .nav__child-item-link {
        padding: 0;
        line-height: 120% !important
    }
}

@media (max-width: 1219.98px) {
    .header__nav .nav__child-item-summary {
        display: none
    }
}

@media (min-width: 1220px) {
    .header__nav .nav__child-item-summary {
        margin-bottom: 0
    }
}

@media (min-width: 1220px) {
    .header__nav .nav #nav-signout-mobile {
        display: none
    }
}

.header__nav .nav #nav-signout-desktop {
    margin-top: 3rem
}

@media (max-width: 1219.98px) {
    .header__nav .nav #nav-signout-desktop {
        display: none
    }
}

.header__nav .nav #nav-login > a.button {
    margin: 0;
    padding-block: 2rem
}

@media (min-width: 1220px) {
    .header__nav .nav #nav-login > a.button {
        padding-block: 0
    }
}

@media (max-width: 1219.98px) {
    .header--search-open .header__eyebrow, .header--nav-open .header__eyebrow {
        background-color: #D93F00
    }
}

.header--search-open #logo-wrapper-mobile a, .header--nav-open #logo-wrapper-mobile a {
    background-image: url(https://www.turn2us.org.uk/assets/img/logo-pink.svg)
}

@media (max-width: 1219.98px) {
    .header--search-open .button--donate, .header--nav-open .button--donate {
        background-color: #fff
    }
}

.header--search-open .button--donate:hover, .header--nav-open .button--donate:hover {
    background-color: #fff !important;
    color: #D93F00
}

@media (max-width: 1219.98px) {
    .header--search-open #open-search:hover, .header--nav-open #open-search:hover {
        color: #fff
    }

        .header--search-open #open-search:hover span::after, .header--search-open #open-search:hover::after, .header--nav-open #open-search:hover span::after, .header--nav-open #open-search:hover::after {
            background-color: #fff
        }
}

.header--search-open #nav-toggle.button:hover, .header--nav-open #nav-toggle.button:hover {
    color: #000
}

    .header--search-open #nav-toggle.button:hover span::after, .header--search-open #nav-toggle.button:hover::after, .header--nav-open #nav-toggle.button:hover span::after, .header--nav-open #nav-toggle.button:hover::after {
        background-color: #000
    }

.header--search-open + main {
    margin-top: 19.6rem
}

@media (min-width: 992px) and (max-width: 1219.98px) {
    .header--search-open + main {
        margin-top: 19.9rem
    }
}

@media (min-width: 1220px) {
    .header--search-open + main {
        margin-top: 28rem
    }
}

@media (min-width: 1220px) {
    .header--search-open .button--donate {
        background-color: #000;
        color: #fff
    }
}

@media (max-width: 1219.98px) {
    .header--search-open #open-search {
        color: #fff
    }

        .header--search-open #open-search span::after, .header--search-open #open-search::after {
            background-color: #fff
        }
}

@media (min-width: 1220px) {
    .header--nav-items-active .button--donate {
        background-color: #000 !important;
        color: #fff
    }
}

@media (min-width: 1220px) {
    .header--nav-items-active .header__eyebrow {
        border-bottom-color: #D93F00
    }
}

@media (min-width: 1220px) {
    .header--nav-items-active .header__nav {
        background-color: #D93F00
    }
}

@media (min-width: 1220px) {
    .header--nav-items-active .header__nav .nav__item2 > button.button, .header--nav-items-active .header__nav .nav__item2 > a.button {
        color: #fff
    }

        .header--nav-items-active .header__nav .nav__item2 > button.button span::after, .header--nav-items-active .header__nav .nav__item2 > button.button::after, .header--nav-items-active .header__nav .nav__item2 > a.button span::after, .header--nav-items-active .header__nav .nav__item2 > a.button::after {
            background-color: #fff
        }
}

.header--nav-items-active #logo-wrapper-desktop a {
    background-image: url(https://www.turn2us.org.uk/assets/img/logo-pink.svg)
}

.accordionRow .wysiwyg {
    margin-bottom: 2rem
}

.accordion h3, .accordion .h3 {
    margin-bottom: 0
}

    .accordion h3:first-child, .accordion .h3:first-child {
        border-top: 2px solid #000
    }

    .accordion h3:not(:first-child), .accordion .h3:not(:first-child) {
        border-top: 2px solid rgba(0,0,0,0.1)
    }

.accordion__trigger {
    appearance: none;
    border: none;
    background-color: transparent;
    width: 100%;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    text-align: left
}

    .accordion__trigger.round span {
        border-color: #FADADE;
        background-color: #FADADE
    }

    .accordion__trigger[aria-expanded="true"] span::after {
        transform: rotate(180deg)
    }

@media (hover: hover) {
    .accordion__trigger:hover, .accordion__trigger:focus-visible {
        outline: none;
        background-color: #FADADE;
        text-decoration: underline
    }

        .accordion__trigger:hover span::after, .accordion__trigger:hover::after, .accordion__trigger:focus-visible span::after, .accordion__trigger:focus-visible::after {
            background-color: #FADADE
        }

        .accordion__trigger:hover.round span, .accordion__trigger:focus-visible.round span {
            border-color: #000;
            background-color: #000
        }
}

.accordion__panel {
    padding: 1.5rem 2rem 0
}

@media (min-width: 992px) {
    .accordion__panel {
        padding: 1.5rem 10rem 0 2rem
    }
}

.breadcrumb {
    padding-top: 2rem
}

.breadcrumb--hide {
    display: none
}

.breadcrumb ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap
}

    .breadcrumb ol li {
        display: flex;
        white-space: nowrap;
        margin-top: 0.5rem
    }

        .breadcrumb ol li > * {
            font-family: "GeneralSans","Arial",sans-serif;
            font-weight: 500;
            font-size: 1.6rem;
            line-height: 120% !important
        }

        .breadcrumb ol li a {
            color: #000;
            transition: all 0.3s ease;
            font-weight: 500;
            line-height: 120% !important
        }

            .breadcrumb ol li a:hover, .breadcrumb ol li a:focus-visible {
                outline: none;
                color: #D93F00
            }

        .breadcrumb ol li:not(:first-child)::before {
            content: ">";
            font-family: "GeneralSans","Arial",sans-serif;
            font-weight: 500;
            font-size: 1.6rem;
            line-height: 120%;
            margin-inline: 1rem
        }

@media (max-width: 991.98px) {
    .breadcrumb ol li:not(:nth-last-child(2)) {
        display: none
    }
}

@media (max-width: 991.98px) {
    .breadcrumb ol li:nth-last-child(2)::before {
        content: "<";
        margin-left: 0;
        margin-right: 1rem;
        font-family: "GeneralSans","Arial",sans-serif;
        font-weight: 500;
        font-size: 1.6rem;
        line-height: 120%
    }
}

#CybotCookiebotDialog a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button) {
    position: unset;
    padding: 0
}

    #CybotCookiebotDialog a[href^="http"]:not([href*="turn2us"]):not([href*="Turn2us"]):not(.has-icon):not(.button)::after {
        content: none
    }

#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
    background-color: #000 !important
}

    #CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:hover {
        opacity: 1;
        background-color: #000 !important;
        border-color: #000;
        color: #fff
    }

#CybotCookiebotDialog .CybotCookiebotDialogDetailBodyContentCookieContainerButton.CybotCookiebotDialogCollapsed:hover span.CybotCookiebotDialogDetailBulkConsentCount, #CybotCookiebotDialog .CybotExpandLink:hover span.CybotCookiebotDialogDetailBulkConsentCount {
    color: #fff
}

.ctaPanel {
    padding: 4rem 2.5rem;
    position: relative
}

.ctaPanel__content {
    max-width: 56rem
}

    .ctaPanel__content .wysiwyg {
        margin-bottom: 2rem
    }

.ctaPanel .button {
    margin-bottom: 0
}

.col-12:not([class*="-8"]) .ctaPanel {
    padding: 0
}

.col-12:not([class*="-8"]) .ctaPanel__content {
    max-width: 88rem
}

[class*="-8"] .ctaPanel:not([class*='bg--']) {
    padding: 0
}

.downloadRow__intro {
    border-bottom: 2px solid #000
}

    .downloadRow__intro .wysiwyg {
        margin-bottom: 2rem
    }

.downloadRow__list {
    list-style: none;
    padding: 0;
    margin: 0
}

    .downloadRow__list li {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        transition: all 0.3s ease
    }

        .downloadRow__list li:not(:first-child) {
            border-top: 2px solid rgba(0,0,0,0.1)
        }

        .downloadRow__list li a {
            width: 100%;
            justify-content: flex-end
        }

            .downloadRow__list li a.button {
                color: #000;
                text-decoration: underline
            }

                .downloadRow__list li a.button span {
                    border-color: #000;
                    background-color: #FADADE
                }

                    .downloadRow__list li a.button span span::after, .downloadRow__list li a.button span::after {
                        background-color: #000
                    }

                .downloadRow__list li a.button:hover, .downloadRow__list li a.button:focus-visible {
                    background-color: #FADADE !important
                }

                    .downloadRow__list li a.button:hover span, .downloadRow__list li a.button:focus-visible span {
                        border-color: #000;
                        background-color: #000
                    }

                        .downloadRow__list li a.button:hover span span::after, .downloadRow__list li a.button:hover span::after, .downloadRow__list li a.button:focus-visible span span::after, .downloadRow__list li a.button:focus-visible span::after {
                            background-color: #FADADE
                        }

                .downloadRow__list li a.button:focus-visible {
                    outline: 2px solid #000
                }

            .downloadRow__list li a.button {
                margin-bottom: 0;
                padding: 2rem 2rem 2rem 0;
                line-height: 120% !important
            }

@media (min-width: 768px) {
    .downloadRow__list li a.button {
        padding: 2rem
    }
}

.downloadRow__list li a.button span {
    width: 3.5rem;
    height: 3.5rem;
    border-color: #FADADE;
    background-color: #FADADE;
    flex-shrink: 0
}

    .downloadRow__list li a.button span span::after, .downloadRow__list li a.button span::after {
        width: 1.7rem;
        height: 1.7rem
    }

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .downloadRow__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .downloadRow__list li {
        width: calc(50% - 1.5rem)
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .downloadRow__list li:nth-child(2) {
        border-top: none
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .downloadRow__list li:only-child {
        width: 100%
    }
}

.embedCode > iframe, .embeddedCode > iframe {
    width: 100% !important;
    margin-inline: auto !important;
    height: auto !important;
    aspect-ratio: 16/9
}

.embedCode > *:not(iframe), .embeddedCode > *:not(iframe) {
    width: 100% !important;
    margin-inline: auto !important;
    height: auto !important
}

.embedCode > *:not(:last-child), .embeddedCode > *:not(:last-child) {
    margin-bottom: 2rem !important
}

@media (min-width: 992px) {
    .embedCode > *:not(:last-child), .embeddedCode > *:not(:last-child) {
        margin-bottom: 3rem !important
    }
}

@media (min-width: 992px) {
    .featuredPromos > h2, .featuredPromos > .h2 {
        max-width: 75%
    }
}

.featuredPromos .wysiwyg {
    margin-bottom: 2rem
}

@media (min-width: 992px) {
    .featuredPromos .wysiwyg {
        max-width: 75%
    }
}

.featuredPromos .button {
    margin-bottom: 0
}

.formRow__intro {
    display: flex;
    flex-direction: column
}

.formRow__requiredLabel p {
    margin-bottom: 0
}

@media (min-width: 992px) {
    .formRow__requiredLabel {
        align-self: flex-end;
        margin-left: auto
    }
}

.formRow__privacyStatement {
    margin-top: 4rem
}

@media (min-width: 992px) {
    .formRow__privacyStatement {
        margin-top: 6rem
    }
}

.heroRow {
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media (min-width: 768px) {
    .heroRow {
        min-height: 25rem
    }
}

.heroRow:not(.heroRow--home) {
    padding-block: 4rem
}

@media (min-width: 768px) {
    .heroRow:not(.heroRow--home) {
        padding-block: 3rem
    }
}

.heroRow:not([class*='bg--']) {
    border-block: 2px solid #E74300
}

@media (min-width: 768px) {
    .heroRow:not([class*='--home']):not([class*='--job']):not([class*='--search']) .row.g-md-0 {
        --bs-gutter-x: 3rem
    }
}

@media (min-width: 768px) {
    .heroRow:not([class*='--home']):not([class*='--job']):not([class*='--search']) .heroRow__content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center
    }
}

@media (max-width: 767.98px) {
    .heroRow:not([class*='--home']):not([class*='--job']):not([class*='--search']) .col-12 + .col-12 {
        padding-inline: 0;
        margin-bottom: -4rem;
        margin-top: 4rem
    }
}

.heroRow:not([class*='--home']):not([class*='--job']):not([class*='--search']) picture, .heroRow:not([class*='--home']):not([class*='--job']):not([class*='--search']) img {
    height: 100%
}

.heroRow:not([class*='--home']):not([class*='--job']):not([class*='--search']) img {
    width: 100%;
    object-fit: cover
}

.heroRow:not([class*='--home']):not([class*='--search']) .button {
    margin: 2rem 0 0 0
}

@media (min-width: 768px) {
    .heroRow:not([class*='--home']):not([class*='--search']) .button {
        margin: 3rem 0 0 0
    }
}

.heroRow .wysiwyg > *:last-child {
    margin-bottom: 0
}

.heroRow .heroRow__tags ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

@media (min-width: 768px) {
    .heroRow .heroRow__tags ul {
        margin-top: 3rem
    }
}

.heroRow .heroRow__tags ul li {
    margin-bottom: 0;
    white-space: nowrap
}

    .heroRow .heroRow__tags ul li:not(:last-of-type) {
        margin-right: 2.5rem
    }

    .heroRow .heroRow__tags ul li a:hover, .heroRow .heroRow__tags ul li a:focus-visible {
        outline: none;
        color: #D93F00
    }

.heroRow .heroRow__details {
    margin-top: 2rem
}

    .heroRow .heroRow__details dl {
        margin: 0
    }

        .heroRow .heroRow__details dl > div {
            margin-bottom: 1rem;
            display: flex
        }

@media (min-width: 768px) {
    .heroRow .heroRow__details dl > div {
        margin-bottom: 1.5rem
    }
}

.heroRow .heroRow__details dl > div:last-of-type {
    margin-bottom: 0
}

.heroRow .heroRow__details dl > div dt, .heroRow .heroRow__details dl > div dd {
    margin-bottom: 0
}

.heroRow .heroRow__details dl > div dt {
    color: #D93F00;
    flex-shrink: 0;
    margin-right: 0.5rem
}

.heroRow--home .heroRow__text {
    padding: 4rem 2.5rem
}

@media (min-width: 768px) {
    .heroRow--home .heroRow__text {
        margin-bottom: 4rem;
        padding: 4rem 0 0 2.5rem
    }
}

@media (min-width: 992px) {
    .heroRow--home .heroRow__text {
        padding: 8rem 0 0 2.5rem
    }
}

@media (min-width: 1120px) {
    .heroRow--home .heroRow__text {
        margin-left: calc((100vw - 1110px) / 2)
    }
}

@media (min-width: 768px) {
    .heroRow--home .heroRow__text--mobile {
        display: none
    }
}

.heroRow--home .heroRow__text--desktop {
    display: none
}

@media (min-width: 768px) {
    .heroRow--home .heroRow__text--desktop {
        display: block
    }
}

.heroRow--home .heroRow__ctas {
    padding: 4rem 2.5rem
}

@media (min-width: 768px) {
    .heroRow--home .heroRow__ctas {
        padding: 0 0 4rem 2.5rem
    }
}

@media (min-width: 992px) {
    .heroRow--home .heroRow__ctas {
        padding: 0 0 8rem 2.5rem;
        display: flex;
        justify-content: space-between
    }
}

@media (min-width: 1120px) {
    .heroRow--home .heroRow__ctas {
        margin-left: calc((100vw - 1110px) / 2)
    }
}

.heroRow--home .heroRow__cta {
    border: 2px solid #000
}

    .heroRow--home .heroRow__cta:first-of-type {
        margin-bottom: 2rem
    }

@media (min-width: 992px) {
    .heroRow--home .heroRow__cta:first-of-type {
        margin-bottom: 0
    }
}

@media (min-width: 992px) {
    .heroRow--home .heroRow__cta {
        height: auto;
        width: 48%
    }
}

.heroRow--home .heroRow__cta .button {
    margin: 0;
    background-color: #fff;
    width: 100%;
    padding: 1.5rem 2rem;
    justify-content: start
}

    .heroRow--home .heroRow__cta .button:hover, .heroRow--home .heroRow__cta .button:focus-visible {
        outline: none;
        background-color: #fff !important
    }

.heroRow--home .heroRow__cta p {
    margin-bottom: 0;
    padding: 1.5rem 2rem
}

.heroRow--home .heroRow__content {
    width: 100%
}

@media (min-width: 768px) {
    .heroRow--home .heroRow__content {
        display: flex;
        flex-direction: row-reverse
    }
}

@media (min-width: 768px) {
    .heroRow--home .heroRow__content-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-right: 3rem
    }
}

@media (min-width: 992px) {
    .heroRow--home .heroRow__content-left {
        margin-right: 8rem
    }
}

.heroRow--home picture {
    max-width: unset;
    width: 100%
}

@media (min-width: 768px) {
    .heroRow--home picture {
        flex-grow: 1;
        flex-shrink: 0;
        width: 38%
    }
}

.heroRow--home img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center
}

.heroRow--job .heroRow__tag {
    background-color: #F2F2F2;
    padding: 1rem 1.5rem;
    width: fit-content
}

    .heroRow--job .heroRow__tag p {
        text-transform: uppercase;
        margin: 0
    }

.heroRow--job .button {
    margin-bottom: 0
}

@media (min-width: 768px) {
    .heroRow--job .button {
        margin-top: 3rem
    }
}

.heroRow--search .wysiwyg {
    margin-bottom: 2rem
}

@media (min-width: 768px) {
    .heroRow--search .wysiwyg {
        margin-bottom: 3
    }
}

.heroRow--search .form-group {
    position: relative
}

@media (min-width: 768px) {
    .heroRow--search .form-group {
        display: flex
    }
}

.heroRow--search input[type="search"] {
    all: unset;
    border: 1px solid #000;
    font-size: 1.6rem;
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box
}

    .heroRow--search input[type="search"]:focus-visible, .heroRow--search input[type="search"]:focus, .heroRow--search input[type="search"]:active {
        border-radius: 0;
        border-color: transparent;
        outline: 1px solid #E74300
    }

        .heroRow--search input[type="search"]:focus-visible + input[type="reset"], .heroRow--search input[type="search"]:focus + input[type="reset"], .heroRow--search input[type="search"]:active + input[type="reset"] {
            border-color: #fff;
            outline: 1px solid #E74300
        }

.heroRow--search input[type='search' i]::-webkit-search-cancel-button {
    appearance: none
}

.heroRow--search .button[type="submit"] {
    margin-bottom: 0;
    margin-top: 1rem
}

@media (min-width: 768px) {
    .heroRow--search .button[type="submit"] {
        margin-top: 0;
        margin-left: 1rem
    }
}

.heroRow--search input[type="reset"] {
    all: unset;
    display: none;
    cursor: pointer;
    font-size: 1.6rem;
    padding: 1.5rem 1rem;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #000 #000 #000 #fff;
    border-image: initial;
    position: absolute;
    right: 0;
    top: 0
}

    .heroRow--search input[type="reset"]:focus-visible {
        outline: 2px solid #D93F00
    }

@media (min-width: 768px) {
    .heroRow--search input[type="reset"] {
        right: 12.5rem
    }
}

@media (min-width: 992px) {
    .heroRow--search input[type="reset"] {
        position: unset;
        border-left: none;
        margin-left: -0.3rem
    }
}

.heroRow--search a.close {
    margin: 2rem 0 0 0
}

.iconList {
    border: 2px solid #000
}

.iconList__intro {
    padding: 2rem 2.5rem;
    border-bottom: 2px solid #000
}

@media (min-width: 992px) {
    .iconList__intro {
        padding: 3rem
    }
}

.iconList__intro .wysiwyg p:last-of-type {
    margin-bottom: 0
}

.iconList__list {
    list-style: none;
    padding: 0;
    margin: 0
}

    .iconList__list li {
        margin: 0;
        padding: 2rem 2.5rem;
        display: flex;
        align-items: center
    }

@media (min-width: 992px) {
    .iconList__list li {
        padding: 2rem 3rem
    }
}

.iconList__list li:not(:last-of-type) {
    border-bottom: 2px solid rgba(0,0,0,0.1)
}

.iconList__list li p {
    margin: 0
}

.iconList__list li span.round.no-text {
    margin-right: 2rem;
    width: 5rem;
    height: 5rem;
    border-color: #FADADE;
    background-color: #FADADE;
    flex-shrink: 0
}

    .iconList__list li span.round.no-text span::after, .iconList__list li span.round.no-text::after {
        width: 3.2rem;
        height: 3.2rem
    }

@media (min-width: 992px) {
    .iconList__list li span.round.no-text {
        width: 7rem;
        height: 7rem
    }

        .iconList__list li span.round.no-text span::after, .iconList__list li span.round.no-text::after {
            width: 4.5rem;
            height: 4.5rem
        }
}

.imageGallery {
    width: 100%
}

.imageGallery__intro .wysiwyg {
    margin-bottom: 2rem
}

.imageGallery__slider {
    padding-block: 2rem
}

    .imageGallery__slider .imageGallery__slide {
        position: relative
    }

        .imageGallery__slider .imageGallery__slide figure {
            margin-bottom: 0
        }

            .imageGallery__slider .imageGallery__slide figure figcaption {
                padding: 0;
                margin-top: 1rem
            }

                .imageGallery__slider .imageGallery__slide figure figcaption p {
                    margin: 0
                }

        .imageGallery__slider .imageGallery__slide img {
            aspect-ratio: 16/9;
            object-fit: cover
        }

        .imageGallery__slider .imageGallery__slide .button.enlarge {
            margin: 0 0 2rem
        }

.imageGallery__sliderNav {
    padding-block: 2rem
}

    .imageGallery__sliderNav .imageGallery__slide-navItem {
        margin-inline: 1rem
    }

@media (min-width: 992px) {
    .imageGallery__sliderNav .imageGallery__slide-navItem {
        margin-inline: 1.5rem
    }
}

.imageGallery__sliderNav .imageGallery__slide-navItem img {
    margin: 0 auto;
    max-width: unset;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

.imageGallery__modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

    .imageGallery__modal .close-imgModal {
        margin: 0 0 0 auto;
        position: absolute;
        right: 0;
        top: 0
    }

.imageGallery .slick-dots {
    margin: 3rem 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (min-width: 992px) {
    .imageGallery .slick-dots {
        margin: 4rem 0 0 0
    }
}

.imageGallery .slick-dots li {
    height: 1.2rem;
    width: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    flex-shrink: 1;
    background-color: #ECEEEF;
    transition: all 0.3s ease
}

    .imageGallery .slick-dots li:not(:last-of-type) {
        margin-right: 2rem
    }

@media (min-width: 992px) {
    .imageGallery .slick-dots li:not(:last-of-type) {
        margin-right: 3rem
    }
}

.imageGallery .slick-dots li button {
    text-indent: -99999px;
    height: 1.2rem;
    width: 1.2rem;
    outline: none;
    border: none;
    border-radius: 50%
}

    .imageGallery .slick-dots li button:focus:not(:focus-visible) {
        outline: none
    }

    .imageGallery .slick-dots li button:focus-visible {
        background-color: #D93F00
    }

.imageGallery .slick-dots :is(.slick-active) :is(li,button) {
    background-color: #828282
}

.imageGallery .slick-arrow {
    position: absolute;
    bottom: -0.9rem;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-radius: 50%;
    background-color: #FADADE;
    width: 3rem;
    height: 3rem;
    font-size: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

    .imageGallery .slick-arrow::after {
        content: '';
        display: inline-block;
        width: 1rem;
        height: 1.4rem;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        -webkit-mask-position: center;
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
        background-color: #000;
        transition: all 0.3s ease;
        flex-shrink: 0
    }

    .imageGallery .slick-arrow:hover, .imageGallery .slick-arrow:focus-visible {
        outline: none;
        background-color: #000
    }

        .imageGallery .slick-arrow:hover::after, .imageGallery .slick-arrow:focus-visible::after {
            background-color: #FADADE
        }

.imageGallery .slick-prev {
    left: 0
}

    .imageGallery .slick-prev::after {
        margin-right: 0.4rem;
        -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M9 1L2 7.49645L9 14%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
        mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M9 1L2 7.49645L9 14%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center
    }

.imageGallery .slick-next {
    right: 0
}

    .imageGallery .slick-next::after {
        margin-left: 0.4rem;
        -webkit-mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0.999999 14L8 7.50355L0.999998 1%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center;
        mask: url("data:image/svg+xml, %3csvg viewBox=%270 0 10 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M0.999999 14L8 7.50355L0.999998 1%27 stroke=%27black%27 stroke-width=%272%27 stroke-miterlimit=%2710%27/%3e%3c/svg%3e") no-repeat center
    }

@media (min-width: 768px) {
    [class*="-8"] .imageGallery__intro .container {
        padding: 0
    }
}

@media (min-width: 992px) {
    [class*="-8"] .imageGallery__slider {
        padding-block: 3rem
    }
}

@media (max-width: 991.98px) {
    [class*="-8"] .imageGallery__slide {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end
    }
}

@media (min-width: 992px) {
    [class*="-8"] .imageGallery__slide figure {
        display: flex;
        justify-content: space-between
    }
}

@media (min-width: 992px) {
    [class*="-8"] .imageGallery__slide figure figcaption {
        margin-top: 0
    }
}

@media (min-width: 992px) {
    [class*="-8"] .imageGallery__slide picture {
        width: 60%;
        flex-shrink: 0;
        margin-right: 3rem
    }
}

@media (max-width: 991.98px) {
    [class*="-8"] .imageGallery__slide .button.enlarge {
        border: none;
        padding: 0;
        text-decoration: underline
    }
}

@media (min-width: 992px) {
    [class*="-8"] .imageGallery__slide .button.enlarge {
        position: absolute;
        left: calc(60% + 3rem);
        bottom: 0;
        margin: 0
    }
}

@media (max-width: 991.98px) {
    [class*="-8"] .imageGallery__slide .button.enlarge:hover {
        background-color: transparent
    }
}

@media (min-width: 992px) {
    [class*="-8"] .imageGallery__sliderNav {
        padding-block: 3rem
    }
}

@media (min-width: 992px) {
    [class*="-8"] .imageGallery__slider-nav {
        margin-inline: -1.5rem
    }
}

@media (min-width: 768px) {
    [class*="-8"] .imageGallery .slick-next {
        bottom: 55%;
        right: -4.5rem
    }
}

@media (min-width: 768px) {
    [class*="-8"] .imageGallery .slick-prev {
        bottom: 55%;
        left: -4.5rem
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .imageGallery__slider {
        padding-block: 3rem
    }
}

@media (max-width: 767.98px) {
    .col-12:not([class*="-8"]) .imageGallery__slide {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .imageGallery__slide figure {
        display: flex;
        justify-content: space-between
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .imageGallery__slide figure figcaption {
        margin-top: 0
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .imageGallery__slide picture {
        width: 60%;
        flex-shrink: 0;
        margin-right: 3rem
    }
}

@media (max-width: 767.98px) {
    .col-12:not([class*="-8"]) .imageGallery__slide .button.enlarge {
        border: none;
        padding: 0;
        text-decoration: underline
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .imageGallery__slide .button.enlarge {
        position: absolute;
        left: calc(60% + 3rem);
        bottom: 0;
        margin: 0
    }
}

@media (max-width: 767.98px) {
    .col-12:not([class*="-8"]) .imageGallery__slide .button.enlarge:hover {
        background-color: transparent
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .imageGallery__sliderNav {
        padding-block: 3rem
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .imageGallery__slider-nav {
        margin-inline: -1.5rem
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .imageGallery .slick-next {
        right: 1.5rem
    }
}

@media (min-width: 1220px) {
    .col-12:not([class*="-8"]) .imageGallery .slick-next {
        bottom: 55%;
        right: -4.5rem
    }
}

@media (min-width: 768px) {
    .col-12:not([class*="-8"]) .imageGallery .slick-prev {
        left: 1.5rem
    }
}

@media (min-width: 1220px) {
    .col-12:not([class*="-8"]) .imageGallery .slick-prev {
        bottom: 55%;
        left: -4.5rem
    }
}

@media (min-width: 1220px) {
    .imageRow {
        width: 100%
    }
}

.imageRow picture {
    max-width: unset;
    flex-grow: 1
}

@media (min-width: 768px) {
    .imageRow picture {
        width: 50%
    }
}

@media (min-width: 1220px) {
    .imageRow picture {
        width: 60%
    }
}

.imageRow img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center
}

.imageRow__content-wrapper {
    padding: 2.5rem
}

@media (min-width: 768px) {
    .imageRow__content-wrapper {
        padding: 6rem 2.5rem 6rem 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 50%
    }
}

@media (min-width: 1220px) {
    .imageRow__content-wrapper {
        margin-right: calc((100% - 1110px) / 2);
        padding: 6rem 2.5rem 6rem 9rem
    }
}

@media (min-width: 768px) {
    .imageRow {
        display: flex
    }
}

@media (min-width: 768px) {
    .imageRow--right {
        flex-direction: row-reverse
    }
}

@media (min-width: 768px) {
    .imageRow--right .imageRow__content-wrapper {
        padding: 6rem 4rem 6rem 2.5rem
    }
}

@media (min-width: 1220px) {
    .imageRow--right .imageRow__content-wrapper {
        margin-right: 0;
        margin-left: calc((100% - 1110px) / 2);
        padding: 6rem 9rem 6rem 2.5rem
    }
}

.inPageNavigation + section:not([class*='bg--']):not([class*=border--]) {
    padding-top: 0
}

.inPageNavigation nav {
    padding: 1.5rem
}

@media (min-width: 768px) {
    .inPageNavigation nav {
        padding: 3rem 0 0 0
    }
}

.inPageNavigation ul {
    list-style: none;
    padding: 0;
    margin: 0
}

@media (min-width: 768px) {
    .inPageNavigation ul {
        display: flex;
        flex-wrap: wrap
    }
}

.inPageNavigation ul li:not(:last-of-type) {
    margin-bottom: 2rem
}

@media (min-width: 768px) {
    .inPageNavigation ul li:not(:last-of-type) {
        margin-right: 5rem;
        margin-bottom: 3rem
    }
}

@media (min-width: 768px) {
    .inPageNavigation ul li {
        margin-bottom: 3rem
    }
}

.inPageNavigation ul li a.button {
    margin: 0;
    white-space: nowrap;
    justify-content: space-between;
    width: 100%
}

    .inPageNavigation ul li a.button:hover, .inPageNavigation ul li a.button:focus-visible {
        outline: none;
        color: #000
    }

        .inPageNavigation ul li a.button:hover span, .inPageNavigation ul li a.button:focus-visible span {
            border-color: #000;
            background-color: #000
        }

            .inPageNavigation ul li a.button:hover span span::after, .inPageNavigation ul li a.button:hover span::after, .inPageNavigation ul li a.button:focus-visible span span::after, .inPageNavigation ul li a.button:focus-visible span::after {
                background-color: #FADADE
            }

@media (max-width: 767.98px) {
    .inPageNavigation ul li a.button {
        text-decoration: underline
    }
}

.inPageNavigation ul li a.button span {
    border-color: #FADADE;
    background-color: #FADADE
}

.keyStatistics__intro {
    margin-bottom: 4rem
}

@media (min-width: 768px) {
    .keyStatistics__intro {
        max-width: 67%
    }
}

@media (min-width: 768px) {
    .keyStatistics__items {
        display: flex
    }
}

.keyStatistics__item {
    display: flex;
    margin-bottom: 2rem
}

@media (min-width: 768px) {
    .keyStatistics__item {
        flex-direction: column;
        width: calc(25% - 3rem);
        height: 100%
    }
}

@media (min-width: 768px) {
    .keyStatistics__item:not(:last-of-type) {
        margin-right: 3rem
    }
}

.keyStatistics__item .h2--stats {
    margin-bottom: 1.5rem
}

@media (min-width: 768px) {
    .keyStatistics__item .h2--stats {
        margin-bottom: 1rem
    }
}

@media (min-width: 768px) {
    .keyStatistics__item-content {
        display: flex;
        flex-direction: column
    }
}

@media (min-width: 768px) {
    .keyStatistics__item-content-top {
        height: 23rem
    }
}

@media (min-width: 992px) {
    .keyStatistics__item-content-top {
        height: 21rem
    }
}

.keyStatistics__item-content p:last-of-type {
    margin-bottom: 0
}

.keyStatistics__item-quote {
    display: block;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #F29CA7
}

@media (min-width: 768px) {
    .keyStatistics__item-quote {
        margin-top: auto
    }
}

.keyStatistics__item span.round.no-text {
    margin-right: 2.2rem;
    width: 7.5rem;
    height: 7.5rem;
    border-color: #FADADE;
    background-color: #FADADE;
    flex-shrink: 0
}

    .keyStatistics__item span.round.no-text span::after, .keyStatistics__item span.round.no-text::after {
        width: 3.2rem;
        height: 3.2rem
    }

@media (min-width: 768px) {
    .keyStatistics__item span.round.no-text {
        margin-bottom: 1rem;
        width: 11rem;
        height: 11rem
    }

        .keyStatistics__item span.round.no-text span::after, .keyStatistics__item span.round.no-text::after {
            width: 5.6rem;
            height: 5.6rem
        }
}

.keyStatistics .button {
    margin-bottom: 0
}

@media (max-width: 991.98px) {
    .pageUseful {
        margin-inline: calc(var(--bs-gutter-x) * -0.5)
    }
}

.pageUseful button {
    margin-bottom: 0
}

.pageUseful__header {
    margin-bottom: 2rem;
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

@media (min-width: 992px) {
    .pageUseful__header {
        padding: 3rem 6rem;
        flex-direction: row;
        justify-content: space-between
    }
}

@media (min-width: 1220px) {
    .pageUseful__header {
        padding: 3rem 9rem
    }
}

.pageUseful__header h2, .pageUseful__header .h2 {
    margin-bottom: 0
}

@media (max-width: 991.98px) {
    .pageUseful__header h2, .pageUseful__header .h2 {
        font-size: 1.8rem
    }
}

@media (min-width: 992px) {
    .pageUseful__header h2, .pageUseful__header .h2 {
        margin-right: 3rem
    }
}

.pageUseful__header #yes {
    margin-right: 2rem
}

.pageUseful__header #toggle-form {
    text-decoration: underline
}

    .pageUseful__header #toggle-form span::after, .pageUseful__header #toggle-form::after {
        width: 1.7rem;
        height: 1.7rem
    }

    .pageUseful__header #toggle-form:hover span::after, .pageUseful__header #toggle-form:hover::after {
        background-color: #D93F00
    }

@media (min-width: 992px) {
    .pageUseful__header #toggle-form {
        justify-self: end;
        margin-left: auto
    }
}

.pageUseful__header #toggle-form.pageUseful__form-open::after {
    transform: rotate(90deg)
}

.pageUseful__quickReply {
    margin-block: 2rem
}

.pageUseful__form-wrapper {
    display: none;
    padding: 4rem 2.5rem;
    position: relative
}

@media (min-width: 992px) {
    .pageUseful__form-wrapper {
        padding: 4rem 6rem
    }
}

@media (min-width: 1220px) {
    .pageUseful__form-wrapper {
        padding: 4rem 9rem
    }
}

.pageUseful__form-wrapper::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: calc(50% - 2rem);
    width: 0;
    height: 0;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-bottom: 2rem solid #F2F2F2
}

@media (min-width: 992px) {
    .pageUseful__form-wrapper-header {
        display: flex;
        align-items: baseline;
        justify-content: space-between
    }
}

.pageUseful__form-wrapper #close-form {
    position: absolute;
    right: 2.5rem;
    bottom: 5.5rem
}

    .pageUseful__form-wrapper #close-form span::after, .pageUseful__form-wrapper #close-form::after {
        width: 1.4rem;
        height: 1.4rem
    }

    .pageUseful__form-wrapper #close-form:hover span::after, .pageUseful__form-wrapper #close-form:hover::after {
        background-color: #D93F00
    }

@media (min-width: 992px) {
    .pageUseful__form-wrapper #close-form {
        right: 6rem
    }
}

@media (min-width: 1220px) {
    .pageUseful__form-wrapper #close-form {
        right: 9rem
    }
}

@media (min-width: 992px) {
    .pageUseful__form-requiredLabel {
        position: absolute;
        right: 6rem;
        top: 5rem
    }
}

@media (min-width: 1220px) {
    .pageUseful__form-requiredLabel {
        right: 9rem
    }
}

.pageUseful__thankYou {
    display: none
}

    .pageUseful__thankYou[style="display: block;"] + #close-form {
        bottom: unset;
        top: 4rem
    }

.pageUseful .formwidget-submit-text {
    display: none
}

.promoPanel {
    position: relative
}

    .promoPanel picture {
        max-width: unset;
        flex-grow: 1
    }

    .promoPanel img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: center
    }

.promoPanel__content {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    background: #fff
}

@media (min-width: 768px) {
    .promoPanel__content {
        max-width: 70%;
        padding: 6rem
    }
}

.promoPanel__content .wysiwyg {
    margin-bottom: 2rem
}

.promoPanel .button {
    margin-bottom: 0;
    margin-top: auto
}

@media (min-width: 768px) {
    .promoPanel {
        display: flex
    }
}

.quickLinks .wysiwyg {
    margin-bottom: 2rem
}

.quickLinks .col-12:last-of-type .accordion + .button {
    margin-bottom: 0
}

.quickLinks .accordion {
    background-color: #FADADE
}

    .quickLinks .accordion h3, .quickLinks .accordion .h3 {
        border: none;
        margin-bottom: 0
    }

@media (min-width: 992px) {
    .quickLinks .accordion h3, .quickLinks .accordion .h3 {
        padding: 3rem 3rem 0
    }
}

.quickLinks .accordion__trigger {
    background-color: #FADADE
}

    .quickLinks .accordion__trigger.round span {
        border-color: #000
    }

    .quickLinks .accordion__trigger.round:hover span::after, .quickLinks .accordion__trigger.round:hover::after {
        background-color: #000
    }

    .quickLinks .accordion__trigger.round:hover span {
        background-color: #FADADE
    }

.quickLinks .accordion__panel {
    padding: 1.5rem 1.5rem 2.5rem 1.5rem
}

@media (min-width: 992px) {
    .quickLinks .accordion__panel {
        display: block !important;
        padding: 2rem 3rem 3rem
    }
}

.quickLinks .accordion__panel ul {
    margin-bottom: 0;
    padding-left: 3rem
}

    .quickLinks .accordion__panel ul li a:hover, .quickLinks .accordion__panel ul li a:focus-visible {
        outline: none;
        color: #000;
        font-weight: 500
    }

.quoteRow {
    padding: 2rem 2.5rem
}

@media (min-width: 992px) {
    .quoteRow {
        padding: 3rem
    }
}

@media (min-width: 992px) {
    .quoteRow__content {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between
    }
}

.quoteRow__content span.round {
    margin-bottom: 2rem;
    width: 5.5rem;
    height: 5.5rem;
    border-color: #fff;
    background-color: #fff
}

    .quoteRow__content span.round span::after, .quoteRow__content span.round::after {
        width: 2.8rem;
        height: 2.3rem
    }

@media (min-width: 992px) {
    .quoteRow__content span.round {
        margin: 0 0 0 4rem;
        flex-shrink: 0;
        width: 9.3rem;
        height: 9.3rem
    }

        .quoteRow__content span.round span::after, .quoteRow__content span.round::after {
            width: 5.2rem;
            height: 3.9rem
        }
}

@media (min-width: 768px) {
    .quoteRow blockquote p {
        font-size: 2rem
    }
}

.quoteRow figure {
    margin-bottom: 0
}

    .quoteRow figure figcaption {
        padding: 0
    }

@media (min-width: 768px) {
    .quoteRow figure figcaption {
        font-size: 2rem
    }
}

@media (min-width: 992px) {
    section.split .quoteRow {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        padding-right: calc(var(--bs-gutter-x) * .5);
        height: 100%;
        max-width: calc(100% - ((100% - 1110px) / 2))
    }
}

section.split .quoteRow picture {
    max-width: unset;
    flex-grow: 1
}

section.split .quoteRow img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center
}

@media (max-width: 991.98px) {
    section.split .quoteRow img {
        max-height: 35rem
    }
}

section.split .quoteRow .quoteRow__content {
    padding: 4rem 2.5rem 2rem 2.5rem;
    position: relative
}

@media (min-width: 992px) {
    section.split .quoteRow .quoteRow__content {
        padding: 6rem 0 6rem 2.5rem;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: unset
    }
}

@media (min-width: 992px) {
    section.split .quoteRow .quoteRow__content {
        width: 60%
    }
}

section.split .quoteRow .quoteRow__content span.round {
    position: absolute;
    left: calc(50% - 2.75rem);
    top: -2.7rem;
    z-index: 1
}

@media (min-width: 992px) {
    section.split .quoteRow .quoteRow__content span.round {
        position: unset;
        top: 0;
        margin: 0 -6rem 0 3rem;
        align-self: start
    }
}

section:not([class*='bg--']) .quoteRow:not([class*='bg--']) .quoteRow__content span.round {
    background-color: #FADADE;
    border-color: #FADADE
}

.col-12:not([class*="-8"]) .quoteRow {
    padding: 0
}

@media (min-width: 992px) {
    .col-12:not([class*="-8"]) .quoteRow__content blockquote p {
        font-size: 2.8rem
    }
}

@media (min-width: 992px) {
    .col-12:not([class*="-8"]) .quoteRow__content span.round {
        margin: 5rem 0 0 6rem;
        width: 12.2rem;
        height: 12.2rem
    }

        .col-12:not([class*="-8"]) .quoteRow__content span.round span::after, .col-12:not([class*="-8"]) .quoteRow__content span.round::after {
            width: 6.9rem;
            height: 5.2rem
        }
}

[class*="-8"] .quoteRow:not([class*='bg--']) {
    padding: 0
}

.sideMenu .accordion {
    background-color: #F2F2F2
}

    .sideMenu .accordion h2, .sideMenu .accordion .h2 {
        border: none;
        margin-bottom: 0
    }

@media (min-width: 768px) {
    .sideMenu .accordion h2, .sideMenu .accordion .h2 {
        padding: 2.5rem 2.5rem 1rem
    }
}

.sideMenu .accordion__trigger.round span {
    background-color: transparent;
    border-color: #000
}

.sideMenu .accordion__trigger:hover {
    background-color: #F2F2F2;
    text-decoration: none
}

    .sideMenu .accordion__trigger:hover.round span span::after, .sideMenu .accordion__trigger:hover.round span::after {
        background-color: #000
    }

.sideMenu .accordion__panel {
    padding: 0 2.5rem 2.5rem
}

    .sideMenu .accordion__panel ul {
        list-style: none;
        padding: 0;
        margin: 0
    }

        .sideMenu .accordion__panel ol li:not(:last-of-type), .sideMenu .accordion__panel ul li:not(:last-of-type) {
            margin-bottom: 1rem
        }

        .sideMenu .accordion__panel ol li a, .sideMenu .accordion__panel ul li a {
            line-height: 140% !important
        }

            .sideMenu .accordion__panel ol li a:hover, .sideMenu .accordion__panel ol li a:focus-visible, .sideMenu .accordion__panel ol li a.active, .sideMenu .accordion__panel ul li a:hover, .sideMenu .accordion__panel ul li a:focus-visible, .sideMenu .accordion__panel ul li a.active {
                outline: none;
                font-weight: 500;
                color: #D93F00
            }

            .sideMenu .accordion__panel ol li a.active, .sideMenu .accordion__panel ul li a.active {
                color: #D93F00
            }

@media (min-width: 768px) {
    .sideMenu .accordion__panel {
        display: block !important
    }
}

@media (min-width: 768px) {
    .situationsList {
        display: flex;
        flex-wrap: wrap
    }
}

@media (min-width: 768px) {
    .situationsList h2, .situationsList .h2 {
        width: 34%;
        padding-right: 3rem
    }
}

@media (min-width: 768px) {
    .situationsList h2 + .wysiwyg, .situationsList .h2 + .wysiwyg {
        width: 66%;
        margin: 0 auto
    }
}

@media (min-width: 768px) {
    .situationsList h2 + .accordion, .situationsList .h2 + .accordion, .situationsList h2 + .wysiwyg + .accordion--situationsList, .situationsList .h2 + .wysiwyg + .accordion--situationsList {
        width: 66%;
        margin: 0 0 0 auto
    }
}

@media (min-width: 768px) {
    .situationsList .wysiwyg, .situationsList .accordion--situationsList {
        width: 66%;
        margin: 0 auto
    }
}

.situationsList .wysiwyg {
    margin-bottom: 2rem
}

.situationsList .accordion--situationsList h3, .situationsList .accordion--situationsList .h3 {
    border-top: none;
    margin-bottom: 0
}

.situationsList .accordion--situationsList .accordion__trigger {
    border: 2px solid #000;
    padding: 1.5rem
}

@media (min-width: 768px) {
    .situationsList .accordion--situationsList .accordion__trigger {
        padding: 1.5rem 3rem
    }
}

.situationsList .accordion--situationsList .accordion__trigger:hover, .situationsList .accordion--situationsList .accordion__trigger:focus-visible {
    outline: none;
    background-color: transparent;
    border: 2px solid #E74300;
    text-decoration: none
}

.situationsList .accordion--situationsList .accordion__trigger span span::after, .situationsList .accordion--situationsList .accordion__trigger span::after {
    width: 1.3rem;
    height: 1.3rem
}

.situationsList .accordion--situationsList .accordion__panel {
    padding: 0;
    border: 2px solid #000;
    border-top: none
}

    .situationsList .accordion--situationsList .accordion__panel ul {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 45rem;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin
    }

        .situationsList .accordion--situationsList .accordion__panel ul::-webkit-scrollbar {
            margin: auto 0;
            width: 0.5rem
        }

@media (min-width: 992px) {
    .situationsList .accordion--situationsList .accordion__panel ul::-webkit-scrollbar {
        width: 1rem
    }
}

.situationsList .accordion--situationsList .accordion__panel ul::-webkit-scrollbar-thumb {
    background: #AEADAD
}

.situationsList .accordion--situationsList .accordion__panel ul::-webkit-scrollbar-track {
    background: #ECEEEF
}

.situationsList .accordion--situationsList .accordion__panel ul li:not(:last-of-type) a {
    border-bottom: 1px solid #000
}

.situationsList .accordion--situationsList .accordion__panel ul li a {
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 1.5rem
}

    .situationsList .accordion--situationsList .accordion__panel ul li a:hover, .situationsList .accordion--situationsList .accordion__panel ul li a:focus-visible {
        outline: none;
        color: #D93F00;
        text-decoration: underline;
        background-color: #fff
    }

@media (min-width: 768px) {
    .situationsList .accordion--situationsList .accordion__panel ul li a {
        padding: 1.5rem 3rem
    }
}

.situationRow {
    border-bottom: 2px solid #E74300;
    padding-bottom: 2rem
}

@media (min-width: 768px) {
    .situationRow {
        padding-bottom: 4rem
    }
}

@media (min-width: 768px) {
    .situationRow__intro {
        max-width: 60%
    }
}

.situationRow__leftPanel h3, .situationRow__leftPanel .h3, .situationRow__rightPanel h3, .situationRow__rightPanel .h3 {
    margin-bottom: 2rem
}

.situationRow__leftPanel {
    margin-bottom: 2rem
}

@media (min-width: 768px) {
    .situationRow__leftPanel {
        margin-bottom: 0;
        padding-right: 3rem
    }
}

.situationRow__rightPanel {
    margin-bottom: 2rem
}

@media (min-width: 768px) {
    .situationRow__rightPanel {
        margin-bottom: 0;
        padding-left: 3rem
    }
}

.socialShare {
    padding: 0;
    display: flex;
    align-items: center;
    color: #D93F00
}

    .socialShare h2, .socialShare .h2 {
        margin-bottom: 0;
        margin-right: 1.5rem
    }

@media (min-width: 992px) {
    .socialShare h2, .socialShare .h2 {
        margin-right: 3rem
    }
}

.socialShare ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex
}

    .socialShare ul li {
        margin-right: 1.5rem
    }

        .socialShare ul li button.round, .socialShare ul li a.round {
            width: 3.6rem;
            height: 3.6rem;
            border-color: #D93F00
        }

            .socialShare ul li button.round span::after, .socialShare ul li button.round::after, .socialShare ul li a.round span::after, .socialShare ul li a.round::after {
                width: 2rem;
                height: 2rem
            }

            .socialShare ul li button.round span::after, .socialShare ul li button.round::after, .socialShare ul li a.round span::after, .socialShare ul li a.round::after {
                background-color: #D93F00
            }

@media (min-width: 992px) {
    .socialShare ul li button.round, .socialShare ul li a.round {
        width: 4.6rem;
        height: 4.6rem
    }

        .socialShare ul li button.round span::after, .socialShare ul li button.round::after, .socialShare ul li a.round span::after, .socialShare ul li a.round::after {
            width: 2.2rem;
            height: 2.2rem
        }
}

.socialShare ul li button.round:hover, .socialShare ul li button.round:focus-visible, .socialShare ul li a.round:hover, .socialShare ul li a.round:focus-visible {
    outline: none;
    border-color: #FADADE;
    background-color: #FADADE
}

    .socialShare ul li button.round:hover span::after, .socialShare ul li button.round:hover::after, .socialShare ul li button.round:focus-visible span::after, .socialShare ul li button.round:focus-visible::after, .socialShare ul li a.round:hover span::after, .socialShare ul li a.round:hover::after, .socialShare ul li a.round:focus-visible span::after, .socialShare ul li a.round:focus-visible::after {
        background-color: #000
    }

.video__placeholder {
    position: relative
}

.video__placeholder-image img {
    object-fit: cover;
    width: 100%;
    position: absolute !important;
    height: 100%
}

.video__placeholder-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(242,156,167,0.5), rgba(242,156,167,0.5))
}

.video__placeholder-playbutton {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column
}

    .video__placeholder-playbutton:hover .button {
        background-color: #000;
        color: #FADADE;
        text-decoration: underline
    }

        .video__placeholder-playbutton:hover .button span {
            background-color: #FADADE
        }

            .video__placeholder-playbutton:hover .button span span::after, .video__placeholder-playbutton:hover .button span::after {
                background-color: #000
            }

    .video__placeholder-playbutton .button {
        margin: 0;
        border: none;
        background-color: #FADADE;
        padding: 0.5rem 1rem
    }

        .video__placeholder-playbutton .button span {
            background-color: #000
        }

            .video__placeholder-playbutton .button span span::after, .video__placeholder-playbutton .button span::after {
                background-color: #FADADE
            }

            .video__placeholder-playbutton .button span::after {
                margin-left: 0.22rem
            }

        .video__placeholder-playbutton .button:focus-visible {
            outline: none;
            background-color: #000;
            color: #FADADE;
            text-decoration: underline
        }

            .video__placeholder-playbutton .button:focus-visible span {
                background-color: #FADADE
            }

                .video__placeholder-playbutton .button:focus-visible span span::after, .video__placeholder-playbutton .button:focus-visible span::after {
                    background-color: #000
                }

.video__videoplayer {
    display: none;
    opacity: 0
}

.video iframe {
    aspect-ratio: 16/9;
    width: 100% !important;
    height: unset !important
}

.accordion--video button.accordion__trigger {
    margin-bottom: 0
}

.accordion--video [aria-expanded="false"] {
    border-bottom: 2px solid rgba(0,0,0,0.1)
}

.accordion--video .accordion__panel {
    padding: 1rem 2.5rem 2.5rem
}

    .accordion--video .accordion__panel .wysiwyg > *:last-child {
        margin-bottom: 0
    }

@media (min-width: 992px) {
    .videoRow {
        display: grid;
        grid-template: auto auto / 1fr 1fr;
        column-gap: 3rem
    }
}

.videoRow__content .wysiwyg > *:last-child {
    margin-bottom: 2rem
}

@media (min-width: 992px) {
    .videoRow .video {
        grid-row: 1 / span 2
    }
}

@media (min-width: 992px) {
    .videoRow .accordion--video .accordion__panel {
        padding: 1rem 0 0 0
    }
}

@media (min-width: 992px) {
    .videoRow--right .video {
        grid-column: 2 / span 1
    }
}

.ctaRow .ctaRowItem picture {
    max-width: unset;
    flex-grow: 1
}

.ctaRow .ctaRowItem img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center
}

.ctaRow .ctaRowItem h2, .ctaRow .ctaRowItem .h2 {
    margin-bottom: 2rem;
    font-size: 2.4rem
}

.ctaRow .ctaRowItem .button {
    margin-bottom: 0
}

.ctaRow .ctaRowItem__content-wrapper {
    padding: 2.5rem
}

.ukaf-form {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 140%;
    padding-top: 1.5rem;
}

.ukaf-form-row {
    line-height: 140%;
    padding-top: 1.5rem;
}

.errorMessage {
    font-size: 1.2em;
    color: red;
    line-height: 1.6em;
    margin-bottom: 0.2em;
}

.oddrow {
    background-color: antiquewhite;
}

ol, ul {
    list-style: none;
}

.button-link {
    background-color: #D93F00;
    border: none;
    color: #fff;
    margin-top: 1em;
    background-image: none;
    width: 200px;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    padding: 1em 1.7em;
    font-size: 1.4em;
    font-weight: 400;
}

    .button-link:hover, .button-link:focus {
        text-decoration: underline;
        color: #D93F00 !important;
        background-color: #fff;
    }

a.button-link:after {
    content: ' ';
    position: relative;
    top: 50%;
    display: none;
    vertical-align: sub;
    text-decoration: underline;
}

a.button-link-next:after {
    display: inline-block;
}

.button-link-smaller:visited {
    color: #FFF;
}

a.button-link-smaller:hover, a.button-link-smaller:focus {
    text-decoration: underline;
    color: #D93F00 !important;
    background-color: #fff;
}

.button-link-smaller {
    background-color: #D93F00;
    border: none;
    color: #FFF;
    margin-top: 1em;
    background-image: none;
    width: 250px;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    font-size: 1.0em;
    font-weight: 500;
    padding: 1em 1.7em;
    text-decoration: none;
}

.button-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.spaceout {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.x-logo-color {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(338deg) brightness(103%) contrast(106%);
}
/*# sourceMappingURL=main.css.map*/
