
            html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
                margin: 0;
                padding: 0;
                border: 0;
                font-size: 100%;
                font: inherit;
                vertical-align: baseline;
            }

            body {
                margin: 0;
                padding: 0;
                background: #010d11;
                height: auto;
            }
            .stars, .shooting-stars {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: -1;
            }
            .star {
                position: absolute;
                width: 1.5px;
                height: 1.5px;
                background: rgb(128, 196, 252);
                border-radius: 50%;
                animation-name: twinkle;
                animation-iteration-count: infinite;
                animation-timing-function: ease-in-out;
            }
            @keyframes twinkle {
                    0%, 100% { opacity: var(--min-opacity, 0.2); }
                    50% { opacity: var(--max-opacity, 1); }
            }
            .shooting-star {
                position: absolute;
                width: 150px;
                height: 2px;
                background: linear-gradient(-90deg, rgb(255, 221, 109), transparent);
                opacity: 0;
                transform: rotate(45deg);
                animation: shoot 2s ease-out;
            }
            @keyframes shoot {
            0% {
                    opacity: 0;
                    transform: translate(-200px, -200px) rotate(45deg);
            }
            10% {
                    opacity: 1;
            }
            100% {
                    opacity: 0;
                    transform: translate(800px, 800px) rotate(45deg);
            }
            }

            article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
                display: block;
            }

            body {
                line-height: 1;
            }

            ol,ul {
                list-style: none;
            }

            blockquote,q {
                quotes: none;
            }

            blockquote:before,blockquote:after,q:before,q:after {
                content: '';
                content: none;
            }

            table {
                border-collapse: collapse;
                border-spacing: 0;
            }

            body {
                -webkit-text-size-adjust: none
            }

            mark {
                background-color: transparent;
                color: inherit
            }

            input::-moz-focus-inner {
                border: 0;
                padding: 0
            }

            input[type="text"],input[type="email"],select,textarea {
                -moz-appearance: none;
                -webkit-appearance: none;
                -ms-appearance: none;
                appearance: none
            }

            *, *:before, *:after {
                box-sizing: border-box;
            }

            body {
                line-height: 1.0;
                min-height: var(--viewport-height);
                min-width: 320px;
                overflow-x: hidden;
                word-wrap: break-word;
                /*background-color: #0D1721;*/
            }

            :root {
                --background-height: 100vh;
                --site-language-alignment: left;
                --site-language-direction: ltr;
                --site-language-flex-alignment: flex-start;
                --site-language-indent-left: 1;
                --site-language-indent-right: 0;
                --site-language-margin-left: 0;
                --site-language-margin-right: auto;
                --viewport-height: 100vh;
            }

            html {
                font-size: 20pt;
            }

            u {
                text-decoration: underline;
            }

            strong {
                color: inherit;
                font-weight: bolder;
            }

            em {
                font-style: italic;
            }

            code {
                background-color: rgba(144,144,144,0.25);
                border-radius: 0.25em;
                font-family: 'Lucida Console', 'Courier New', monospace;
                font-size: 0.9em;
                font-weight: normal;
                letter-spacing: 0;
                margin: 0 0.25em;
                padding: 0.25em 0.5em;
                text-indent: 0;
            }

            mark {
                background-color: rgba(144,144,144,0.25);
            }

            spoiler-text {
                -webkit-text-stroke: 0;
                background-color: rgba(32,32,32,0.75);
                text-shadow: none;
                text-stroke: 0;
                color: transparent;
                cursor: pointer;
                transition: color 0.1s ease-in-out;
            }

            spoiler-text.active {
                color: #FFFFFF;
                cursor: text;
            }

            s {
                text-decoration: line-through;
            }

            sub {
                font-size: smaller;
                vertical-align: sub;
            }

            sup {
                font-size: smaller;
                vertical-align: super;
            }

            a {
                color: inherit;
                text-decoration: underline;
                transition: color 0.25s ease;
            }

            a[onclick]:not([href]) {
                cursor: pointer;
            }

            unloaded-script {
                display: none;
            }

            #wrapper {
                -webkit-overflow-scrolling: touch;
                align-items: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
                min-height: var(--viewport-height);
                overflow: hidden;
                position: relative;
                z-index: 2;
                padding: 1rem 1rem 1rem 1rem;
            }

            #main {
                --alignment: var(--site-language-alignment);
                --flex-alignment: var(--site-language-flex-alignment);
                --indent-left: var(--site-language-indent-left);
                --indent-right: var(--site-language-indent-right);
                --margin-left: var(--site-language-margin-left);
                --margin-right: var(--site-language-margin-right);
                --border-radius-tl: 0.75rem;
                --border-radius-tr: 0.75rem;
                --border-radius-br: 0.75rem;
                --border-radius-bl: 0.75rem;
                align-items: center;
                display: flex;
                flex-grow: 0;
                flex-shrink: 0;
                justify-content: center;
                max-width: 100%;
                position: relative;
                text-align: var(--alignment);
                z-index: 1;
                background-color: transparent;
                border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
            }

            #main > .inner {
                --padding-horizontal: 0.5rem;
                --padding-vertical: 0.125rem;
                --spacing: 0rem;
                --width: 48rem;
                border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
                max-width: 100%;
                position: relative;
                width: var(--width);
                z-index: 1;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }

            #main > .inner > header {
                margin-bottom: var(--spacing);
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #main > .inner > footer {
                margin-top: var(--spacing);
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #main > .inner > * > * {
                margin-top: var(--spacing);
                margin-bottom: var(--spacing);
            }

            #main > .inner > * > :first-child {
                margin-top: 0 !important;
            }

            #main > .inner > * > :last-child {
                margin-bottom: 0 !important;
            }

            #main > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
                width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
            }

            #main > .inner > .full:first-child {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #main > .inner > .full:last-child {
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #main > .inner > .full.screen {
                border-radius: 0 !important;
                max-width: 100vw;
                position: relative;
                width: 100vw;
                left: 50%;
                margin-left: -50vw;
                right: auto;
            }

            #main > .inner > * > .full {
                margin-left: calc(-0.5rem);
                max-width: calc(100% + 1rem + 0.4725px);
                width: calc(100% + 1rem + 0.4725px);
            }

            #main > .inner > * > .full.screen {
                border-radius: 0 !important;
                max-width: 100vw;
                position: relative;
                width: 100vw;
                left: 50%;
                margin-left: -50vw;
                right: auto;
            }

            #main > .inner > header > .full:first-child {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
                margin-top: -0.625rem !important;
            }

            #main > .inner > footer > .full:last-child {
                margin-bottom: -0.625rem !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            body.is-instant #main, body.is-instant #main > .inner > *,body.is-instant #main > .inner > section > * {
                transition: none !important;
            }

            body.is-instant:after {
                display: none !important;
                transition: none !important;
            }

            @keyframes loading-spinner {
                0% {
                    transform: rotate(0deg);
                }

                100% {
                    transform: rotate(360deg);
                }
            }

            .deferred:before {
                content: '';
                display: block;
                width: 4rem;
                height: 4rem;
                position: absolute;
                top: 50%;
                left: 50%;
                margin: -2rem 0 0 -2rem;
                animation: loading-spinner 1s infinite linear;
                transition: opacity 0.25s ease;
                transition-delay: 0.5s;
                opacity: 0;
                z-index: -1;
                background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNmZmY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
                background-position: center;
                background-repeat: no-repeat;
                background-size: 3rem;
            }

            .deferred.loading:before {
                opacity: 0.35;
                z-index: 0;
            }

            .slideshow-background:after {
                content: '';
                display: block;
                width: 4rem;
                height: 4rem;
                position: absolute;
                top: 50%;
                left: 50%;
                margin: -2rem 0 0 -2rem;
                animation: loading-spinner 1s infinite linear;
                transition: opacity 0.25s ease;
                transition-delay: 1s;
                opacity: 0;
                pointer-events: none;
                z-index: -1;
                background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNmZmY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
                background-position: center;
                background-repeat: no-repeat;
                background-size: 3rem;
            }

            .slideshow-background.is-loading:after {
                opacity: 0.35;
                z-index: 0;
            }

            .slideshow-background > div {
                background-size: cover;
                position: absolute;
                top: 0;
                left: 0;
                width: 100% !important;
                height: 100% !important;
                opacity: 0;
                z-index: -2;
                animation-timing-function: linear;
                animation-iteration-count: infinite;
                animation-direction: alternate;
            }

            .slideshow-background > .initial {
                transition: none;
            }

            .slideshow-background > .visible {
                opacity: 1;
            }

            .slideshow-background > .top {
                z-index: -1;
            }

            .slideshow-background.instant > div {
                visibility: hidden;
            }

            .slideshow-background.instant > .visible {
                visibility: visible;
            }

            .slideshow-background.crossfade > div {
                transition: opacity 2s ease-in-out;
                visibility: hidden;
            }

            .slideshow-background.crossfade > .visible {
                visibility: visible;
            }

            .slideshow-background.fade > div {
                transition: opacity 2s ease-in-out;
                visibility: visible;
            }

            .slideshow-background.fade > .visible {
                visibility: visible;
            }

            .slideshow-background > .left, .slideshow-background > .right {
                width: 150% !important;
            }

            .slideshow-background > .up, .slideshow-background > .down {
                height: 150% !important;
            }

            .slideshow-background > .in, .slideshow-background > .out {
                transform-origin: 50% 50%;
            }

            .slideshow-background > .left.is-playing {
                animation-name: slideshow-background-left;
            }

            .slideshow-background > .right.is-playing {
                animation-name: slideshow-background-right;
            }

            .slideshow-background > .up.is-playing {
                animation-name: slideshow-background-up;
            }

            .slideshow-background > .down.is-playing {
                animation-name: slideshow-background-down;
            }

            .slideshow-background > .in.is-playing {
                animation-name: slideshow-background-in;
            }

            .slideshow-background > .out.is-playing {
                animation-name: slideshow-background-out;
            }

            .slideshow-background > .slow {
                animation-duration: 60s;
            }

            .slideshow-background > .normal {
                animation-duration: 45s;
            }

            .slideshow-background > .fast {
                animation-duration: 30s;
            }

            @keyframes slideshow-background-left {
                from {
                    transform: translateX(0);
                }

                to {
                    transform: translateX(-25%);
                }
            }

            @keyframes slideshow-background-right {
                from {
                    transform: translateX(-25%);
                }

                to {
                    transform: translateX(0);
                }
            }

            @keyframes slideshow-background-up {
                from {
                    transform: translateY(0);
                }

                to {
                    transform: translateY(-25%);
                }
            }

            @keyframes slideshow-background-down {
                from {
                    transform: translateY(-25%);
                }

                to {
                    transform: translateY(0);
                }
            }

            @keyframes slideshow-background-in {
                from {
                    transform: scale(1);
                }

                to {
                    transform: scale(2);
                }
            }

            @keyframes slideshow-background-out {
                from {
                    transform: scale(2);
                }

                to {
                    transform: scale(1);
                }
            }

            .buttons {
                cursor: default;
                display: flex;
                justify-content: var(--flex-alignment);
                letter-spacing: 0;
                padding: 0;
            }

            .buttons li {
                max-width: 100%;
                text-align: var(--alignment);
            }

            .buttons li a {
                align-items: center;
                justify-content: center;
                max-width: 100%;
                text-align: center;
                text-decoration: none;
                vertical-align: middle;
                white-space: nowrap;
            }

            #buttons01 {
                --flex-alignment: center;
                --alignment: center;
                gap: 1rem;
                flex-direction: row;
                flex-wrap: wrap;
            }

            #buttons01 li a {
                display: inline-flex;
                width: auto;
                height: 1.875rem;
                line-height: 1.875rem;
                padding: 0 0.9375rem;
                vertical-align: middle;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.75em;
                font-weight: 300;
                border-radius: 2rem;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }

            #buttons01 li a svg {
                display: block;
                fill: #FFFFFF;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 1em;
                margin-left: -0.125em;
                margin-right: calc(0.5em + 0rem);
                transition: fill 0.25s ease;
            }

            #buttons01 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
            }

            #buttons01 .button {
                color: #FFFFFF;
                border: solid 2px #ebc340;
            }

            #buttons01 .button svg {
                fill: #FFFFFF;
            }

            #buttons01 .button:hover {
                border-color: #5cdafa !important;
                color: #5cdafa !important;
            }

            #buttons01 .button:hover svg {
                fill: #FFD600 !important;
            }

            #buttons01 li a:hover {
                transform: scale(1.0425);
            }

            #buttons06 {
                --flex-alignment: center;
                --alignment: center;
                gap: 1rem;
                flex-direction: row;
                flex-wrap: wrap;
            }

            #buttons06:not(:first-child) {
                margin-top: 0.625rem !important;
            }

            #buttons06:not(:last-child) {
                margin-bottom: 0.625rem !important;
            }

            #buttons06 li a {
                display: inline-flex;
                width: 13.125rem;
                height: 3rem;
                line-height: 2rem;
                padding: 0 0.5rem;
                vertical-align: middle;
                font-variant: small-caps;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.8em;
                font-weight: 300;
                border-radius: 2rem;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }

            #buttons06 li a svg {
                display: block;
                fill: #FFFFFF;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 0.875em;
                margin-left: -0.125em;
                margin-right: calc(0.375rem + 0rem);
                transition: fill 0.25s ease;
            }

            #buttons06 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
            }

            #buttons06 .button {
                color: #FFFFFF;
                border: solid 2px #ebc340;
            }

            #buttons06 .button svg {
                fill: #FFFFFF;
            }

            #buttons06 .button:hover {
                border-color: #5cdafa !important;
                color: #5cdafa !important;
            }

            #buttons06 .button:hover svg {
                fill: #FFD600 !important;
            }

            #buttons06 li a:hover {
                transform: scale(1.0425);
            }

            /*  */
            #buttons98 {
                --flex-alignment: center;
                --alignment: center;
                gap: 1rem;
                flex-direction: row;
                flex-wrap: wrap;
            }

            #buttons98:not(:first-child) {
                margin-top: 0.625rem !important;
            }

            #buttons98:not(:last-child) {
                margin-bottom: 0.625rem !important;
            }

            #buttons98 li a {
                display: inline-flex;
                width: 13.125rem;
                height: 3rem;
                line-height: 2rem;
                padding: 0 0.5rem;
                vertical-align: middle;
                font-variant: small-caps;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.8em;
                font-weight: 300;
                border-radius: 2rem;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }

            #buttons98 li a svg {
                display: block;
                fill: #FFFFFF;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 0.875em;
                margin-left: -0.125em;
                margin-right: calc(0.375rem + 0rem);
                transition: fill 0.25s ease;
            }

            #buttons98 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
            }

            #buttons98 .button {
                color: #FFFFFF;
                border: solid 2px #ebc340;
            }

            #buttons98 .button svg {
                fill: #FFFFFF;
            }

            #buttons98 .button:hover {
                border-color: #5cdafa !important;
                color: #5cdafa !important;
            }

            #buttons98 .button:hover svg {
                fill: #FFD600 !important;
            }

            #buttons98 li a:hover {
                transform: scale(1.0425);
            }

            #buttons02 {
                --flex-alignment: center;
                --alignment: center;
                gap: 1rem;
                flex-direction: row;
                flex-wrap: wrap;
            }

            #buttons02 li a {
                display: inline-flex;
                width: 10.125rem;
                height: 2rem;
                line-height: 2rem;
                padding: 0 0.5rem;
                vertical-align: middle;
                font-variant: small-caps;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.625em;
                font-weight: 300;
                border-radius: 2rem;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }

            #buttons02 li a svg {
                display: block;
                fill: #FFFFFF;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 0.875em;
                margin-left: -0.125em;
                margin-right: calc(0.375rem + 0rem);
                transition: fill 0.25s ease;
            }

            #buttons02 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
            }

            #buttons02 .button {
                color: #FFFFFF;
                border: solid 2px #B8B8B8;
            }

            #buttons02 .button svg {
                fill: #FFFFFF;
            }

            #buttons02 .button:hover {
                border-color: #FFD600 !important;
                color: #FFD600 !important;
            }

            #buttons02 .button:hover svg {
                fill: #FFD600 !important;
            }

            #buttons02 li a:hover {
                transform: scale(1.0425);
            }

            #buttons03 {
                --flex-alignment: center;
                --alignment: center;
                gap: 1rem;
                flex-direction: row;
                flex-wrap: wrap;
            }

            #buttons03 li a {
                display: inline-flex;
                width: 10.125rem;
                height: 2rem;
                line-height: 2rem;
                padding: 0 0.5rem;
                vertical-align: middle;
                font-variant: small-caps;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.625em;
                font-weight: 300;
                border-radius: 2rem;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }

            #buttons03 li a svg {
                display: block;
                fill: #FFFFFF;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 0.875em;
                margin-left: -0.125em;
                margin-right: calc(0.375rem + 0rem);
                transition: fill 0.25s ease;
            }

            #buttons03 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
            }

            #buttons03 .button {
                color: #FFFFFF;
                border: solid 2px #B8B8B8;
            }

            #buttons03 .button svg {
                fill: #FFFFFF;
            }

            #buttons03 .button:hover {
                border-color: #FFD600 !important;
                color: #FFD600 !important;
            }

            #buttons03 .button:hover svg {
                fill: #FFD600 !important;
            }

            #buttons03 li a:hover {
                transform: scale(1.0425);
            }

            .container {
                position: relative;
            }

            .container > .wrapper {
                vertical-align: top;
                position: relative;
                max-width: 100%;
                border-radius: inherit;
            }

            .container > .wrapper > .inner {
                vertical-align: top;
                position: relative;
                max-width: 100%;
                border-radius: inherit;
                text-align: var(--alignment);
            }

            #main .container.full:first-child > .wrapper {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #main .container.full:last-child > .wrapper {
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #main .container.full:first-child > .wrapper > .inner {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #main .container.full:last-child > .wrapper > .inner {
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container02 > .wrapper {
                display: inline-block;
                width: 100%;
                background-color: transparent;
            }

            #container02 > .wrapper > .inner {
                --gutters: 0.5rem;
                --padding-horizontal: 0.5rem;
                --padding-vertical: 0.75rem;
                --spacing: 0.75rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }

            #container02.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container02.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }

            #container02.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }

            #container02.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: center;
            }

            #container02.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }

            #container02.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container02.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }

            #container02.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }

            #container02.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }

            #container02.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }

            #container02.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container02.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container02.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }

            #container02.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container02.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container02.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #container02.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #container02.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }

            #container02.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }

            #container02.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }

            #container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }

            #container04 {
                display: flex;
                width: 100%;
                min-height: 32rem;
                align-items: center;
                justify-content: center;
                background-attachment: scroll;
                background-image: url('img/HaidoTraverse.webp');
                background-position: 60% 50%;
                background-repeat: no-repeat;
                background-size: contain;
            }
            #container04::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                
                background-image: url('img/HaidoTTOFF.webp');
                background-position: 60% 50%;
                background-repeat: no-repeat;
                background-size: contain;
                opacity: 0;
                animation: traverse 3s ease-in-out infinite;
                pointer-events: none;
            }
            @keyframes traverse {
                0%   { opacity: 0; }
                50%  { opacity: 1; }
                100% { opacity: 0; }
            }


            #container04 > .wrapper > .inner {
                --gutters: 0rem;
                --padding-horizontal: 2.5rem;
                --padding-vertical: 0.75rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
                padding-top: 9rem;
                padding-left: 3.3rem;
            }

            #container04 > .wrapper {
                max-width: 75%;
                width: 100%;
            }

            #container04.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container04.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }

            #container04.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }

            #container04.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: center;
            }

            #container04.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }

            #container04.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container04.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }

            #container04.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }

            #container04.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }

            #container04.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }

            #container04.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container04.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container04.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }

            #container04.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container04.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container04.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #container04.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #container04.columns > .wrapper > .inner > .full {
                align-self: stretch;
                min-height: calc(41rem - (var(--padding-vertical) * 2));
            }

            #container04.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }

            #container04.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container04.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }

            #container04.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }

            #container04 > .wrapper > .inner > :nth-child(1) {
                width: 34%;
            }

            #container04 > .wrapper > .inner > :nth-child(2) {
                width: 66%;
            }

            #container98 {
                display: flex;
                width: 100%;
                min-height: 39rem;
                align-items: center;
                justify-content: center;
                background-attachment: scroll;
                background-image: url('img/HaidoTraverseV.webp');
                background-position: 60% 50%;
                background-repeat: no-repeat;
                background-size: contain;
            }
            #container98::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                
                background-image: url('img/HaidoTTVertOFF.webp');
                background-position: 60% 50%;
                background-repeat: no-repeat;
                background-size: contain;
                opacity: 0;
                animation: traverse 3s ease-in-out infinite;
                pointer-events: none;
            }
            @keyframes traverse {
                0%   { opacity: 0; }
                50%  { opacity: 1; }
                100% { opacity: 0; }
            }

            #container98 > .wrapper > .inner {
                --gutters: 0.875rem;
                --padding-horizontal: 4.125rem;
                --padding-vertical: 0.75rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
                padding-top: 8.5rem;
                padding-left: 4.5rem;
            }

            #container98 > .wrapper {
                max-width: 40rem;
                width: 100%;
            }

            #container98.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container98.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }

            #container98.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }

            #container98.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: center;
            }

            #container98.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }

            #container98.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container98.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }

            #container98.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }

            #container98.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }

            #container98.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }

            #container98.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container98.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container98.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }

            #container98.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container98.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container98.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #container98.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #container98.columns > .wrapper > .inner > .full {
                align-self: stretch;
                min-height: calc(42rem - (var(--padding-vertical) * 2));
            }

            #container98.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }

            #container98.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container98.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }

            #container98.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }

            #container98 > .wrapper > .inner > :nth-child(1) {
                width: calc(44% + (var(--gutters) / 2));
            }

            #container98 > .wrapper > .inner > :nth-child(2) {
                width: calc(56% + (var(--gutters) / 2));
            }

            #container07 {
                display: flex;
                width: 100%;
                min-height: 39rem;
                align-items: center;
                justify-content: center;
                background-attachment: scroll;
                background-image: url('img/HaidoTraverseV.webp');
                background-position: 60% 50%;
                background-repeat: no-repeat;
                background-size: contain;
            }
            #container07::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                
                background-image: url('img/HaidoTTVertOFF.webp');
                background-position: 60% 50%;
                background-repeat: no-repeat;
                background-size: contain;
                opacity: 0;
                animation: traverse 3s ease-in-out infinite;
                pointer-events: none;
            }
            @keyframes traverse {
                0%   { opacity: 0; }
                50%  { opacity: 1; }
                100% { opacity: 0; }
            }

            #container07 > .wrapper > .inner {
                --gutters: 0.875rem;
                --padding-horizontal: 4.125rem;
                --padding-vertical: 0.75rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
                padding-top: 3.5rem;
                padding-left: 4.5rem;
            }

            #container07 > .wrapper {
                max-width: 40rem;
                width: 100%;
            }

            #container07.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container07.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }

            #container07.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }

            #container07.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: center;
            }

            #container07.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }

            #container07.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container07.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }

            #container07.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }

            #container07.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }

            #container07.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }

            #container07.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container07.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container07.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }

            #container07.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container07.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container07.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #container07.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #container07.columns > .wrapper > .inner > .full {
                align-self: stretch;
                min-height: calc(42rem - (var(--padding-vertical) * 2));
            }

            #container07.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }

            #container07.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container07.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }

            #container07.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }

            #container07 > .wrapper > .inner > :nth-child(1) {
                width: calc(44% + (var(--gutters) / 2));
            }

            #container07 > .wrapper > .inner > :nth-child(2) {
                width: calc(56% + (var(--gutters) / 2));
            }

            #container05 {
                display: flex;
                width: 100%;
                min-height: 42rem;
                align-items: center;
                justify-content: center;
                background-color: transparent;
            }

            #container05 > .wrapper > .inner {
                --gutters: 0.125rem;
                --padding-horizontal: 2.375rem;
                --padding-vertical: 0rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }

            #container05 > .wrapper {
                max-width: 46rem;
                width: 100%;
            }

            #container05.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container05.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }

            #container05.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }

            #container05.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: center;
            }

            #container05.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }

            #container05.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container05.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }

            #container05.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }

            #container05.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }

            #container05.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }

            #container05.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container05.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container05.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }

            #container05.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container05.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container05.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #container05.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #container05.columns > .wrapper > .inner > .full {
                align-self: stretch;
                min-height: calc(42rem - (var(--padding-vertical) * 2));
            }

            #container05.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }

            #container05.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container05.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }

            #container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }

            #container06 > .wrapper {
                display: inline-block;
                width: 75rem;
                background-color: transparent;
            }

            #container06 > .wrapper > .inner {
                --gutters: 0.5rem;
                --padding-horizontal: 0.75rem;
                --padding-vertical: 0.75rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }

            #container06.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container06.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }

            #container06.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }

            #container06.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: center;
            }

            #container06.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }

            #container06.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container06.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }

            #container06.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }

            #container06.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }

            #container06.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }

            #container06.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container06.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container06.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }

            #container06.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container06.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container06.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #container06.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #container06.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }

            #container06.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }

            #container06.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container06.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }

            #container06.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }

            #container09 > .wrapper {
                display: inline-block;
                width: 75rem;
                background-color: transparent;
            }

            #container09 > .wrapper > .inner {
                --gutters: 0.5rem;
                --padding-horizontal: 0.75rem;
                --padding-vertical: 0.75rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }

            #container09.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container09.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }

            #container09.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }

            #container09.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: center;
            }

            #container09.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }

            #container09.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container09.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }

            #container09.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }

            #container09.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }

            #container09.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }

            #container09.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container09.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container09.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }

            #container09.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container09.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container09.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #container09.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #container09.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }

            #container09.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }

            #container09.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container09.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }

            #container09.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }

            #container08 > .wrapper {
                display: inline-block;
                width: 75rem;
                background-color: transparent;
            }

            #container08 > .wrapper > .inner {
                --gutters: 0.5rem;
                --padding-horizontal: 0.75rem;
                --padding-vertical: 0.75rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }

            #container08.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container08.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }

            #container08.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }

            #container08.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: center;
            }

            #container08.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }

            #container08.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container08.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }

            #container08.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }

            #container08.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }

            #container08.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }

            #container08.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container08.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container08.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }

            #container08.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container08.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container08.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #container08.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #container08.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }

            #container08.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }

            #container08.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container08.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }

            #container08.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }

            #container01 > .wrapper {
                display: inline-block;
                width: 75rem;
                background-color: transparent;
            }

            #container01 > .wrapper > .inner {
                --gutters: 0.5rem;
                --padding-horizontal: 0.75rem;
                --padding-vertical: 0.75rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }

            #container01.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container01.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }

            #container01.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }

            #container01.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: center;
            }

            #container01.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }

            #container01.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container01.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }

            #container01.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }

            #container01.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }

            #container01.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }

            #container01.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container01.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container01.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }

            #container01.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container01.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container01.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #container01.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #container01.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }

            #container01.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }

            #container01.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }

            #container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }

            #container03 > .wrapper {
                display: inline-block;
                width: 75rem;
                background-color: transparent;
            }

            #container03 > .wrapper > .inner {
                --gutters: 0.5rem;
                --padding-vertical: 0.25rem;
                --spacing: 1rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }

            #container03.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container03.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }

            #container03.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }

            #container03.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: center;
            }

            #container03.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }

            #container03.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }

            #container03.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }

            #container03.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }

            #container03.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }

            #container03.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }

            #container03.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container03.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #container03.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }

            #container03.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container03.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }

            #container03.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }

            #container03.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }

            #container03.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }

            #container03.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }

            #container03.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }

            #container03.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }

            #container03.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }

            .image {
                display: block;
                line-height: 0;
                max-width: 100%;
                position: relative;
            }

            .image .frame {
                -webkit-backface-visibility: hidden;
                -webkit-transform: translate3d(0, 0, 0);
                display: inline-block;
                max-width: 100%;
                overflow: hidden;
                vertical-align: top;
                width: 100%;
            }

            .image .frame img {
                border-radius: 0 !important;
                max-width: 100%;
                vertical-align: top;
                width: inherit;
            }

            .image.full .frame {
                display: block;
            }

            .image.full:first-child .frame {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }

            .image.full:last-child .frame {
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }

            #image03 {
                text-align: center;
            }

            #image03 .frame {
                width: 25rem;
                height: 1.75rem;
                border-radius: 0.625rem;
                transition: none;
            }

            #image03 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }

            #image03 .frame img {
                transition: none;
            }

            #image04 {
                text-align: left;
            }

            #image04 .frame {
                width: 26rem;
                height: 13.55rem;
                border-radius: 1rem;
                box-shadow: 0rem 0rem 0.5rem 0rem #F5E982;
                transition: filter 0.25s ease;
                filter: brightness(100%);
            }

            #image04 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }

            #image04 .frame:hover {
                filter: brightness(110.625%);
            }

            #image05 {
                text-align: center;
            }

            #image05 .frame {
                width: 15.75rem;
                height: 21.125rem;
                border-radius: 1.625rem;
                box-shadow: 0rem 0rem 0.75rem 0rem #B8B6B6;
                transition: filter 0.25s ease;
                filter: brightness(100%);
            }

            #image05 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }

            #image05 .frame:hover {
                filter: brightness(110%);
            }

            #image08 {
                text-align: center;
            }

            #image08:not(:first-child) {
                margin-top: 0.5rem !important;
            }

            #image08:not(:last-child) {
                margin-bottom: 0.5rem !important;
            }

            #image08 .frame {
                width: 25.5rem;
                height: 1.75rem;
                border-radius: 0.625rem;
                transition: none;
            }

            #image08 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }

            #image08 .frame img {
                transition: none;
            }

            #image11 {
                text-align: center;
            }

            #image11:not(:first-child) {
                margin-top: 0.5rem !important;
            }

            #image11:not(:last-child) {
                margin-bottom: 0.5rem !important;
            }

            #image11 .frame {
                width: 25.5rem;
                height: 1.75rem;
                border-radius: 0.625rem;
                transition: none;
            }

            #image11 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }

            #image11 .frame img {
                transition: none;
            }

            #image10 {
                text-align: center;
            }

            #image10:not(:first-child) {
                margin-top: 0.5rem !important;
            }

            #image10:not(:last-child) {
                margin-bottom: 0.5rem !important;
            }

            #image10 .frame {
                width: 25.5rem;
                height: 1.75rem;
                border-radius: 0.625rem;
                transition: none;
            }

            #image10 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }

            #image10 .frame img {
                transition: none;
            }

            #image09 {
                text-align: center;
            }

            #image09:not(:first-child) {
                margin-top: 0.5rem !important;
            }

            #image09:not(:last-child) {
                margin-bottom: 0.5rem !important;
            }

            #image09 .frame {
                width: 25.5rem;
                height: 1.75rem;
                border-radius: 0.625rem;
                transition: none;
            }

            #image09 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }

            #image09 .frame img {
                transition: none;
            }

            #image06 {
                text-align: center;
            }

            #image06:not(:first-child) {
                margin-top: 0.5rem !important;
            }

            #image06:not(:last-child) {
                margin-bottom: 0.5rem !important;
            }

            #image06 .frame {
                width: 25.5rem;
                height: 1.75rem;
                border-radius: 0.625rem;
                transition: none;
            }

            #image06 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }

            #image06 .frame img {
                transition: none;
            }

            #image02 {
                text-align: center;
            }

            #image02 .frame {
                width: 25rem;
                height: 1.75rem;
                border-radius: 0.625rem;
                transition: none;
            }

            #image02 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }

            #image02 .frame img {
                transition: none;
            }

            #image01 {
                text-align: center;
            }

            #image01 .frame {
                width: 35rem;
                height: 8.75rem;
                border-radius: 0.625rem;
                box-shadow: 0rem 0rem 0.75rem 0rem #B8B6B6;
                transition: filter 0.25s ease;
                filter: saturate(43.75%);
            }

            #image01 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }

            #image01 .frame:hover {
                filter: saturate(100%);
            }

            #header {
                margin-bottom: 0.25rem !important;
            }

            #footer {
                margin-top: 0.25rem !important;
            }

            h1, h2, h3, p {
                direction: var(--site-language-direction);
                position: relative;
            }

            h1 span.p, h2 span.p, h3 span.p, p span.p {
                display: block;
                position: relative;
            }

            h1 span[style], h2 span[style], h3 span[style], p span[style], h1 strong, h2 strong, h3 strong, p strong, h1 a, h2 a, h3 a, p a, h1 code, h2 code, h3 code, p code, h1 mark, h2 mark, h3 mark, p mark, h1 spoiler-text, h2 spoiler-text, h3 spoiler-text, p spoiler-text {
                -webkit-text-fill-color: currentcolor;
            }

            #text12:not(:first-child) {
                margin-top: 0.375rem !important;
            }

            #text12:not(:last-child) {
                margin-bottom: 0.375rem !important;
            }

            #text12 {
                text-align: left;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.5em;
                line-height: 0.75;
                font-weight: 300;
            }

            #text12 a {
                text-decoration: underline;
            }

            #text12 a:hover {
                text-decoration: none;
            }

            #text12 span.p:nth-child(n + 2) {
                margin-top: 0.625rem;
            }

            #text04:not(:first-child) {
                margin-top: 0.75rem !important;
            }

            #text04:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text04 {
                text-align: center;
                font-variant: small-caps;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.175rem;
                width: calc(100% + 0.175rem);
                font-size: 1em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text04 a {
                text-decoration: underline;
            }

            #text04 a:hover {
                text-decoration: none;
            }

            #text04 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text02:not(:first-child) {
                margin-top: 0.75rem !important;
            }

            #text02:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text02 {
                text-align: center;
                font-variant: small-caps;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.175rem;
                width: calc(100% + 0.175rem);
                font-size: 1em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text02 a {
                text-decoration: underline;
            }

            #text02 a:hover {
                text-decoration: none;
            }

            #text02 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text06:not(:first-child) {
                margin-top: 1rem !important;
            }

            #text06:not(:last-child) {
                margin-bottom: 1rem !important;
            }

            #text06 {
                text-align: center;
                font-variant: small-caps;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.25rem;
                width: calc(100% + 0.25rem);
                font-size: 0.875em;
                line-height: 1.5;
                font-weight: 700;
            }

            #text06 a {
                text-decoration: underline;
            }

            #text06 a:hover {
                text-decoration: none;
            }

            #text06 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text07:not(:first-child) {
                margin-top: 0.375rem !important;
            }

            #text07:not(:last-child) {
                margin-bottom: 0.375rem !important;
            }

            #text07 {
                text-align: left;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.875em;
                line-height: 1.375;
                font-weight: 300;
            }

            #text07 a {
                text-decoration: underline;
            }

            #text07 a:hover {
                text-decoration: none;
            }

            #text07 span.p:nth-child(n + 2) {
                margin-top: 0.625rem;
            }


            #text98:not(:first-child) {
                margin-top: 0.375rem !important;
            }

            #text98:not(:last-child) {
                margin-bottom: 0.375rem !important;
            }

            #text98 {
                text-align: left;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.875em;
                line-height: 1.375;
                font-weight: 300;
            }

            #text98 a {
                text-decoration: underline;
            }

            #text98 a:hover {
                text-decoration: none;
            }

            #text98 span.p:nth-child(n + 2) {
                margin-top: 0.625rem;
            }

            #text01:not(:first-child) {
                margin-top: 0.75rem !important;
            }

            #text01:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text01 {
                text-align: center;
                font-variant: small-caps;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.175rem;
                width: calc(100% + 0.175rem);
                font-size: 1em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text01 a {
                text-decoration: underline;
            }

            #text01 a:hover {
                text-decoration: none;
            }

            #text01 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text11:not(:first-child) {
                margin-top: 0.75rem !important;
            }

            #text11:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text11 {
                text-align: center;
                font-variant: small-caps;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.175rem;
                width: calc(100% + 0.175rem);
                font-size: 1em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text11 a {
                text-decoration: underline;
            }

            #text11 a:hover {
                text-decoration: none;
            }

            #text11 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text13:not(:first-child) {
                margin-top: 0.375rem !important;
            }

            #text13:not(:last-child) {
                margin-bottom: 0.375rem !important;
            }

            #text13 {
                text-align: center;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.875em;
                line-height: 1.375;
                font-weight: 500;
            }

            #text13 u {
                text-decoration: none;
                box-shadow: 0 0.125em 0 0 #CCCCCC;
            }

            #text13 a {
                text-decoration: underline;
            }

            #text13 a:hover {
                text-decoration: none;
            }

            #text13 span.p:nth-child(n + 2) {
                margin-top: 0.625rem;
            }

            #text16:not(:first-child) {
                margin-top: 0.75rem !important;
            }

            #text16:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text16 {
                text-align: justify;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.1rem;
                width: calc(100% + 0.1rem);
                font-size: 0.75em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text16 a {
                text-decoration: underline;
            }

            #text16 a:hover {
                text-decoration: none;
            }

            #text16 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text09:not(:first-child) {
                margin-top: 2rem !important;
            }

            #text09:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text09 {
                text-align: justify;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.1rem;
                width: calc(100% + 0.1rem);
                font-size: 0.75em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text09 a {
                text-decoration: underline;
            }

            #text09 a:hover {
                text-decoration: none;
            }

            #text09 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text18:not(:first-child) {
                margin-top: 2rem !important;
            }

            #text18:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text18 {
                text-align: justify;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.1rem;
                width: calc(100% + 0.1rem);
                font-size: 0.75em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text18 a {
                text-decoration: underline;
            }

            #text18 a:hover {
                text-decoration: none;
            }

            #text18 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text19:not(:first-child) {
                margin-top: 2rem !important;
            }

            #text19:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text19 {
                text-align: justify;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.1rem;
                width: calc(100% + 0.1rem);
                font-size: 0.75em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text19 a {
                text-decoration: underline;
            }

            #text19 a:hover {
                text-decoration: none;
            }

            #text19 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text17:not(:first-child) {
                margin-top: 2rem !important;
            }

            #text17:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text17 {
                text-align: justify;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.1rem;
                width: calc(100% + 0.1rem);
                font-size: 0.75em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text17 a {
                text-decoration: underline;
            }

            #text17 a:hover {
                text-decoration: none;
            }

            #text17 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text14:not(:first-child) {
                margin-top: 0.375rem !important;
            }

            #text14:not(:last-child) {
                margin-bottom: 0.375rem !important;
            }

            #text14 {
                text-align: left;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                padding-left: 2rem;
                padding-right: 0;
                letter-spacing: 0.125rem;
                width: calc(100% + 0.125rem);
                font-size: 0.875em;
                line-height: 1.375;
                font-weight: 500;
            }

            #text14 a {
                text-decoration: underline;
            }

            #text14 a:hover {
                text-decoration: none;
            }

            #text14 span.p:nth-child(n + 2) {
                margin-top: 0.625rem;
            }

            #text08:not(:first-child) {
                margin-top: 0.75rem !important;
            }

            #text08:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text08 {
                text-align: center;
                font-variant: small-caps;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.175rem;
                width: calc(100% + 0.175rem);
                font-size: 1em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text08 a {
                text-decoration: underline;
            }

            #text08 a:hover {
                text-decoration: none;
            }

            #text08 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            #text05:not(:first-child) {
                margin-top: 0.75rem !important;
            }

            #text05:not(:last-child) {
                margin-bottom: 0.75rem !important;
            }

            #text05 {
                text-align: center;
                font-variant: small-caps;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.175rem;
                width: calc(100% + 0.175rem);
                font-size: 1em;
                line-height: 1.5;
                font-weight: 300;
            }

            #text05 a {
                text-decoration: underline;
            }

            #text05 a:hover {
                text-decoration: none;
            }

            #text05 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }

            .table-wrapper {
                max-width: 100%;
                -webkit-overflow-scrolling: touch;
                overflow-x: auto;
                overflow-y: hidden;
            }

            .table-inner {
                display: inline-block;
                max-width: 100%;
            }

            table {
                direction: var(--site-language-direction);
                text-align: var(--site-language-alignment);
                width: 100%;
            }

            th {
                text-align: var(--site-language-alignment);
            }

            #table02 {
                text-align: center;
            }

            #table02 .table-inner {
                width: 15rem;
            }

            #table02 th {
                text-align: center;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.2rem;
                font-size: 1.25em;
                line-height: 1.5;
                font-weight: 700;
            }

            #table02 th a {
                text-decoration: underline;
            }

            #table02 th a:hover {
                text-decoration: none;
            }

            #table02 td {
                text-align: center;
                font-variant: small-caps;
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 0.05rem;
                font-size: 1.125em;
                line-height: 1.5;
                font-weight: 300;
            }

            #table02 td a {
                text-decoration: underline;
            }

            #table02 td a:hover {
                text-decoration: none;
            }

            #table02 thead {
                border-bottom: solid 2px #CCCCCC;
            }

            #table02 tbody tr {
                border-top: solid 1px rgba(204,204,204,0.373);
            }

            #table02 tbody tr:first-child {
                border-top: 0;
            }

            #table02 th, #table02 td {
                padding: 0.375rem 0.515625rem;
            }

            #table02 th:first-child, #table02 td:first-child {
                padding-left: 0;
            }

            #table02 th:last-child, #table02 td:last-child {
                padding-right: 0;
            }

            .gallery .inner {
                display: inline-block;
                max-width: 100%;
                vertical-align: middle;
            }

            .gallery ul {
                display: flex;
                flex-wrap: wrap;
                justify-content: var(--flex-alignment);
            }

            .gallery ul li {
                position: relative;
            }

            .gallery ul li .thumbnail {
                border-radius: inherit;
                position: relative;
            }

            .gallery ul li .frame {
                -webkit-backface-visibility: hidden;
                -webkit-transform: translate3d(0, 0, 0);
                display: inline-block;
                overflow: hidden;
                vertical-align: top;
            }

            .gallery ul li img {
                margin: 0;
                max-width: 100%;
                vertical-align: top;
                width: auto;
            }

            .gallery ul li .caption {
                width: 100%;
            }

            .gallery ul li .caption p {
                width: 100%;
            }

            .gallery ul li .caption a, .gallery ul li .caption spoiler-text {
                pointer-events: auto;
            }

            #gallery01 {
                text-align: center;
            }

            #gallery01 .inner {
                max-width: 40rem;
                width: 100%;
            }

            #gallery01 ul {
                justify-content: center;
                --gap: 1.625rem;
                gap: var(--gap);
            }

            #gallery01 ul li {
                border-radius: 0.25rem;
                display: inline-block;
                flex-grow: 1;
                flex-shrink: 0;
                flex-basis: calc(50% - var(--gap));
            }

            #gallery01 ul li .frame {
                border-radius: 0.25rem;
                box-shadow: 0rem 0rem 0.375rem 0rem #FFFFFF;
                width: 100%;
            }

            #gallery01 ul li .thumbnail {
                display: block;
                transition: transform 0.25s ease, z-index 0.25s ease;
            }

            #gallery01 ul li img {
                height: 22.75rem;
                object-fit: cover;
                object-position: center;
                width: 100%;
            }

            #gallery01 ul li .thumbnail:hover {
                transform: scale(1.2);
                z-index: 1;
            }

            #gallery01 ul li .n01 img {
                object-position: center;
            }

            #gallery01 ul li .n02 img {
                object-position: center;
            }

            #gallery01 ul li .n03 img {
                object-position: center;
            }

            #gallery01 ul li .n04 img {
                object-position: center;
            }

            #gallery01 ul li .n05 img {
                object-position: center;
            }

            #gallery01 ul li .n06 img {
                object-position: center;
            }

            #gallery01 ul li .n07 img {
                object-position: center;
            }

            #gallery01 ul li .n08 img {
                object-position: center;
            }

            #gallery01 ul li .n09 img {
                object-position: center;
            }

            #gallery01 ul li .n10 img {
                object-position: center;
            }

            #gallery01 ul li .n11 img {
                object-position: center;
            }

            #gallery01 ul li .n12 img {
                object-position: center;
            }

            #gallery01 ul li .n13 img {
                object-position: center;
            }

            #gallery01 ul li .n14 img {
                object-position: center;
            }

            #gallery01 ul li .n15 img {
                object-position: center;
            }

            #gallery05 {
                text-align: center;
            }

            #gallery05 .inner {
                max-width: 52rem;
                width: 100%;
            }

            #gallery05 ul {
                justify-content: center;
                --gap: 0.625rem;
                gap: var(--gap);
            }

            #gallery05 ul li {
                border-radius: 0.25rem;
                display: inline-block;
                flex-grow: 1;
                flex-shrink: 0;
                flex-basis: calc(33.333333333333% - var(--gap));
            }

            #gallery05 ul li .frame {
                border-radius: 0.25rem;
                box-shadow: 0rem 0rem 0.25rem 0rem #FFFFFF;
                width: 100%;
            }

            #gallery05 ul li .thumbnail {
                display: block;
                transition: transform 0.25s ease, z-index 0.25s ease;
            }

            #gallery05 ul li img {
                height: 19rem;
                object-fit: cover;
                object-position: center;
                width: 100%;
            }

            #gallery05 ul li .thumbnail:hover {
                transform: scale(1.2);
                z-index: 1;
            }

            #gallery05 ul li .n01 img {
                object-position: center;
            }

            #gallery05 ul li .n02 img {
                object-position: center;
            }

            #gallery05 ul li .n03 img {
                object-position: center;
            }

            #gallery02 {
                text-align: center;
            }

            #gallery02 .inner {
                max-width: 52rem;
                width: 100%;
            }

            #gallery02 ul {
                justify-content: center;
                --gap: 0.625rem;
                gap: var(--gap);
            }

            #gallery02 ul li {
                border-radius: 0.25rem;
                display: inline-block;
                flex-grow: 1;
                flex-shrink: 0;
                flex-basis: calc(33.333333333333% - var(--gap));
            }

            #gallery02 ul li .frame {
                border-radius: 0.25rem;
                box-shadow: 0rem 0rem 0.25rem 0rem #FFFFFF;
                width: 100%;
            }

            #gallery02 ul li .thumbnail {
                display: block;
                transition: transform 0.25s ease, z-index 0.25s ease;
            }

            #gallery02 ul li img {
                height: 19rem;
                object-fit: cover;
                object-position: center;
                width: 100%;
            }

            #gallery02 ul li .thumbnail:hover {
                transform: scale(1.2);
                z-index: 1;
            }

            #gallery02 ul li .n01 img {
                object-position: center;
            }

            #gallery02 ul li .n02 img {
                object-position: center;
            }

            #gallery02 ul li .n03 img {
                object-position: center;
            }

            #gallery04 {
                text-align: center;
            }

            #gallery04 .inner {
                max-width: 52rem;
                width: 100%;
            }

            #gallery04 ul {
                justify-content: center;
                --gap: 0.625rem;
                gap: var(--gap);
            }

            #gallery04 ul li {
                border-radius: 0.25rem;
                display: inline-block;
                flex-grow: 1;
                flex-shrink: 0;
                flex-basis: calc(33.333333333333% - var(--gap));
            }

            #gallery04 ul li .frame {
                border-radius: 0.25rem;
                box-shadow: 0rem 0rem 0.25rem 0rem #FFFFFF;
                width: 100%;
            }

            #gallery04 ul li .thumbnail {
                display: block;
                transition: transform 0.25s ease, z-index 0.25s ease;
            }

            #gallery04 ul li img {
                height: 19rem;
                object-fit: cover;
                object-position: center;
                width: 100%;
            }

            #gallery04 ul li .thumbnail:hover {
                transform: scale(1.2);
                z-index: 1;
            }

            #gallery04 ul li .n01 img {
                object-position: center;
            }

            #gallery04 ul li .n02 img {
                object-position: center;
            }

            #gallery04 ul li .n03 img {
                object-position: center;
            }

            #gallery03 {
                text-align: center;
            }

            #gallery03 .inner {
                max-width: 52rem;
                width: 100%;
            }

            #gallery03 ul {
                justify-content: center;
                --gap: 0.625rem;
                gap: var(--gap);
            }

            #gallery03 ul li {
                border-radius: 0.25rem;
                display: inline-block;
                flex-grow: 1;
                flex-shrink: 0;
                flex-basis: calc(33.333333333333% - var(--gap));
            }

            #gallery03 ul li .frame {
                border-radius: 0.25rem;
                box-shadow: 0rem 0rem 0.25rem 0rem #FFFFFF;
                width: 100%;
            }

            #gallery03 ul li .thumbnail {
                display: block;
                transition: transform 0.25s ease, z-index 0.25s ease;
            }

            #gallery03 ul li img {
                height: 19rem;
                object-fit: cover;
                object-position: center;
                width: 100%;
            }

            #gallery03 ul li .thumbnail:hover {
                transform: scale(1.2);
                z-index: 1;
            }

            #gallery03 ul li .n01 img {
                object-position: center;
            }

            #gallery03 ul li .n02 img {
                object-position: center;
            }

            #gallery03 ul li .n03 img {
                object-position: center;
            }

            #gallery06 {
                text-align: center;
            }

            #gallery06 .inner {
                max-width: 52rem;
                width: 100%;
            }

            #gallery06 ul {
                justify-content: center;
                --gap: 0.625rem;
                gap: var(--gap);
            }

            #gallery06 ul li {
                border-radius: 0.25rem;
                display: inline-block;
                flex-grow: 1;
                flex-shrink: 0;
                flex-basis: calc(33.333333333333% - var(--gap));
            }

            #gallery06 ul li .frame {
                border-radius: 0.25rem;
                box-shadow: 0rem 0rem 0.25rem 0rem #FFFFFF;
                width: 100%;
            }

            #gallery06 ul li .thumbnail {
                display: block;
                transition: transform 0.25s ease, z-index 0.25s ease;
            }

            #gallery06 ul li img {
                height: 19rem;
                object-fit: cover;
                object-position: center;
                width: 100%;
            }

            #gallery06 ul li .thumbnail:hover {
                transform: scale(1.2);
                z-index: 1;
            }

            #gallery06 ul li .n01 img {
                object-position: center;
            }

            #gallery06 ul li .n02 img {
                object-position: center;
            }

            #gallery06 ul li .n03 img {
                object-position: center;
            }

            .list {
                display: block;
            }

            .list ul, .list ol {
                display: inline-block;
                max-width: 100%;
                text-align: var(--site-language-alignment);
                vertical-align: middle;
            }

            .list ul li, .list ol li {
                direction: var(--site-language-direction);
                display: flex;
                position: relative;
            }

            .list ul li:before, .list ol li:before {
                background-repeat: no-repeat;
                content: '';
                display: block;
                flex-grow: 0;
                flex-shrink: 0;
                font-variant: normal !important;
                letter-spacing: 0 !important;
                order: 1;
                position: relative;
            }

            .list ul li:after, .list ol li:after {
                content: '';
                display: block;
                flex-grow: 0;
                flex-shrink: 0;
                order: 2;
                pointer-events: none;
            }

            .list ul li p, .list ol li p {
                flex-grow: 1;
                flex-shrink: 1;
                order: 3;
            }

            .list ul li:first-child, .list ol li:first-child {
                margin-top: 0 !important;
            }

            #list05 {
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.75em;
                line-height: 1.5;
                font-weight: 400;
            }

            #list05 a {
                text-decoration: underline;
            }

            #list05 a:hover {
                text-decoration: none;
            }

            #list05 ul {
                width: 100%;
            }

            #list05 ul li {
                margin-top: 0.5rem;
            }

            #list05 ul li:after {
                width: 0.5rem;
            }

            #list05 ul li:before {
                background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cpolygon%20points%3D%2220%2C1%2027%2C12.3%2040%2C15.5%2031.4%2C25.7%2032.4%2C39%2020%2C34%207.6%2C39%208.6%2C25.7%200%2C15.5%2013%2C12.3%22%20fill%3D%22%23FFFA7D%22%20%2F%3E%3C%2Fsvg%3E');
                border-radius: 2rem;
                background-position: left 60%;
                background-repeat: no-repeat;
                background-size: contain;
                height: 1.125rem;
                line-height: 1.125rem;
                min-width: 0.65625rem;
            }

            #list02 {
                color: #CCCCCC;
                font-family: 'Montserrat', sans-serif;
                font-size: 0.75em;
                line-height: 1.5;
                font-weight: 400;
            }

            #list02 u {
                text-decoration: none;
                box-shadow: 0 0.125em 0 0 #CCCCCC;
            }

            #list02 a {
                text-decoration: underline;
            }

            #list02 a:hover {
                text-decoration: none;
            }

            #list02 ul {
                width: 100%;
            }

            #list02 ul li {
                margin-top: 0.5rem;
            }

            #list02 ul li:after {
                width: 0.5rem;
            }

            #list02 ul li:before {
                background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cpolygon%20points%3D%2220%2C1%2027%2C12.3%2040%2C15.5%2031.4%2C25.7%2032.4%2C39%2020%2C34%207.6%2C39%208.6%2C25.7%200%2C15.5%2013%2C12.3%22%20fill%3D%22%23FFFA7D%22%20%2F%3E%3C%2Fsvg%3E');
                border-radius: 2rem;
                background-position: left 60%;
                background-repeat: no-repeat;
                background-size: contain;
                height: 1.125rem;
                line-height: 1.125rem;
                min-width: 0.52734375rem;
            }

            .icons {
                display: flex;
                flex-wrap: wrap;
                justify-content: var(--flex-alignment);
                letter-spacing: 0;
                padding: 0;
            }

            .icons li {
                position: relative;
                z-index: 1;
            }

            .icons li a {
                align-items: center;
                display: flex;
                justify-content: center;
            }

            .icons li a svg {
                display: block;
                pointer-events: none;
                position: relative;
            }

            .icons li a + svg {
                display: block;
                height: 100%;
                left: 0;
                pointer-events: none;
                position: absolute;
                top: 0;
                width: 100%;
                z-index: -1;
            }

            .icons li a .label {
                display: none;
            }

            #icons01 {
                justify-content: center;
                font-size: 1.25em;
                gap: 1.75rem;
            }

            #icons01 li a {
                border-radius: 1.5rem;
                height: 2em;
                width: 2em;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }

            #icons01 li a svg {
                height: 60%;
                width: 60%;
                transition: fill 0.25s ease;
            }

            #icons01 a svg {
                fill: #FFFFFF;
            }

            #icons01 a {
                border: solid 2px #6df2fc;
            }

            #icons01 li a + svg {
                transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
            }

            #icons01 li a:hover {
                transform: scale(1.06);
            }

            #icons01 li a:hover + svg {
                transform: scale(1.06);
            }

            #icons01 .n01 svg {
                fill: #55BAE6;
            }

            #icons01 .n01:hover {
                border-color: #FFD600 !important;
            }

            #icons01 .n01:hover svg {
                fill: #FFD600 !important;
            }

            #icons01 .n02 svg {
                fill: #374A7D;
            }

            #icons01 .n02:hover {
                border-color: #FFD600 !important;
            }

            #icons01 .n02:hover svg {
                fill: #FFD600 !important;
            }

            #icons01 .n03 svg {
                fill: #F765AB;
            }

            #icons01 .n03:hover {
                border-color: #FFD600 !important;
            }

            #icons01 .n03:hover svg {
                fill: #FFD600 !important;
            }

            #icons01 .n04 svg {
                fill: #267CE0;
            }

            #icons01 .n04:hover {
                border-color: #FFD600 !important;
            }

            #icons01 .n04:hover svg {
                fill: #FFD600 !important;
            }

            #icons01 .n05 svg {
                fill: #FF7070;
            }

            #icons01 .n05:hover {
                border-color: #FFD600 !important;
            }

            #icons01 .n05:hover svg {
                fill: #FFD600 !important;
            }

            #icons01 .n06:hover {
                border-color: #FFD600 !important;
            }

            #icons01 .n06:hover svg {
                fill: #FFD600 !important;
            }

            #icons01 .n07 svg {
                fill: #E3714D;
            }

            #icons01 .n07:hover {
                border-color: #FFD600 !important;
            }

            #icons01 .n07:hover svg {
                fill: #FFD600 !important;
            }

            #icons01 .n08 svg {
                fill: #FFFFFF;
            }

            #icons01 .n08:hover {
                border-color: #FFD600 !important;
            }

            #icons01 .n08:hover svg {
                fill: #FFD600 !important;
            }


            @media (max-width: 1920px) {
            }

            @media (max-width: 1680px) {
                html {
                    font-size: 17pt;
                }
            } 

            @media (max-width: 1280px) {
                html {
                    font-size: 16pt;
                }
            }

            @media (max-width: 1070px) {
                html {
                    font-size: 15pt;
                }
            }

            @media (max-width: 992px) {
                html {
                    font-size: 15pt;
                }


                /*  */
                #container04 {
                    /* min-height: 33rem; */
                    max-height: 33rem;
                }

                /*  */
                #container04 > .wrapper > .inner {
                    padding-left: 6%;
                    padding-right: 3%;
                    --gutters: 0.55rem;
                    padding-bottom: 20%;
                    padding-top:45%;
                }

                /*  */
                #image04 .frame {
                    /* height: 6.625rem !important; */
                    /* height: 7rem !important; */
                    /* width: 7rem !important; */
                    /* width:100%; */
                    /* height:100%; */
                    width:100%;
                    max-height: 13rem;
                }
                /*  */
                #container07 {
                    min-height: 35rem;
                }

                /*  */
                #container07 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:15%;
                    padding-right:15%;
                    padding-top: 5%;
                    padding-bottom: 0%;
                }

                /*  */
                #container98 {
                    min-height: 35rem;
                }

                /*  */
                #container98 > .wrapper > .inner {
                    --gutters: 1.5rem;
                    padding-left:15%;
                    padding-right:15%;
                    padding-top: 18%;
                    padding-bottom: 0%;
                }

                /*  */
                #image05 .frame {
                    /* width:100%; */
                    /* height:100%; */
                    max-height: 18rem;
                    max-width: 11rem;
                }

                /*  */
                #text07 {
                    font-size: 11.5pt;
                }
                #text98 {
                    font-size: 11.5pt;
                }
                #image02 .frame {
                    width: 23.625rem;
                    height: 1.3rem !important;
                }

                #image01 .frame {
                    width: 33rem;
                    height: 6.71875rem !important;
                }
                #image03 .frame {
                    width: 23.625rem;
                    height: 1.3rem !important;
                }
                #image08 .frame {
                    width: 23.625rem;
                    height: 1.3rem !important;
                }
                #image09 .frame {
                    width: 23.625rem;
                    height: 1.3rem !important;
                }
                #image10 .frame {
                    width: 23.625rem;
                    height: 1.3rem !important;
                }
                #image11 .frame {
                    width: 23.625rem;
                    height: 1.3rem !important;
                }
                #image06 .frame {
                    width: 23.625rem;
                    height: 1.3rem !important;
                }
            }

            @media (max-width: 910px){
                /*  */
                #container04 > .wrapper > .inner {
                    padding-left: 3%;
                    padding-right: 3%;
                    --gutters: 0.55rem;
                    padding-bottom: 20%;
                    padding-top:45%;
                }
            }

            @media (max-width: 875px){
                /*  */
                #container04 {
                    /* min-height: 33rem; */
                    max-height: 32rem;
                }

                /*  */
                #container04 > .wrapper > .inner {
                    padding-left: 3%;
                    padding-right: 3%;
                    --gutters: 0.55rem;
                    padding-bottom: 20%;
                    padding-top:45%;
                }

                /*  */
                #image04 .frame {
                    /* height: 6.625rem !important; */
                    /* height: 7rem !important; */
                    /* width: 7rem !important; */
                    /* width:100%; */
                    /* height:100%; */
                    max-height: 12rem;
                }
            }

            @media (max-width: 768px) {
                html {
                    font-size: 15pt;
                }

                #wrapper {
                    padding: 0.25rem 0.25rem 0.25rem 0.25rem;
                }

                #main > .inner {
                    --padding-horizontal: 0.5rem;
                    --padding-vertical: 0.625rem;
                    --spacing: 0rem;
                }

                #main > .inner > * > .full {
                    margin-left: calc(-0.5rem);
                    max-width: calc(100% + 1rem + 0.4725px);
                    width: calc(100% + 1rem + 0.4725px);
                }

                #main > .inner > * > .full.screen {
                    margin-left: -50vw;
                }

                #main > .inner > header > .full:first-child {
                    margin-top: -0.625rem !important;
                }

                #main > .inner > footer > .full:last-child {
                    margin-bottom: -0.625rem !important;
                }

                #buttons01 {
                    gap: 0.5rem;
                }

                #buttons01 li a {
                    letter-spacing: 0rem;
                    font-size: 0.625em;
                }

                #buttons01 li a svg {
                    width: 1em;
                }

                #buttons06 {
                    gap: 0.5rem;
                }

                #buttons06:not(:first-child) {
                    margin-top: 0.46875rem !important;
                }

                #buttons06:not(:last-child) {
                    margin-bottom: 0.46875rem !important;
                }

                #buttons06 li a {
                    letter-spacing: 0rem;
                    font-size: 0.625em;
                }

                #buttons06 li a svg {
                    width: 0.875em;
                }
                /*  */
                #buttons98 {
                    gap: 0.5rem;
                }

                #buttons98:not(:first-child) {
                    margin-top: 0.46875rem !important;
                }

                #buttons98:not(:last-child) {
                    margin-bottom: 0.46875rem !important;
                }

                #buttons98 li a {
                    letter-spacing: 0rem;
                    font-size: 0.625em;
                }

                #buttons98 li a svg {
                    width: 0.875em;
                }

                #buttons02 {
                    gap: 0.5rem;
                }

                #buttons02 li a {
                    letter-spacing: 0rem;
                    font-size: 0.625em;
                }

                #buttons02 li a svg {
                    width: 0.875em;
                }

                #buttons03 {
                    gap: 0.5rem;
                }

                #buttons03 li a {
                    letter-spacing: 0rem;
                    font-size: 0.625em;
                }

                #buttons03 li a svg {
                    width: 0.875em;
                }

                #container02 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    --padding-horizontal: 0.5rem;
                    --padding-vertical: 0.75rem;
                    --spacing: 0.75rem;
                }

                /*  */
                #container04 {
                    min-height: 18rem;
                    max-height:29rem;
                }

                /*  */
                #container04 > .wrapper > .inner {
                    padding-left: 1%;
                    padding-right: 3%;
                    --gutters: 0.55rem;
                    padding-bottom: 20%;
                    padding-top:47%;
                }

                /*  */
                #image04 .frame {
                    /* height: 6.625rem !important; */
                    /* height: 7rem !important; */
                    /* width: 7rem !important; */
                    /* width:100%; */
                    /* height:100%; */
                    width:100%;
                    /* height:100%; */
                    max-height: 12rem;
                }

                #container04.columns > .wrapper > .inner > .full {
                    min-height: calc(19rem - (var(--padding-vertical) * 2));
                }

                #container04 > .wrapper > .inner > :nth-child(1) {
                    --alignment: center;
                    --flex-alignment: center;
                    --indent-left: 1;
                    --indent-right: 1;
                    --margin-left: auto;
                    --margin-right: auto;
                }

                #container04 > .wrapper > .inner > :nth-child(2) {
                    --alignment: center;
                    --flex-alignment: center;
                    --indent-left: 1;
                    --indent-right: 1;
                    --margin-left: auto;
                    --margin-right: auto;
                }

                /*  */
                #container07 {
                    min-height: 32rem;
                }

                /*  */
                #container07 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:15%;
                    padding-right:16%;
                    padding-top: 12%;
                    padding-bottom: 0%;
                }

                #container07.columns > .wrapper > .inner > .full {
                    min-height: calc(19rem - (var(--padding-vertical) * 2));
                }

                /*  */
                #container98 {
                    min-height: 32rem;
                }

                /*  */
                #container98 > .wrapper > .inner {
                    --gutters: 1rem;
                    padding-left:15%;
                    padding-right:16%;
                    padding-top: 18%;
                    padding-bottom: 0%;
                }

                #container98.columns > .wrapper > .inner > .full {
                    min-height: calc(19rem - (var(--padding-vertical) * 2));
                }

                /*  */
                #image05 .frame {
                    /* width:100%; */
                    /* height:100%; */
                    max-height: 15rem;
                    max-width: 10rem;
                }

                

                #container05 {
                    min-height: 31.5rem;
                }

                #container05 > .wrapper > .inner {
                    --gutters: 1rem;
                    --padding-horizontal: 0.5rem;
                    --padding-vertical: 0rem;
                }

                #container05.columns > .wrapper > .inner > .full {
                    min-height: calc(31.5rem - (var(--padding-vertical) * 2));
                }

                #container06 > .wrapper > .inner {
                    --gutters: 1rem;
                    --padding-horizontal: 0.75rem;
                    --padding-vertical: 0.75rem;
                }

                #container09 > .wrapper > .inner {
                    --gutters: 1rem;
                    --padding-horizontal: 0rem;
                    --padding-vertical: 0.75rem;
                }

                #container08 > .wrapper > .inner {
                    --gutters: 1rem;
                    --padding-horizontal: 0rem;
                    --padding-vertical: 0.375rem;
                    --spacing: 0.375rem;
                }

                #container01 > .wrapper > .inner {
                    --gutters: 1rem;
                    --padding-horizontal: 0rem;
                    --padding-vertical: 0.75rem;
                }

                #container03 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    --padding-horizontal: 1.25rem;
                    --padding-vertical: 0.25rem;
                    --spacing: 1rem;
                }

                #image03 .frame {
                    width: 16.625rem;
                    height: 1.375rem !important;
                }

                #image03 img {
                    height: 100% !important;
                    object-fit: cover;
                    object-position: center;
                    width: 100% !important;
                }

                /* #image05 .frame {
                    width: 6.125rem;
                    height: 10rem !important;
                }

                #image05 img {
                    height: 100% !important;
                    object-fit: cover;
                    object-position: center;
                    width: 100% !important;
                } */

                #image08:not(:first-child) {
                    margin-top: 0.375rem !important;
                }

                #image08:not(:last-child) {
                    margin-bottom: 0.375rem !important;
                }

                #image08 .frame {
                    width: 16.625rem;
                    height: 1.375rem !important;
                }

                #image08 img {
                    height: 100% !important;
                    object-fit: cover;
                    object-position: center;
                    width: 100% !important;
                }

                #image11:not(:first-child) {
                    margin-top: 0.375rem !important;
                }

                #image11:not(:last-child) {
                    margin-bottom: 0.375rem !important;
                }

                #image11 .frame {
                    width: 16.625rem;
                    height: 1.375rem !important;
                }

                #image11 img {
                    height: 100% !important;
                    object-fit: cover;
                    object-position: center;
                    width: 100% !important;
                }

                #image10:not(:first-child) {
                    margin-top: 0.375rem !important;
                }

                #image10:not(:last-child) {
                    margin-bottom: 0.375rem !important;
                }

                #image10 .frame {
                    width: 16.625rem;
                    height: 1.375rem !important;
                }

                #image10 img {
                    height: 100% !important;
                    object-fit: cover;
                    object-position: center;
                    width: 100% !important;
                }

                #image09:not(:first-child) {
                    margin-top: 0.375rem !important;
                }

                #image09:not(:last-child) {
                    margin-bottom: 0.375rem !important;
                }

                #image09 .frame {
                    width: 16.625rem;
                    height: 1.375rem !important;
                }

                #image09 img {
                    height: 100% !important;
                    object-fit: cover;
                    object-position: center;
                    width: 100% !important;
                }

                #image06:not(:first-child) {
                    margin-top: 0.375rem !important;
                }

                #image06:not(:last-child) {
                    margin-bottom: 0.375rem !important;
                }

                #image06 .frame {
                    width: 16.625rem;
                    height: 1.375rem !important;
                }

                #image06 img {
                    height: 100% !important;
                    object-fit: cover;
                    object-position: center;
                    width: 100% !important;
                }

                #image02 .frame {
                    width: 16.625rem;
                    height: 1.375rem !important;
                }

                #image02 img {
                    height: 100% !important;
                    object-fit: cover;
                    object-position: center;
                    width: 100% !important;
                }

                #image01 .frame {
                    width: 26rem;
                    height: 6.71875rem !important;
                }

                #image01 img {
                    height: 100% !important;
                    object-fit: cover;
                    object-position: center;
                    width: 100% !important;
                }

                #header {
                    margin-bottom: 0.1875rem !important;
                }

                #footer {
                    margin-top: 0.1875rem !important;
                }

                #text12:not(:first-child) {
                    margin-top: 0rem !important;
                }

                #text12:not(:last-child) {
                    margin-bottom: 0rem !important;
                }

                #text12 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 0.5em;
                    line-height: 0.75;
                }

                #text04:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text04:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text04 {
                    letter-spacing: 0.153125rem;
                    width: calc(100% + 0.153125rem);
                    font-size: 0.625em;
                    line-height: 0.75;
                }

                #text02:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text02:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text02 {
                    letter-spacing: 0.153125rem;
                    width: calc(100% + 0.153125rem);
                    font-size: 0.75em;
                    line-height: 0.75;
                }

                #text06:not(:first-child) {
                    margin-top: 0rem !important;
                }

                #text06:not(:last-child) {
                    margin-bottom: 0rem !important;
                }

                #text06 {
                    letter-spacing: 0.15rem;
                    width: calc(100% + 0.15rem);
                    font-size: 0.5em;
                    line-height: 0.75;
                }

                #text07:not(:first-child) {
                    margin-top: 0.28125rem !important;
                }

                #text07:not(:last-child) {
                    margin-bottom: 0.28125rem !important;
                }

                #text07 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 0.8em;
                    line-height: 1;
                }
                
                #text98:not(:first-child) {
                    margin-top: 0.28125rem !important;
                }

                #text98:not(:last-child) {
                    margin-bottom: 0.28125rem !important;
                }

                #text98 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 0.8em;
                    line-height: 1;
                }

                #text01:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text01:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text01 {
                    letter-spacing: 0.153125rem;
                    width: calc(100% + 0.153125rem);
                    font-size: 1em;
                    line-height: 1.5;
                }

                #text11:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text11:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text11 {
                    letter-spacing: 0.153125rem;
                    width: calc(100% + 0.153125rem);
                    font-size: 1em;
                    line-height: 1.5;
                }

                #text13:not(:first-child) {
                    margin-top: 0.28125rem !important;
                }

                #text13:not(:last-child) {
                    margin-bottom: 0.28125rem !important;
                }

                #text13 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 0.5em;
                    line-height: 1.25;
                }

                #text16:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text16:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text16 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 0.8em;
                    line-height: 1.75;
                }

                #text09:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text09:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text09 {
                    letter-spacing: 0.025rem;
                    width: calc(100% + 0.025rem);
                    font-size: 0.8em;
                    line-height: 1.75;
                }

                #text18:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text18:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text18 {
                    letter-spacing: 0.025rem;
                    width: calc(100% + 0.025rem);
                    font-size: 0.8em;
                    line-height: 1.75;
                }

                #text19:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text19:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text19 {
                    letter-spacing: 0.05rem;
                    width: calc(100% + 0.05rem);
                    font-size: 0.8em;
                    line-height: 1.75;
                }

                #text17:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text17:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text17 {
                    letter-spacing: 0.025rem;
                    width: calc(100% + 0.025rem);
                    font-size: 0.8em;
                    line-height: 1.75;
                }

                #text14:not(:first-child) {
                    margin-top: 0.28125rem !important;
                }

                #text14:not(:last-child) {
                    margin-bottom: 0.28125rem !important;
                }

                #text14 {
                    padding-left: 1.5rem;
                    padding-right: 0;
                    letter-spacing: 0.109375rem;
                    width: calc(100% + 0.109375rem);
                    font-size: 0.8em;
                    line-height: 1;
                }

                #text08:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text08:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text08 {
                    letter-spacing: 0.153125rem;
                    width: calc(100% + 0.153125rem);
                    font-size: 1em;
                    line-height: 1.5;
                }

                #text05:not(:first-child) {
                    margin-top: 0.5625rem !important;
                }

                #text05:not(:last-child) {
                    margin-bottom: 0.5625rem !important;
                }

                #text05 {
                    letter-spacing: 0.153125rem;
                    width: calc(100% + 0.153125rem);
                    font-size: 1em;
                    line-height: 1.125;
                }

                #table02 th {
                    letter-spacing: 0.175rem;
                    font-size: 1.25em;
                    line-height: 1.5;
                }

                #table02 td {
                    letter-spacing: 0.04375rem;
                    font-size: 1em;
                    line-height: 1.5;
                }

                #table02 th, #table02 td {
                    padding: 0.125rem 0.171875rem;
                }

                #gallery01 ul li {
                    flex-basis: calc(50% - var(--gap));
                }

                #gallery01 ul li img {
                    height: 24.5rem;
                    width: 100%;
                }

                #gallery01 ul {
                    --gap: 1.125rem;
                }

                #gallery05 ul li {
                    flex-basis: calc(30% - var(--gap));
                }

                #gallery05 ul li img {
                    height: 12.5rem;
                    width: 100%;
                }

                #gallery05 ul {
                    --gap: 1.125rem;
                }

                #gallery02 ul li {
                    flex-basis: calc(30% - var(--gap));
                }

                #gallery02 ul li img {
                    height: 12.5rem;
                    width: 100%;
                }

                #gallery02 ul {
                    --gap: 1.125rem;
                }

                #gallery04 ul li {
                    flex-basis: calc(30% - var(--gap));
                }

                #gallery04 ul li img {
                    height: 12.5rem;
                    width: 100%;
                }

                #gallery04 ul {
                    --gap: 1.125rem;
                }

                #gallery03 ul li {
                    flex-basis: calc(30% - var(--gap));
                }

                #gallery03 ul li img {
                    height: 12.5rem;
                    width: 100%;
                }

                #gallery03 ul {
                    --gap: 1.125rem;
                }

                #gallery06 ul li {
                    flex-basis: calc(30% - var(--gap));
                }

                #gallery06 ul li img {
                    height: 12.5rem;
                    width: 100%;
                }

                #gallery06 ul {
                    --gap: 1.125rem;
                }

                #list05 {
                    letter-spacing: 0rem;
                    font-size: 0.8em;
                    line-height: 1;
                }

                #list05 ul li:after {
                    width: 0.5rem;
                }

                #list05 ul li:before {
                    height: 0.5rem;
                    line-height: 0.5rem;
                    min-width: 0.375rem;
                }

                #list02 {
                    letter-spacing: 0rem;
                    font-size: 0.8em;
                    line-height: 1;
                }

                #list02 ul li:after {
                    width: 0.5rem;
                }

                #list02 ul li:before {
                    height: 0.5rem;
                    line-height: 0.5rem;
                    min-width: 0.375rem;
                }

                #icons01 {
                    font-size: 0.9em;
                    gap: 0.75rem;
                    
                }

                #icons01:not(:first-child) {
                    margin-top: 0.625rem !important;
                }

                #icons01:not(:last-child) {
                    margin-bottom: 0.625rem !important;
                }
            }
            
            @media (max-width:686px){
                #buttons01 li a {
                    letter-spacing: 0rem;
                    font-size: 0.5em;
                }
                /*  */
                #container07 {
                    min-height: 32rem;
                }

                /*  */
                #container07 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:11%;
                    padding-right:15%;
                    padding-top: 11%;
                    padding-bottom: 0%;
                }

                /*  */
                #container98 {
                    min-height: 32rem;
                }

                /*  */
                #container98 > .wrapper > .inner {
                    --gutters: 1rem;
                    padding-left:11%;
                    padding-right:15%;
                    padding-top: 19%;
                    padding-bottom: 0%;
                }

                /*  */
                #image05 .frame {
                    /* width:100%; */
                    /* height:100%; */
                    max-height: 14rem;
                    max-width: 9rem;
                }

                /*  */
                #text07 {
                    font-size: 11.5pt;
                }
                 #text98 {
                    font-size: 11.5pt;
                }
                /*  */
                #container04 {
                    min-height: 18rem;
                    max-height: 26rem;
                }

                /*  */
                #container04 > .wrapper > .inner {
                    padding-left: 2%;
                    padding-right: 3%;
                    --gutters: 0.55rem;
                    padding-bottom: 20%;
                    padding-top:45%;
                }

                /*  */
                #image04 .frame {
                    /* height: 6.625rem !important; */
                    /* height: 7rem !important; */
                    /* width: 7rem !important; */
                    /* width:100%; */
                    /* height:100%; */
                    width:100%;
                    /* height:100%; */
                    max-height: 9.5rem;
                }
                #gallery01 ul li img {
                    height: 22rem;
                    width: 100%;
                }
            }

            @media (max-width: 601px) {
                html {
                    font-size: 15pt;
                }

                #icons01 {   
                    padding-left:1.9rem;
                    padding-right: 1.9rem;
                }

                /*  */
                #container04 {
                    min-height: 18rem;
                    max-height: 24rem;
                }

                /*  */
                #container04 > .wrapper > .inner {
                    padding-left: 2%;
                    padding-right: 3%;
                    --gutters: 0.55rem;
                    padding-bottom: 20%;
                    padding-top:45%;
                }

                /*  */
                #image04 .frame {
                    /* height: 6.625rem !important; */
                    /* height: 7rem !important; */
                    /* width: 7rem !important; */
                    /* width:100%; */
                    /* height:100%; */
                    width:100%;
                    /* height:100%; */
                    max-height: 9rem;
                }

                /*  */
                #container07 {
                    min-height: 28rem;
                }

                /*  */
                #container07 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:15%;
                    padding-right:16%;
                    padding-top: 11%;
                    padding-bottom: 0%;
                }

                /*  */
                #container98 {
                    min-height: 28rem;
                }

                /*  */
                #container98 > .wrapper > .inner {
                    --gutters: 1rem;
                    padding-left:15%;
                    padding-right:16%;
                    padding-top: 18%;
                    padding-bottom: 0%;
                }

                /*  */
                #image05 .frame {
                    /* width:100%; */
                    /* height:100%; */
                    /* max-height: 11rem;
                    max-width: 11rem;
                    width:7.5rem; */
                    width:100%;
                    max-height: 13rem;
                }

                /*  */
                #text07 {
                    font-size: 11.5pt;
                }
                #text98 {
                    font-size: 11.5pt;
                }

                #image02 .frame {
                    width: 14.625rem;
                    height: 1.3rem !important;
                }

                #image01 .frame {
                    width: 24rem;
                    height: 6.71875rem !important;
                }
                #image03 .frame {
                    width: 14.625rem;
                    height: 1.3rem !important;
                }
                #table02 th {
                    font-size: 1em;
                }

                #table02 td {
                    font-size: 0.75em;
                }
                #image08 .frame {
                    width: 14.625rem;
                    height: 1.3rem !important;
                }
                #image09 .frame {
                    width: 14.625rem;
                    height: 1.3rem !important;
                }
                #image10 .frame {
                    width: 14.625rem;
                    height: 1.3rem !important;
                }
                #image11 .frame {
                    width: 14.625rem;
                    height: 1.3rem !important;
                }
                #image06 .frame {
                    width: 14.625rem;
                    height: 1.3rem !important;
                }
            }

            @media (max-width: 540px){
                /*  */
                #container07 {
                    min-height: 25rem;
                }

                /*  */
                #container07 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:13%;
                    padding-right:16%;
                    padding-top: 9%;
                    padding-bottom: 0%;
                }

                /*  */
                #container98 {
                    min-height: 25rem;
                }

                /*  */
                #container98 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:13%;
                    padding-right:16%;
                    padding-top: 18%;
                    padding-bottom: 0%;
                }

                /*  */
                #image05 .frame {
                    /* width:100%; */
                    /* height:100%; */
                    max-height: 11rem;
                    max-width: 11rem;
                }

                /*  */
                #text07 {
                    font-size: 9.5pt;
                }
                #text98 {
                    font-size: 9.5pt;
                }
                /*  */
                #container04 {
                    min-height: 18rem;
                    max-height: 22rem;
                }

                /*  */
                #container04 > .wrapper > .inner {
                    padding-left: 2%;
                    padding-right: 3%;
                    --gutters: 0.55rem;
                    padding-bottom: 20%;
                    padding-top:45%;
                }

                /*  */
                #image04 .frame {
                    /* height: 6.625rem !important; */
                    /* height: 7rem !important; */
                    /* width: 7rem !important; */
                    /* width:100%; */
                    /* height:100%; */
                    width:100%;
                    /* height:100%; */
                    max-height: 8rem;
                }
                #text16 {
                    font-size: 0.7em;
                }
                #text09 {
                    font-size: 0.7em;
                }
                #text18 {
                    font-size: 0.7em;
                }
                #text19 {
                    font-size: 0.7em;
                }
                #text17 {
                    font-size: 0.7em;
                }
                #list05 {
                    font-size: 0.7em;
                }
                #list02 {
                    font-size: 0.7em;
                }

                #gallery05 ul li img {
                    height: 8rem;
                    width: 100%;
                }
                #gallery02 ul li img {
                    height: 8rem;
                    width: 100%;
                }
                #gallery04 ul li img {
                    height: 8rem;
                    width: 100%;
                }
                #gallery03 ul li img {
                    height: 8rem;
                    width: 100%;
                }
                #gallery06 ul li img {
                    height: 8rem;
                    width: 100%;
                }
                #gallery01 ul li img {
                    height: 16rem;
                    width: 100%;
                }
            }

            @media (max-width: 480px) {
                #wrapper {
                    padding: 0.25rem 0.25rem 0.25rem 0.25rem;
                }

                #main > .inner {
                    --spacing: 0rem;
                }

                #buttons01 li a {
                    width: 5rem;
                }

                #icons01 {
                    font-size: 1em;
                    gap: 1.1rem;
                    padding-left:1.3rem;
                    padding-right: 1.3rem;
                }

                #buttons06 li a {
                    width: 9.25rem;
                }
                #buttons98 li a {
                    width: 9.25rem;
                    font-size: 0.55rem;
                }

                #buttons02 li a {
                    width: 9.25rem;
                }

                #buttons03 li a {
                    width: 9.25rem;
                }

                #container02 > .wrapper > .inner {
                    --spacing: 0.65625rem;
                }

                #container08 > .wrapper > .inner {
                    --spacing: 0.375rem;
                }

                #container03 > .wrapper > .inner {
                    --spacing: 1rem;
                }

                /*  */
                #container04 {
                    min-height: 17rem;
                    max-height: 19rem;
                }

                /*  */
                #container04 > .wrapper > .inner {
                    padding-left: 3%;
                    padding-right: 3%;
                    --gutters: 0.55rem;
                    padding-bottom: 20%;
                    padding-top:45%;
                }

                /*  */
                #image04 .frame {
                    /* height: 6.625rem !important; */
                    /* height: 7rem !important; */
                    /* width: 7rem !important; */
                    width:100%;
                    /* height:100%; */
                    max-height: 7rem;
                }

                /*  */
                #container07 {
                    min-height: 22rem;
                }

                /*  */
                #container07 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:14%;
                    padding-right:16%;
                    padding-top: 7%;
                    padding-bottom: 0%;
                }

                /*  */
                #container98 {
                    min-height: 22rem;
                }

                /*  */
                #container98 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:14%;
                    padding-right:16%;
                    padding-top: 19%;
                    padding-bottom: 0%;
                }

                /*  */
                #image05 .frame {
                    /* width:100%; */
                    /* height:100%; */
                    max-height: 9.5rem;
                    max-width: 6rem;
                }

                /*  */
                #text07 {
                    font-size: 8.5pt;
                }
                #text98 {
                    font-size: 8.5pt;
                }

                #image02 .frame {
                    width: 12.625rem;
                    height: 1rem !important;
                }

                #image01 .frame {
                    width: 19rem;
                    height: 5.51875rem !important;
                }
                #image03 .frame {
                    width: 12.625rem;
                    height: 1rem !important;
                }
                #table02 th {
                    font-size: 0.75em;
                }

                #table02 td {
                    font-size: 0.5em;
                }
                #image08 .frame {
                    width: 12.625rem;
                    height: 1rem !important;
                }
                #image09 .frame {
                    width: 12.625rem;
                    height: 1rem !important;
                }
                #image10 .frame {
                    width: 12.625rem;
                    height: 1rem !important;
                }
                #image11 .frame {
                    width: 12.625rem;
                    height: 1rem !important;
                }
                #image06 .frame {
                    width: 12.625rem;
                    height: 1rem !important;
                }
            }

            @media (max-width: 421px){
                #text16 {
                    font-size: 0.6em;
                }
                #text09 {
                    font-size: 0.6em;
                }
                #text18 {
                    font-size: 0.6em;
                }
                #text19 {
                    font-size: 0.6em;
                }
                #text17 {
                    font-size: 0.6em;
                }
                #list05 {
                    font-size: 0.6em;
                }
                #list02 {
                    font-size: 0.6em;
                }

                /*  */
                #container07 {
                    min-height: 21rem;
                }

                /*  */
                #container07 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:12%;
                    padding-right:15%;
                    padding-top: 7%;
                    padding-bottom: 0%;
                }

                /*  */
                #container98 {
                    min-height: 21rem;
                }

                /*  */
                #container98 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:12%;
                    padding-right:15%;
                    padding-top: 19%;
                    padding-bottom: 0%;
                }

                /*  */
                #image05 .frame {
                    /* width:100%; */
                    /* height:100%; */
                    max-height: 8.5rem;
                    max-width: 5rem;
                }

                /*  */
                #text07 {
                    font-size: 7.8pt;
                }
                #text98 {
                    font-size: 7.8pt;
                }
                #image02 .frame {
                    width: 10.625rem;
                    height: 0.8rem !important;
                }

                #image01 .frame {
                    width: 19rem;
                    height: 4.31875rem !important;
                }
                #image03 .frame {
                    width: 10.625rem;
                    height: 0.8rem !important;
                }

                #image08 .frame {
                    width: 10.625rem;
                    height: 0.8rem !important;
                }
                #image09 .frame {
                    width: 10.625rem;
                    height: 0.8rem !important;
                }
                #image10 .frame {
                    width: 10.625rem;
                    height: 0.8rem !important;
                }
                #image11 .frame {
                    width: 10.625rem;
                    height: 0.8rem !important;
                }
                #image06 .frame {
                    width: 10.625rem;
                    height: 0.8rem !important;
                }
                
                #container04 {
                    min-height: 16rem;
                }

                /*  */
                #container04 > .wrapper > .inner {
                    padding-left: 3%;
                    padding-right: 3%;
                    --gutters: 0.55rem;
                    padding-bottom: 20%;
                    padding-top:45%;
                }

                /*  */
                #image04 .frame {
                    /* height: 6.625rem !important; */
                    /* height: 7rem !important; */
                    /* width: 7rem !important; */
                    width:100%;
                    /* height:100%; */
                    max-height:6.3rem;
                }
                #gallery01 ul li img {
                    height: 12rem;
                    width: 100%;
                }
            }

            @media (max-width: 374px) {
                #wrapper {
                    padding: 0.25rem 0.25rem 0.25rem 0.25rem;
                }

                #main > .inner {
                    --spacing: 0rem;
                }

                #icons01 {
                    font-size: 1em;
                    gap: 1.1rem;
                    padding-left:1rem;
                    padding-right: 1rem;
                }

                #buttons01 li a {
                    width: 1rem;
                }

                #buttons06 li a {
                    width: 9.25rem;
                }
                #buttons98 li a {
                    width: 9.25rem;
                    font-size: 0.5rem;
                }

                #buttons02 li a {
                    width: 9.25rem;
                }

                #buttons03 li a {
                    width: 9.25rem;
                }

                #container02 > .wrapper > .inner {
                    --spacing: 0.65625rem;
                }

                #container08 > .wrapper > .inner {
                    --spacing: 0.375rem;
                }

                #container03 > .wrapper > .inner {
                    --spacing: 1rem;
                }

                

                /*  */
                #container04 {
                    min-height: 16rem;
                }

                /*  */
                #container04 > .wrapper > .inner {
                    padding-left: 3%;
                    padding-right: 3%;
                    --gutters: 0.55rem;
                    padding-bottom: 20%;
                    padding-top:45%;
                }

                /*  */
                #image04 .frame {
                    /* height: 6.625rem !important; */
                    /* height: 7rem !important; */
                    /* width: 7rem !important; */
                    width:100%;
                    /* height:100%; */
                    max-height:5.5rem;
                }

                /*  */
                #container07 {
                    min-height: 18rem;
                }

                /*  */
                #container07 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:14%;
                    padding-right:15%;
                    padding-top: 6%;
                    padding-bottom: 0%;
                }

                /*  */
                #container98 {
                    min-height: 18rem;
                }

                /*  */
                #container98 > .wrapper > .inner {
                    --gutters: 0.5rem;
                    padding-left:14%;
                    padding-right:15%;
                    padding-top: 19%;
                    padding-bottom: 0%;
                }

                /*  */
                #image05 .frame {
                    /* width:100%; */
                    /* height:100%; */
                    max-height: 7.5rem;
                }

                /*  */
                #text07 {
                    font-size: 6.5pt;
                }
                #text98 {
                    font-size: 6.5pt;
                }

                #image02 .frame {
                    width: 9.625rem;
                    height: 0.9rem !important;
                }

                #image01 .frame {
                    width: 17rem;
                    height: 4.01875rem !important;
                }
                #image03 .frame {
                    width: 9.625rem;
                    height: 0.9rem !important;
                }
                #image08 .frame {
                    width: 9.625rem;
                    height: 0.9rem !important;
                }
                #image09 .frame {
                    width: 9.625rem;
                    height: 0.9rem !important;
                }
                #image10 .frame {
                    width: 9.625rem;
                    height: 0.9rem !important;
                }
                #image11 .frame {
                    width: 9.625rem;
                    height: 0.9rem !important;
                }
                #image06 .frame {
                    width: 9.625rem;
                    height: 0.9rem !important;
                }
                
            }