/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    overscroll-behavior: none
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: rgba(0, 0, 0, 0)
}

abbr[title] {
    border-bottom: 0;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1)
    }
    30% {
        transform: scale3d(1.25, 0.75, 1)
    }
    40% {
        transform: scale3d(0.75, 1.25, 1)
    }
    50% {
        transform: scale3d(1.15, 0.85, 1)
    }
    65% {
        transform: scale3d(0.95, 1.05, 1)
    }
    75% {
        transform: scale3d(1.05, 0.95, 1)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    from,
    to {
        transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0 {
        transform: translateX(0)
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        transform: rotate3d(0, 0, 1, 0)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1)
    }
    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    from {
        transform: translate3d(0, 0, 0)
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    from,
    11.1%,
    to {
        transform: translate3d(0, 0, 0)
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes heartBeat {
    0 {
        transform: scale(1)
    }
    14% {
        transform: scale(1.3)
    }
    28% {
        transform: scale(1)
    }
    42% {
        transform: scale(1.3)
    }
    70% {
        transform: scale(1)
    }
}

.heartBeat {
    animation-name: heartBeat;
    animation-duration: 1.3s;
    animation-timing-function: ease-in-out
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0 {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9)
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97)
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1)
    }
}

.bounceIn {
    animation-duration: .75s;
    animation-name: bounceIn
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0 {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }
    75% {
        transform: translate3d(0, -10px, 0)
    }
    90% {
        transform: translate3d(0, 5px, 0)
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0 {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        transform: translate3d(10px, 0, 0)
    }
    90% {
        transform: translate3d(-5px, 0, 0)
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9)
    }
    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }
}

.bounceOut {
    animation-duration: .75s;
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    from {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
        animation-timing-function: ease-in
    }
    to {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY
}

@keyframes flipOutX {
    from {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-duration: .75s;
    animation-name: flipOutX;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    from {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutY {
    animation-duration: .75s;
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    from {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        transform: skewX(-5deg)
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        transform-origin: center;
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    from {
        transform-origin: center;
        opacity: 1
    }
    to {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    from {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    from {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    from {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    from {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0 {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        transform: rotate3d(0, 0, 1, 80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        transform: rotate3d(0, 0, 1, 60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-duration: 2s;
    animation-name: hinge
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom
    }
    50% {
        transform: rotate(-10deg)
    }
    70% {
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }
    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }
    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.delay-1s {
    animation-delay: 1s
}

.animated.delay-2s {
    animation-delay: 2s
}

.animated.delay-3s {
    animation-delay: 3s
}

.animated.delay-4s {
    animation-delay: 4s
}

.animated.delay-5s {
    animation-delay: 5s
}

.animated.fast {
    animation-duration: 800ms
}

.animated.faster {
    animation-duration: 500ms
}

.animated.slow {
    animation-duration: 2s
}

.animated.slower {
    animation-duration: 3s
}

@media(print),
(prefers-reduced-motion:reduce) {
    .animated {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        animation-iteration-count: 1 !important
    }
}

@font-face {
    font-family: "MCQGlobal-Bold";
    src: url("clientlib-site/resources/MCQGlobal-Bold/MCQGlobal_Bd.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Bold/MCQGlobal_W_Bd.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Bold/MCQGlobal_W_Bd.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Display";
    src: url("clientlib-site/resources/MCQGlobal-Display/MCQGlobal_Display.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Display/MCQGlobal_W_Display.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Display/MCQGlobal_W_Display.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Light";
    src: url("clientlib-site/resources/MCQGlobal-Light/MCQGlobal_Lt.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Light/MCQGlobal_W_Lt.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Light/MCQGlobal_W_Lt.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Medium";
    src: url("clientlib-site/resources/MCQGlobal-Medium/MCQGlobal_Md.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Medium/MCQGlobal_W_Md.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Medium/MCQGlobal_W_Md.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Reg-Cond";
    src: url("clientlib-site/resources/MCQGlobal-Reg-Cond/MCQGlobal_CdRg.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Reg-Cond/MCQGlobal_W_CdRg.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Reg-Cond/MCQGlobal_W_CdRg.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Regular";
    src: url("clientlib-site/resources/MCQGlobal-Regular/MCQGlobal_Rg.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Regular/MCQGlobal_W_Rg.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Regular/MCQGlobal_W_Rg.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Bold-DarkBG";
    src: url("clientlib-site/resources/MCQGlobal-Bold/MCQGlobalDark_Bd.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Bold/MCQGlobalDark_W_Bd.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Bold/MCQGlobalDark_W_Bd.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Display-DarkBG";
    src: url("clientlib-site/resources/MCQGlobal-Display/MCQGlobalDark_Display.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Display/MCQGlobalDark_W_Display.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Display/MCQGlobalDark_W_Display.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Light-DarkBG";
    src: url("clientlib-site/resources/MCQGlobal-Light/MCQGlobalDark_Lt.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Light/MCQGlobalDark_W_Lt.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Light/MCQGlobalDark_W_Lt.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Medium-DarkBG";
    src: url("clientlib-site/resources/MCQGlobal-Medium/MCQGlobalDark_Md.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Medium/MCQGlobalDark_W_Md.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Medium/MCQGlobalDark_W_Md.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Reg-Cond-DarkBG";
    src: url("clientlib-site/resources/MCQGlobal-Reg-Cond/MCQGlobalDark_CdRg.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Reg-Cond/MCQGlobalDark_W_CdRg.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Reg-Cond/MCQGlobalDark_W_CdRg.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "MCQGlobal-Regular-DarkBG";
    src: url("clientlib-site/resources/MCQGlobal-Regular/MCQGlobalDark_Rg.ttf") format("truetype"), url("clientlib-site/resources/MCQGlobal-Regular/MCQGlobalDark_W_Rg.woff") format("woff"), url("clientlib-site/resources/MCQGlobal-Regular/MCQGlobalDark_W_Rg.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansJP-Bold";
    src: url("clientlib-site/resources/NotoSans-Bold/NotoSansJP-Bold.woff") format("woff"), url("clientlib-site/resources/NotoSans-Bold/NotoSansJP-Bold.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansJP-Display";
    src: url("clientlib-site/resources/NotoSans-Display/NotoSansJP-Display.woff") format("woff"), url("clientlib-site/resources/NotoSans-Display/NotoSansJP-Display.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansJP-Light";
    src: url("clientlib-site/resources/NotoSans-Light/NotoSansJP-Light.woff") format("woff"), url("clientlib-site/resources/NotoSans-Light/NotoSansJP-Light.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansJP-Medium";
    src: url("clientlib-site/resources/NotoSans-Medium/NotoSansJP-Medium.woff") format("woff"), url("clientlib-site/resources/NotoSans-Medium/NotoSansJP-Medium.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansJP-Reg-Cond";
    font-stretch: condensed;
    src: url("clientlib-site/resources/NotoSans-Regular/NotoSansJP-Regular.woff") format("woff"), url("clientlib-site/resources/NotoSans-Regular/NotoSansJP-Regular.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansJP-Regular";
    src: url("clientlib-site/resources/NotoSans-Regular/NotoSansJP-Regular.woff") format("woff"), url("clientlib-site/resources/NotoSans-Regular/NotoSansJP-Regular.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansKR-Bold";
    src: url("clientlib-site/resources/NotoSans-Bold/NotoSansKR-Bold.woff") format("woff"), url("clientlib-site/resources/NotoSans-Bold/NotoSansKR-Bold.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansKR-Display";
    src: url("clientlib-site/resources/NotoSans-Display/NotoSansKR-Display.woff") format("woff"), url("clientlib-site/resources/NotoSans-Display/NotoSansKR-Display.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansKR-Light";
    src: url("clientlib-site/resources/NotoSans-Light/NotoSansKR-Light.woff") format("woff"), url("clientlib-site/resources/NotoSans-Light/NotoSansKR-Regular.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansKR-Medium";
    src: url("clientlib-site/resources/NotoSans-Medium/NotoSansKR-Medium.woff") format("woff"), url("clientlib-site/resources/NotoSans-Medium/NotoSansKR-Medium.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansKR-Reg-Cond";
    font-stretch: condensed;
    src: url("clientlib-site/resources/NotoSans-Regular/NotoSansKR-Regular.woff") format("woff"), url("clientlib-site/resources/NotoSans-Regular/NotoSansKR-Regular.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansKR-Regular";
    src: url("clientlib-site/resources/NotoSans-Regular/NotoSansKR-Regular.woff") format("woff"), url("clientlib-site/resources/NotoSans-Regular/NotoSansKR-Regular.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansSC-Bold";
    src: url("clientlib-site/resources/NotoSans-Bold/NotoSansSC-Bold.woff") format("woff"), url("clientlib-site/resources/NotoSans-Bold/NotoSansSC-Bold.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansSC-Display";
    src: url("clientlib-site/resources/NotoSans-Display/NotoSansSC-Display.woff") format("woff"), url("clientlib-site/resources/NotoSans-Display/NotoSansSC-Display.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansSC-Light";
    src: url("clientlib-site/resources/NotoSans-Light/NotoSansSC-Light.woff") format("woff"), url("clientlib-site/resources/NotoSans-Light/NotoSansSC-Light.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansSC-Medium";
    src: url("clientlib-site/resources/NotoSans-Medium/NotoSansSC-Medium.woff") format("woff"), url("clientlib-site/resources/NotoSans-Medium/NotoSansSC-Medium.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansSC-Reg-Cond";
    font-stretch: condensed;
    src: url("clientlib-site/resources/NotoSans-Regular/NotoSansSC-Regular.woff") format("woff"), url("clientlib-site/resources/NotoSans-Regular/NotoSansSC-Regular.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "NotoSansSC-Regular";
    src: url("clientlib-site/resources/NotoSans-Regular/NotoSansSC-Regular.woff") format("woff"), url("clientlib-site/resources/NotoSans-Regular/NotoSansSC-Regular.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "macquarie-common";
    src: url("clientlib-site/resources/macquarie-common.eot?zgfka8");
    src: url("clientlib-site/resources/macquarie-common.eot?zgfka8#iefix") format("embedded-opentype"), url("clientlib-site/resources/macquarie-common.ttf?zgfka8") format("truetype"), url("clientlib-site/resources/macquarie-common.woff?zgfka8") format("woff"), url("clientlib-site/resources/macquarie-common.svg?zgfka8#macquarie-common") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block
}

[class^=icon-],
[class*=" icon-"] {
    font-family: "macquarie-common" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-office_mail-3-fill:before {
    content: ""
}

.icon-communication_call-2-fill:before {
    content: ""
}

.icon-arrow-left-right:before {
    content: ""
}

.icon-arrow-up-down:before {
    content: ""
}

.icon-grid:before {
    content: ""
}

.icon-handshake:before {
    content: ""
}

.icon-hierachy:before {
    content: ""
}

.icon-windfarm:before {
    content: ""
}

.icon-arrow-down:before {
    content: ""
}

.icon-arrow-up:before {
    content: ""
}

.icon-eye:before {
    content: ""
}

.icon-list:before {
    content: ""
}

.icon-upload:before {
    content: ""
}

.icon-navigation_back-outline-fill:before {
    content: ""
}

.icon-office_document-pdf-fill:before {
    content: ""
}

.icon-check-line:before {
    content: ""
}

.icon-sort-default-bep:before {
    content: ""
}

.icon-facebook:before {
    content: ""
}

.icon-twitter:before {
    content: ""
}

.icon-login-icon:before {
    content: ""
}

.icon-macqaurie-hamburger:before {
    content: ""
}

.icon-facebook-circle-logo:before {
    content: ""
}

.icon-instagram-logo:before {
    content: ""
}

.icon-linkedin-logo:before {
    content: ""
}

.icon-twitter-circle-logo:before {
    content: ""
}

.icon-youtube:before {
    content: ""
}

.icon-reset:before {
    content: ""
}

.icon-funnel:before {
    content: ""
}

.icon-close:before {
    content: ""
}

.icon-search:before {
    content: ""
}

.icon-external-link:before {
    content: ""
}

.icon-carousel-play:before {
    content: ""
}

.icon-carousel-pause:before {
    content: ""
}

.icon-tick-circle:before {
    content: ""
}

.icon-cancel-circle:before {
    content: ""
}

.icon-dollar:before {
    content: ""
}

.icon-euro:before {
    content: ""
}

.icon-pound:before {
    content: ""
}

.icon-swipe-gesture:before {
    content: ""
}

.icon-dash:before {
    content: ""
}

.icon-star-o:before {
    content: ""
}

.icon-printer:before {
    content: ""
}

.icon-check-o:before {
    content: ""
}

.icon-sort-default:before {
    content: ""
}

.icon-sort-up:before {
    content: ""
}

.icon-sort-down:before {
    content: ""
}

.icon-mail:before {
    content: ""
}

.icon-wechat:before {
    content: ""
}

.icon-globe:before {
    content: ""
}

.icon-copy-link:before {
    content: ""
}

.icon-warning:before {
    content: ""
}

.icon-info:before {
    content: ""
}

.icon-play:before,
.cmp-carousel__action--play .cmp-carousel__action-icon:before {
    content: ""
}

.icon-pause:before,
.cmp-carousel__action--pause .cmp-carousel__action-icon:before {
    content: ""
}

.icon-arrow-right:before {
    content: ""
}

.icon-share:before {
    content: ""
}

.icon-chevron-right:before {
    content: ""
}

.icon-pin:before {
    content: ""
}

.icon-pin-active:before {
    content: ""
}

.icon-download:before {
    content: ""
}

.icon-image:before {
    content: "";
    color: #ccc
}

.icon-chevron-down:before {
    content: ""
}

.icon-chevron-up:before {
    content: ""
}

.icon-clock:before {
    content: ""
}

.icon-location:before {
    content: ""
}

.icon-diploma:before {
    content: ""
}

body {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

body.has-overlay {
    position: relative
}

body.has-overlay>div {
    background: #000
}

#skip-links {
    transform: translateY(-100%);
    width: 0;
    height: 0
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 0
}

h1,
.h1 {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 4.5rem;
    line-height: 5rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: -0.05em
}

h1:lang(ja),
.h1:lang(ja) {
    font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
}

h1:lang(zh-cn),
.h1:lang(zh-cn) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

h1:lang(zh-tw),
.h1:lang(zh-tw) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

h1:lang(ko),
.h1:lang(ko) {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
}

h1 a,
.h1 a {
    color: #333
}

@media(max-width:1023px) {
    h1,
    .h1 {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.875rem;
        line-height: 2.25rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    h1:lang(ja),
    .h1:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    h1:lang(zh-cn),
    .h1:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    h1:lang(zh-tw),
    .h1:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    h1:lang(ko),
    .h1:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

h2,
.h2 {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 2.75rem;
    line-height: 3.75rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

h2:lang(ja),
.h2:lang(ja) {
    font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
}

h2:lang(zh-cn),
.h2:lang(zh-cn) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

h2:lang(zh-tw),
.h2:lang(zh-tw) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

h2:lang(ko),
.h2:lang(ko) {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
}

h2 a,
.h2 a {
    color: #333
}

@media(max-width:1023px) {
    h2,
    .h2 {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.5rem;
        line-height: 2.25rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    h2:lang(ja),
    .h2:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    h2:lang(zh-cn),
    .h2:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    h2:lang(zh-tw),
    .h2:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    h2:lang(ko),
    .h2:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

h3,
.h3 {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
    font-size: 2rem;
    line-height: 3rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

h3:lang(ja),
.h3:lang(ja) {
    font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

h3:lang(zh-cn),
.h3:lang(zh-cn) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

h3:lang(zh-tw),
.h3:lang(zh-tw) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

h3:lang(ko),
.h3:lang(ko) {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
}

h3 a,
.h3 a {
    color: #333
}

@media(max-width:1023px) {
    h3,
    .h3 {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.375rem;
        line-height: 2rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    h3:lang(ja),
    .h3:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    h3:lang(zh-cn),
    .h3:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    h3:lang(zh-tw),
    .h3:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    h3:lang(ko),
    .h3:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

h4,
.h4 {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

h4:lang(ja),
.h4:lang(ja) {
    font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

h4:lang(zh-cn),
.h4:lang(zh-cn) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

h4:lang(zh-tw),
.h4:lang(zh-tw) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

h4:lang(ko),
.h4:lang(ko) {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
}

h4 a,
.h4 a {
    color: #333
}

@media(max-width:1023px) {
    h4,
    .h4 {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.125rem;
        line-height: 1.75rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    h4:lang(ja),
    .h4:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    h4:lang(zh-cn),
    .h4:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    h4:lang(zh-tw),
    .h4:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    h4:lang(ko),
    .h4:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

@media(max-width:639px) {
    h4,
    .h4 {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
        font-size: 1.375rem;
        line-height: 1.875rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    h4:lang(ja),
    .h4:lang(ja) {
        font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
    }
    h4:lang(zh-cn),
    .h4:lang(zh-cn) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    h4:lang(zh-tw),
    .h4:lang(zh-tw) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    h4:lang(ko),
    .h4:lang(ko) {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
    }
}

p,
.p1 {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

p:lang(ja),
.p1:lang(ja) {
    font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

p:lang(zh-cn),
.p1:lang(zh-cn) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

p:lang(zh-tw),
.p1:lang(zh-tw) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

p:lang(ko),
.p1:lang(ko) {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
}

@media(max-width:1023px) {
    p,
    .p1 {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
        font-size: 1.125rem;
        line-height: 1.875rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    p:lang(ja),
    .p1:lang(ja) {
        font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
    }
    p:lang(zh-cn),
    .p1:lang(zh-cn) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    p:lang(zh-tw),
    .p1:lang(zh-tw) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    p:lang(ko),
    .p1:lang(ko) {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
    }
}

@media(max-width:639px) {
    p,
    .p1 {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
        font-size: 1.125rem;
        line-height: 1.875rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    p:lang(ja),
    .p1:lang(ja) {
        font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
    }
    p:lang(zh-cn),
    .p1:lang(zh-cn) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    p:lang(zh-tw),
    .p1:lang(zh-tw) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    p:lang(ko),
    .p1:lang(ko) {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
    }
}

p a,
.p1 a {
    color: #333
}

.p1-medium {
    font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", "NotoSansSC-Medium", "NotoSansJP-Medium";
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

.p1-medium:lang(ja) {
    font-family: "MCQGlobal-Medium", "NotoSansJP-Medium", Arial, sans-serif
}

.p1-medium:lang(zh-cn) {
    font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
}

.p1-medium:lang(zh-tw) {
    font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
}

.p1-medium:lang(ko) {
    font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", Arial, sans-serif
}

@media(max-width:1023px) {
    .p1-medium {
        font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", "NotoSansSC-Medium", "NotoSansJP-Medium";
        font-size: 1.125rem;
        line-height: 1.875rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .p1-medium:lang(ja) {
        font-family: "MCQGlobal-Medium", "NotoSansJP-Medium", Arial, sans-serif
    }
    .p1-medium:lang(zh-cn) {
        font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
    }
    .p1-medium:lang(zh-tw) {
        font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
    }
    .p1-medium:lang(ko) {
        font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", Arial, sans-serif
    }
}

.p1-medium a {
    color: #333
}

.p2 {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

.p2:lang(ja) {
    font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

.p2:lang(zh-cn) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.p2:lang(zh-tw) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.p2:lang(ko) {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
}

@media(max-width:1023px) {
    .p2 {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
        font-size: 1rem;
        line-height: 1.625rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .p2:lang(ja) {
        font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
    }
    .p2:lang(zh-cn) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .p2:lang(zh-tw) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .p2:lang(ko) {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
    }
}

.p2 a {
    color: #333
}

.p2-medium {
    font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", "NotoSansSC-Medium", "NotoSansJP-Medium";
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

.p2-medium:lang(ja) {
    font-family: "MCQGlobal-Medium", "NotoSansJP-Medium", Arial, sans-serif
}

.p2-medium:lang(zh-cn) {
    font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
}

.p2-medium:lang(zh-tw) {
    font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
}

.p2-medium:lang(ko) {
    font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", Arial, sans-serif
}

@media(max-width:1023px) {
    .p2-medium {
        font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", "NotoSansSC-Medium", "NotoSansJP-Medium";
        font-size: 1rem;
        line-height: 1.625rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .p2-medium:lang(ja) {
        font-family: "MCQGlobal-Medium", "NotoSansJP-Medium", Arial, sans-serif
    }
    .p2-medium:lang(zh-cn) {
        font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
    }
    .p2-medium:lang(zh-tw) {
        font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
    }
    .p2-medium:lang(ko) {
        font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", Arial, sans-serif
    }
}

.p2-medium a {
    color: #333
}

.p3 {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

.p3:lang(ja) {
    font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

.p3:lang(zh-cn) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.p3:lang(zh-tw) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.p3:lang(ko) {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
}

@media(max-width:1023px) {
    .p3 {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
        font-size: .875rem;
        line-height: 1.5rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .p3:lang(ja) {
        font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
    }
    .p3:lang(zh-cn) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .p3:lang(zh-tw) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .p3:lang(ko) {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
    }
}

.p3 a {
    color: #333
}

.p3-medium {
    font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", "NotoSansSC-Medium", "NotoSansJP-Medium";
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

.p3-medium:lang(ja) {
    font-family: "MCQGlobal-Medium", "NotoSansJP-Medium", Arial, sans-serif
}

.p3-medium:lang(zh-cn) {
    font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
}

.p3-medium:lang(zh-tw) {
    font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
}

.p3-medium:lang(ko) {
    font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", Arial, sans-serif
}

@media(max-width:1023px) {
    .p3-medium {
        font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", "NotoSansSC-Medium", "NotoSansJP-Medium";
        font-size: .875rem;
        line-height: 1.5rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .p3-medium:lang(ja) {
        font-family: "MCQGlobal-Medium", "NotoSansJP-Medium", Arial, sans-serif
    }
    .p3-medium:lang(zh-cn) {
        font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
    }
    .p3-medium:lang(zh-tw) {
        font-family: "MCQGlobal-Medium", "NotoSansSC-Medium", Arial, sans-serif
    }
    .p3-medium:lang(ko) {
        font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", Arial, sans-serif
    }
}

.p3-medium a {
    color: #333
}

.eyebrow {
    position: relative;
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

.eyebrow:lang(ja) {
    font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

.eyebrow:lang(zh-cn) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.eyebrow:lang(zh-tw) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.eyebrow:lang(ko) {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
}

@media(max-width:1023px) {
    .eyebrow {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
        font-size: 1rem;
        line-height: 1.625rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .eyebrow:lang(ja) {
        font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
    }
    .eyebrow:lang(zh-cn) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .eyebrow:lang(zh-tw) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .eyebrow:lang(ko) {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
    }
}

.eyebrow:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background: #000;
    opacity: .7;
    margin-top: .88em;
    left: 100%;
    margin-left: 8px
}

blockquote {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 2rem;
    line-height: 3rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

blockquote:lang(ja) {
    font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
}

blockquote:lang(zh-cn) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

blockquote:lang(zh-tw) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

blockquote:lang(ko) {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
}

blockquote a {
    color: #333
}

@media(max-width:1023px) {
    blockquote {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.375rem;
        line-height: 2rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    blockquote:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    blockquote:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    blockquote:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    blockquote:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

@media(max-width:1023px) {
    a:target {
        padding-top: 100px;
        margin-top: -100px;
        display: inline-block
    }
}

footer.has-overlay {
    position: relative;
    z-index: 2
}

.padding-top-8[data-component=true] {
    padding-top: 8px
}

.padding-top-16[data-component=true] {
    padding-top: 16px
}

.padding-top-24[data-component=true] {
    padding-top: 24px
}

.padding-top-32[data-component=true] {
    padding-top: 32px
}

.padding-top-40[data-component=true] {
    padding-top: 40px
}

.padding-top-48[data-component=true] {
    padding-top: 48px
}

.padding-top-56[data-component=true] {
    padding-top: 56px
}

.padding-top-64[data-component=true] {
    padding-top: 64px
}

.padding-top-72[data-component=true] {
    padding-top: 72px
}

.padding-top-80[data-component=true] {
    padding-top: 80px
}

.padding-top-88[data-component=true] {
    padding-top: 88px
}

.padding-top-96[data-component=true] {
    padding-top: 96px
}

.padding-top-104[data-component=true] {
    padding-top: 104px
}

.padding-top-112[data-component=true] {
    padding-top: 112px
}

.padding-top-120[data-component=true] {
    padding-top: 120px
}

.padding-top-128[data-component=true] {
    padding-top: 128px
}

.padding-top-136[data-component=true] {
    padding-top: 136px
}

.padding-top-144[data-component=true] {
    padding-top: 144px
}

.padding-top-152[data-component=true] {
    padding-top: 152px
}

.padding-top-160[data-component=true] {
    padding-top: 160px
}

.padding-top-168[data-component=true] {
    padding-top: 168px
}

.padding-right-8[data-component=true] {
    padding-right: 8px
}

.padding-right-16[data-component=true] {
    padding-right: 16px
}

.padding-right-24[data-component=true] {
    padding-right: 24px
}

.padding-right-32[data-component=true] {
    padding-right: 32px
}

.padding-right-40[data-component=true] {
    padding-right: 40px
}

.padding-right-48[data-component=true] {
    padding-right: 48px
}

.padding-right-56[data-component=true] {
    padding-right: 56px
}

.padding-right-64[data-component=true] {
    padding-right: 64px
}

.padding-right-72[data-component=true] {
    padding-right: 72px
}

.padding-right-80[data-component=true] {
    padding-right: 80px
}

.padding-right-88[data-component=true] {
    padding-right: 88px
}

.padding-right-96[data-component=true] {
    padding-right: 96px
}

.padding-right-104[data-component=true] {
    padding-right: 104px
}

.padding-right-112[data-component=true] {
    padding-right: 112px
}

.padding-right-120[data-component=true] {
    padding-right: 120px
}

.padding-right-128[data-component=true] {
    padding-right: 128px
}

.padding-right-136[data-component=true] {
    padding-right: 136px
}

.padding-right-144[data-component=true] {
    padding-right: 144px
}

.padding-right-152[data-component=true] {
    padding-right: 152px
}

.padding-right-160[data-component=true] {
    padding-right: 160px
}

.padding-right-168[data-component=true] {
    padding-right: 168px
}

.padding-bottom-8[data-component=true] {
    padding-bottom: 8px
}

.padding-bottom-16[data-component=true] {
    padding-bottom: 16px
}

.padding-bottom-24[data-component=true] {
    padding-bottom: 24px
}

.padding-bottom-32[data-component=true] {
    padding-bottom: 32px
}

.padding-bottom-40[data-component=true] {
    padding-bottom: 40px
}

.padding-bottom-48[data-component=true] {
    padding-bottom: 48px
}

.padding-bottom-56[data-component=true] {
    padding-bottom: 56px
}

.padding-bottom-64[data-component=true] {
    padding-bottom: 64px
}

.padding-bottom-72[data-component=true] {
    padding-bottom: 72px
}

.padding-bottom-80[data-component=true] {
    padding-bottom: 80px
}

.padding-bottom-88[data-component=true] {
    padding-bottom: 88px
}

.padding-bottom-96[data-component=true] {
    padding-bottom: 96px
}

.padding-bottom-104[data-component=true] {
    padding-bottom: 104px
}

.padding-bottom-112[data-component=true] {
    padding-bottom: 112px
}

.padding-bottom-120[data-component=true] {
    padding-bottom: 120px
}

.padding-bottom-128[data-component=true] {
    padding-bottom: 128px
}

.padding-bottom-136[data-component=true] {
    padding-bottom: 136px
}

.padding-bottom-144[data-component=true] {
    padding-bottom: 144px
}

.padding-bottom-152[data-component=true] {
    padding-bottom: 152px
}

.padding-bottom-160[data-component=true] {
    padding-bottom: 160px
}

.padding-bottom-168[data-component=true] {
    padding-bottom: 168px
}

.padding-left-8[data-component=true] {
    padding-left: 8px
}

.padding-left-16[data-component=true] {
    padding-left: 16px
}

.padding-left-24[data-component=true] {
    padding-left: 24px
}

.padding-left-32[data-component=true] {
    padding-left: 32px
}

.padding-left-40[data-component=true] {
    padding-left: 40px
}

.padding-left-48[data-component=true] {
    padding-left: 48px
}

.padding-left-56[data-component=true] {
    padding-left: 56px
}

.padding-left-64[data-component=true] {
    padding-left: 64px
}

.padding-left-72[data-component=true] {
    padding-left: 72px
}

.padding-left-80[data-component=true] {
    padding-left: 80px
}

.padding-left-88[data-component=true] {
    padding-left: 88px
}

.padding-left-96[data-component=true] {
    padding-left: 96px
}

.padding-left-104[data-component=true] {
    padding-left: 104px
}

.padding-left-112[data-component=true] {
    padding-left: 112px
}

.padding-left-120[data-component=true] {
    padding-left: 120px
}

.padding-left-128[data-component=true] {
    padding-left: 128px
}

.padding-left-136[data-component=true] {
    padding-left: 136px
}

.padding-left-144[data-component=true] {
    padding-left: 144px
}

.padding-left-152[data-component=true] {
    padding-left: 152px
}

.padding-left-160[data-component=true] {
    padding-left: 160px
}

.padding-left-168[data-component=true] {
    padding-left: 168px
}

.margin-top-8[data-component=true] {
    margin-top: 8px
}

.margin-top-16[data-component=true] {
    margin-top: 16px
}

.margin-top-24[data-component=true] {
    margin-top: 24px
}

.margin-top-32[data-component=true] {
    margin-top: 32px
}

.margin-top-40[data-component=true] {
    margin-top: 40px
}

.margin-top-48[data-component=true] {
    margin-top: 48px
}

.margin-top-56[data-component=true] {
    margin-top: 56px
}

.margin-top-64[data-component=true] {
    margin-top: 64px
}

.margin-top-72[data-component=true] {
    margin-top: 72px
}

.margin-top-80[data-component=true] {
    margin-top: 80px
}

.margin-top-88[data-component=true] {
    margin-top: 88px
}

.margin-top-96[data-component=true] {
    margin-top: 96px
}

.margin-top-104[data-component=true] {
    margin-top: 104px
}

.margin-top-112[data-component=true] {
    margin-top: 112px
}

.margin-top-120[data-component=true] {
    margin-top: 120px
}

.margin-top-128[data-component=true] {
    margin-top: 128px
}

.margin-top-136[data-component=true] {
    margin-top: 136px
}

.margin-top-144[data-component=true] {
    margin-top: 144px
}

.margin-top-152[data-component=true] {
    margin-top: 152px
}

.margin-top-160[data-component=true] {
    margin-top: 160px
}

.margin-top-168[data-component=true] {
    margin-top: 168px
}

.margin-right-8[data-component=true] {
    margin-right: 8px
}

.margin-right-16[data-component=true] {
    margin-right: 16px
}

.margin-right-24[data-component=true] {
    margin-right: 24px
}

.margin-right-32[data-component=true] {
    margin-right: 32px
}

.margin-right-40[data-component=true] {
    margin-right: 40px
}

.margin-right-48[data-component=true] {
    margin-right: 48px
}

.margin-right-56[data-component=true] {
    margin-right: 56px
}

.margin-right-64[data-component=true] {
    margin-right: 64px
}

.margin-right-72[data-component=true] {
    margin-right: 72px
}

.margin-right-80[data-component=true] {
    margin-right: 80px
}

.margin-right-88[data-component=true] {
    margin-right: 88px
}

.margin-right-96[data-component=true] {
    margin-right: 96px
}

.margin-right-104[data-component=true] {
    margin-right: 104px
}

.margin-right-112[data-component=true] {
    margin-right: 112px
}

.margin-right-120[data-component=true] {
    margin-right: 120px
}

.margin-right-128[data-component=true] {
    margin-right: 128px
}

.margin-right-136[data-component=true] {
    margin-right: 136px
}

.margin-right-144[data-component=true] {
    margin-right: 144px
}

.margin-right-152[data-component=true] {
    margin-right: 152px
}

.margin-right-160[data-component=true] {
    margin-right: 160px
}

.margin-right-168[data-component=true] {
    margin-right: 168px
}

.margin-bottom-8[data-component=true] {
    margin-bottom: 8px
}

.margin-bottom-16[data-component=true] {
    margin-bottom: 16px
}

.margin-bottom-24[data-component=true] {
    margin-bottom: 24px
}

.margin-bottom-32[data-component=true] {
    margin-bottom: 32px
}

.margin-bottom-40[data-component=true] {
    margin-bottom: 40px
}

.margin-bottom-48[data-component=true] {
    margin-bottom: 48px
}

.margin-bottom-56[data-component=true] {
    margin-bottom: 56px
}

.margin-bottom-64[data-component=true] {
    margin-bottom: 64px
}

.margin-bottom-72[data-component=true] {
    margin-bottom: 72px
}

.margin-bottom-80[data-component=true] {
    margin-bottom: 80px
}

.margin-bottom-88[data-component=true] {
    margin-bottom: 88px
}

.margin-bottom-96[data-component=true] {
    margin-bottom: 96px
}

.margin-bottom-104[data-component=true] {
    margin-bottom: 104px
}

.margin-bottom-112[data-component=true] {
    margin-bottom: 112px
}

.margin-bottom-120[data-component=true] {
    margin-bottom: 120px
}

.margin-bottom-128[data-component=true] {
    margin-bottom: 128px
}

.margin-bottom-136[data-component=true] {
    margin-bottom: 136px
}

.margin-bottom-144[data-component=true] {
    margin-bottom: 144px
}

.margin-bottom-152[data-component=true] {
    margin-bottom: 152px
}

.margin-bottom-160[data-component=true] {
    margin-bottom: 160px
}

.margin-bottom-168[data-component=true] {
    margin-bottom: 168px
}

.margin-left-8[data-component=true] {
    margin-left: 8px
}

.margin-left-16[data-component=true] {
    margin-left: 16px
}

.margin-left-24[data-component=true] {
    margin-left: 24px
}

.margin-left-32[data-component=true] {
    margin-left: 32px
}

.margin-left-40[data-component=true] {
    margin-left: 40px
}

.margin-left-48[data-component=true] {
    margin-left: 48px
}

.margin-left-56[data-component=true] {
    margin-left: 56px
}

.margin-left-64[data-component=true] {
    margin-left: 64px
}

.margin-left-72[data-component=true] {
    margin-left: 72px
}

.margin-left-80[data-component=true] {
    margin-left: 80px
}

.margin-left-88[data-component=true] {
    margin-left: 88px
}

.margin-left-96[data-component=true] {
    margin-left: 96px
}

.margin-left-104[data-component=true] {
    margin-left: 104px
}

.margin-left-112[data-component=true] {
    margin-left: 112px
}

.margin-left-120[data-component=true] {
    margin-left: 120px
}

.margin-left-128[data-component=true] {
    margin-left: 128px
}

.margin-left-136[data-component=true] {
    margin-left: 136px
}

.margin-left-144[data-component=true] {
    margin-left: 144px
}

.margin-left-152[data-component=true] {
    margin-left: 152px
}

.margin-left-160[data-component=true] {
    margin-left: 160px
}

.margin-left-168[data-component=true] {
    margin-left: 168px
}

.margin-top-minus-8[data-component=true] {
    margin-top: -8px
}

.margin-top-minus-16[data-component=true] {
    margin-top: -16px
}

.margin-top-minus-24[data-component=true] {
    margin-top: -24px
}

.margin-top-minus-32[data-component=true] {
    margin-top: -32px
}

.margin-top-minus-40[data-component=true] {
    margin-top: -40px
}

.margin-top-minus-48[data-component=true] {
    margin-top: -48px
}

.margin-top-minus-56[data-component=true] {
    margin-top: -56px
}

.margin-top-minus-64[data-component=true] {
    margin-top: -64px
}

.margin-top-minus-72[data-component=true] {
    margin-top: -72px
}

.margin-top-minus-80[data-component=true] {
    margin-top: -80px
}

.margin-top-minus-88[data-component=true] {
    margin-top: -88px
}

.margin-top-minus-96[data-component=true] {
    margin-top: -96px
}

.margin-top-minus-104[data-component=true] {
    margin-top: -104px
}

.margin-top-minus-112[data-component=true] {
    margin-top: -112px
}

.margin-top-minus-120[data-component=true] {
    margin-top: -120px
}

.margin-top-minus-128[data-component=true] {
    margin-top: -128px
}

.margin-top-minus-136[data-component=true] {
    margin-top: -136px
}

.margin-top-minus-144[data-component=true] {
    margin-top: -144px
}

.margin-top-minus-152[data-component=true] {
    margin-top: -152px
}

.margin-top-minus-160[data-component=true] {
    margin-top: -160px
}

.margin-top-minus-168[data-component=true] {
    margin-top: -168px
}

.margin-right-minus-8[data-component=true] {
    margin-right: -8px
}

.margin-right-minus-16[data-component=true] {
    margin-right: -16px
}

.margin-right-minus-24[data-component=true] {
    margin-right: -24px
}

.margin-right-minus-32[data-component=true] {
    margin-right: -32px
}

.margin-right-minus-40[data-component=true] {
    margin-right: -40px
}

.margin-right-minus-48[data-component=true] {
    margin-right: -48px
}

.margin-right-minus-56[data-component=true] {
    margin-right: -56px
}

.margin-right-minus-64[data-component=true] {
    margin-right: -64px
}

.margin-right-minus-72[data-component=true] {
    margin-right: -72px
}

.margin-right-minus-80[data-component=true] {
    margin-right: -80px
}

.margin-right-minus-88[data-component=true] {
    margin-right: -88px
}

.margin-right-minus-96[data-component=true] {
    margin-right: -96px
}

.margin-right-minus-104[data-component=true] {
    margin-right: -104px
}

.margin-right-minus-112[data-component=true] {
    margin-right: -112px
}

.margin-right-minus-120[data-component=true] {
    margin-right: -120px
}

.margin-right-minus-128[data-component=true] {
    margin-right: -128px
}

.margin-right-minus-136[data-component=true] {
    margin-right: -136px
}

.margin-right-minus-144[data-component=true] {
    margin-right: -144px
}

.margin-right-minus-152[data-component=true] {
    margin-right: -152px
}

.margin-right-minus-160[data-component=true] {
    margin-right: -160px
}

.margin-right-minus-168[data-component=true] {
    margin-right: -168px
}

.margin-bottom-minus-8[data-component=true] {
    margin-bottom: -8px
}

.margin-bottom-minus-16[data-component=true] {
    margin-bottom: -16px
}

.margin-bottom-minus-24[data-component=true] {
    margin-bottom: -24px
}

.margin-bottom-minus-32[data-component=true] {
    margin-bottom: -32px
}

.margin-bottom-minus-40[data-component=true] {
    margin-bottom: -40px
}

.margin-bottom-minus-48[data-component=true] {
    margin-bottom: -48px
}

.margin-bottom-minus-56[data-component=true] {
    margin-bottom: -56px
}

.margin-bottom-minus-64[data-component=true] {
    margin-bottom: -64px
}

.margin-bottom-minus-72[data-component=true] {
    margin-bottom: -72px
}

.margin-bottom-minus-80[data-component=true] {
    margin-bottom: -80px
}

.margin-bottom-minus-88[data-component=true] {
    margin-bottom: -88px
}

.margin-bottom-minus-96[data-component=true] {
    margin-bottom: -96px
}

.margin-bottom-minus-104[data-component=true] {
    margin-bottom: -104px
}

.margin-bottom-minus-112[data-component=true] {
    margin-bottom: -112px
}

.margin-bottom-minus-120[data-component=true] {
    margin-bottom: -120px
}

.margin-bottom-minus-128[data-component=true] {
    margin-bottom: -128px
}

.margin-bottom-minus-136[data-component=true] {
    margin-bottom: -136px
}

.margin-bottom-minus-144[data-component=true] {
    margin-bottom: -144px
}

.margin-bottom-minus-152[data-component=true] {
    margin-bottom: -152px
}

.margin-bottom-minus-160[data-component=true] {
    margin-bottom: -160px
}

.margin-bottom-minus-168[data-component=true] {
    margin-bottom: -168px
}

.margin-left-minus-8[data-component=true] {
    margin-left: -8px
}

.margin-left-minus-16[data-component=true] {
    margin-left: -16px
}

.margin-left-minus-24[data-component=true] {
    margin-left: -24px
}

.margin-left-minus-32[data-component=true] {
    margin-left: -32px
}

.margin-left-minus-40[data-component=true] {
    margin-left: -40px
}

.margin-left-minus-48[data-component=true] {
    margin-left: -48px
}

.margin-left-minus-56[data-component=true] {
    margin-left: -56px
}

.margin-left-minus-64[data-component=true] {
    margin-left: -64px
}

.margin-left-minus-72[data-component=true] {
    margin-left: -72px
}

.margin-left-minus-80[data-component=true] {
    margin-left: -80px
}

.margin-left-minus-88[data-component=true] {
    margin-left: -88px
}

.margin-left-minus-96[data-component=true] {
    margin-left: -96px
}

.margin-left-minus-104[data-component=true] {
    margin-left: -104px
}

.margin-left-minus-112[data-component=true] {
    margin-left: -112px
}

.margin-left-minus-120[data-component=true] {
    margin-left: -120px
}

.margin-left-minus-128[data-component=true] {
    margin-left: -128px
}

.margin-left-minus-136[data-component=true] {
    margin-left: -136px
}

.margin-left-minus-144[data-component=true] {
    margin-left: -144px
}

.margin-left-minus-152[data-component=true] {
    margin-left: -152px
}

.margin-left-minus-160[data-component=true] {
    margin-left: -160px
}

.margin-left-minus-168[data-component=true] {
    margin-left: -168px
}

.responsivegrid.layout-flex>div {
    display: flex;
    flex-wrap: wrap
}

.responsivegrid.layout-flex>div .new {
    width: 100%
}

.responsivegrid.layout-flex--reverse>div {
    flex-direction: row-reverse
}

.responsivegrid.layout-flex.align-top>div {
    align-items: flex-start
}

.responsivegrid.layout-flex.align-center>div {
    align-items: center
}

.responsivegrid.layout-flex.align-bottom>div {
    align-items: flex-end
}

@media(max-width:640px) {
    .responsivegrid.layout--no-padding {
        padding: 0
    }
}

.responsivegrid.layout--no-padding>div {
    padding: 0
}

.dark-text {
    color: #000
}

.dark-text .cmp-text a {
    color: #000
}

.dark-text .cmp-text a:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 1px
}

.light-text {
    color: #fff
}

.light-text a {
    color: #fff
}

.light-text a:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 1px
}

.light-text .eyebrow:after {
    background: #fff;
    opacity: 1
}

.bgColour-white {
    background-color: #fff;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-white {
        margin: 0;
        padding: 0
    }
}

.bgColour-black {
    background-color: #000;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-black {
        margin: 0;
        padding: 0
    }
}

.bgColour-grey {
    background-color: #f7f7f7;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-grey {
        margin: 0;
        padding: 0
    }
}

.bgColour-grey-1 {
    background-color: #333;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-grey-1 {
        margin: 0;
        padding: 0
    }
}

.bgColour-dark-grey {
    background-color: #333;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-dark-grey {
        margin: 0;
        padding: 0
    }
}

.bgColour-blue {
    background-color: #0f7ac7;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-blue {
        margin: 0;
        padding: 0
    }
}

.bgColour-blue-7 {
    background-color: #c2e8ff;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-blue-7 {
        margin: 0;
        padding: 0
    }
}

.bgColour-yellow {
    background-color: #0f7ac7;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-yellow {
        margin: 0;
        padding: 0
    }
}

.bgColour-green {
    background-color: #007859;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-green {
        margin: 0;
        padding: 0
    }
}

.bgColour-green-7 {
    background-color: #c7faeb;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-green-7 {
        margin: 0;
        padding: 0
    }
}

.bgColour-dark-green {
    background-color: #007859;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-dark-green {
        margin: 0;
        padding: 0
    }
}

.bgColour-dark-orange {
    background-color: #f27305;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-dark-orange {
        margin: 0;
        padding: 0
    }
}

.bgColour-light-orange {
    background-color: #f27305;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-light-orange {
        margin: 0;
        padding: 0
    }
}

.bgColour-red {
    background-color: #cf2938;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-red {
        margin: 0;
        padding: 0
    }
}

.bgColour-purple {
    background-color: #7526e5;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-purple {
        margin: 0;
        padding: 0
    }
}

.bgColour-sand {
    background-color: #ddb88a;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-sand {
        margin: 0;
        padding: 0
    }
}

.bgColour-sand-7 {
    background-color: #fcedcc;
    padding: 0 24px
}

@media(max-width:767px) {
    .bgColour-sand-7 {
        margin: 0;
        padding: 0
    }
}

.bg--white {
    background-color: #fff
}

.bg--black {
    background-color: #000
}

.bg--grey {
    background-color: #f7f7f7
}

.bg--grey-1 {
    background-color: #333
}

.bg--dark-grey {
    background-color: #333
}

.bg--blue {
    background-color: #0f7ac7
}

.bg--blue-7 {
    background-color: #c2e8ff
}

.bg--yellow {
    background-color: #0f7ac7
}

.bg--green {
    background-color: #007859
}

.bg--green-7 {
    background-color: #c7faeb
}

.bg--dark-green {
    background-color: #007859
}

.bg--dark-orange {
    background-color: #f27305
}

.bg--light-orange {
    background-color: #f27305
}

.bg--red {
    background-color: #cf2938
}

.bg--purple {
    background-color: #7526e5
}

.bg--sand {
    background-color: #ddb88a
}

.bg--sand-7 {
    background-color: #fcedcc
}

.experiencefragment .xf-content-height {
    margin: 0
}

.slideInDown {
    transform: translate3d(0, -100%, 0)
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        position: fixed
    }
    1% {
        position: absolute
    }
    100% {
        transform: translate3d(0, 0, 0)
    }
}

.cmp-breadcrumb__list {
    padding: 0;
    margin: 0
}

.cmp-breadcrumb__item {
    list-style: none;
    float: left;
    padding-right: 8px
}

.cmp-breadcrumb__item-link {
    text-decoration: none;
    padding: 0
}

.cmp-breadcrumb__item-link span {
    text-decoration: underline
}

.cmp-breadcrumb__item:after {
    content: "/"
}

.cmp-hero-general--bg-black .cmp-breadcrumb__item-link {
    color: #fff
}

.cmp-hero-general--bg-white .cmp-breadcrumb__item-link {
    color: #000
}

.cmp-hero-general--bg-sector .cmp-breadcrumb__item-link {
    color: #000
}

.colour-block[data-component=true]>.responsivegrid {
    padding: 24px 0 24px 0
}

@media(max-width:768px) {
    .colour-block[data-component=true] .cmp-cta {
        width: 100%
    }
}

.colour-block-white-white[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #fff 50%, #fff 100%)
}

.colour-block-white-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-white-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-white-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-white-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-white-black[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #000 50%, #000 100%)
}

.colour-block-white-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-white-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #000 60%, #000 100%)
    }
}

.colour-block-white-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-white-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #000 40%, #000 100%)
    }
}

.colour-block-white-grey[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-white-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-white-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-white-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-white-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-white-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #333 50%, #333 100%)
}

.colour-block-white-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-white-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #333 60%, #333 100%)
    }
}

.colour-block-white-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-white-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #333 40%, #333 100%)
    }
}

.colour-block-white-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #333 50%, #333 100%)
}

.colour-block-white-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-white-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #333 60%, #333 100%)
    }
}

.colour-block-white-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-white-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #333 40%, #333 100%)
    }
}

.colour-block-white-blue[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-white-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-white-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-white-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-white-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-white-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-white-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-white-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-white-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-white-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-white-yellow[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-white-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-white-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-white-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-white-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-white-green[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #007859 50%, #007859 100%)
}

.colour-block-white-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-white-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-white-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-white-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-white-green-7[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-white-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-white-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-white-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-white-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-white-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #007859 50%, #007859 100%)
}

.colour-block-white-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-white-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-white-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-white-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-white-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #f27305 50%, #f27305 100%)
}

.colour-block-white-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-white-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-white-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-white-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-white-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #f27305 50%, #f27305 100%)
}

.colour-block-white-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-white-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-white-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-white-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-white-red[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-white-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-white-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-white-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-white-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-white-purple[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-white-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-white-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-white-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-white-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-white-sand[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-white-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-white-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-white-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-white-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-white-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #fff 0, #fff 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-white-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-white-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-white-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fff 0, #fff 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-white-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fff 0, #fff 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-black-white[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #fff 50%, #fff 100%)
}

.colour-block-black-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-black-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-black-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-black-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-black-black[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #000 50%, #000 100%)
}

.colour-block-black-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-black-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #000 60%, #000 100%)
    }
}

.colour-block-black-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-black-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #000 40%, #000 100%)
    }
}

.colour-block-black-grey[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-black-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-black-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-black-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-black-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-black-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #333 50%, #333 100%)
}

.colour-block-black-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-black-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #333 60%, #333 100%)
    }
}

.colour-block-black-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-black-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #333 40%, #333 100%)
    }
}

.colour-block-black-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #333 50%, #333 100%)
}

.colour-block-black-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-black-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #333 60%, #333 100%)
    }
}

.colour-block-black-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-black-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #333 40%, #333 100%)
    }
}

.colour-block-black-blue[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-black-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-black-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-black-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-black-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-black-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-black-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-black-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-black-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-black-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-black-yellow[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-black-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-black-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-black-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-black-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-black-green[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #007859 50%, #007859 100%)
}

.colour-block-black-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-black-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-black-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-black-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-black-green-7[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-black-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-black-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-black-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-black-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-black-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #007859 50%, #007859 100%)
}

.colour-block-black-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-black-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-black-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-black-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-black-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #f27305 50%, #f27305 100%)
}

.colour-block-black-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-black-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-black-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-black-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-black-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #f27305 50%, #f27305 100%)
}

.colour-block-black-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-black-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-black-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-black-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-black-red[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-black-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-black-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-black-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-black-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-black-purple[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-black-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-black-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-black-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-black-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-black-sand[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-black-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-black-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-black-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-black-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-black-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #000 0, #000 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-black-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-black-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-black-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #000 0, #000 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-black-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #000 0, #000 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-grey-white[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #fff 50%, #fff 100%)
}

.colour-block-grey-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-grey-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-grey-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-grey-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-grey-black[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #000 50%, #000 100%)
}

.colour-block-grey-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-grey-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #000 60%, #000 100%)
    }
}

.colour-block-grey-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-grey-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #000 40%, #000 100%)
    }
}

.colour-block-grey-grey[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-grey-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-grey-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-grey-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #333 50%, #333 100%)
}

.colour-block-grey-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-grey-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #333 60%, #333 100%)
    }
}

.colour-block-grey-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-grey-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #333 40%, #333 100%)
    }
}

.colour-block-grey-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #333 50%, #333 100%)
}

.colour-block-grey-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-grey-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #333 60%, #333 100%)
    }
}

.colour-block-grey-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-grey-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #333 40%, #333 100%)
    }
}

.colour-block-grey-blue[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-grey-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-grey-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-grey-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-grey-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-grey-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-grey-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-grey-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-grey-yellow[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-grey-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-grey-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-grey-green[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #007859 50%, #007859 100%)
}

.colour-block-grey-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-grey-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-grey-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-grey-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-grey-green-7[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-grey-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-grey-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-grey-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-grey-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-grey-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #007859 50%, #007859 100%)
}

.colour-block-grey-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-grey-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-grey-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-grey-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-grey-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #f27305 50%, #f27305 100%)
}

.colour-block-grey-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-grey-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-grey-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-grey-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-grey-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #f27305 50%, #f27305 100%)
}

.colour-block-grey-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-grey-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-grey-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-grey-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-grey-red[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-grey-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-grey-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-grey-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-grey-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-grey-purple[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-grey-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-grey-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-grey-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-grey-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-grey-sand[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-grey-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-grey-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-grey-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-grey-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-grey-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-grey-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-grey-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-grey-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f7f7f7 0, #f7f7f7 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-grey-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f7f7f7 0, #f7f7f7 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-grey-1-white[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #fff 50%, #fff 100%)
}

.colour-block-grey-1-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-grey-1-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-grey-1-black[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #000 50%, #000 100%)
}

.colour-block-grey-1-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #000 60%, #000 100%)
    }
}

.colour-block-grey-1-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #000 40%, #000 100%)
    }
}

.colour-block-grey-1-grey[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-grey-1-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-grey-1-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-grey-1-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #333 50%, #333 100%)
}

.colour-block-grey-1-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #333 60%, #333 100%)
    }
}

.colour-block-grey-1-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #333 40%, #333 100%)
    }
}

.colour-block-grey-1-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #333 50%, #333 100%)
}

.colour-block-grey-1-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #333 60%, #333 100%)
    }
}

.colour-block-grey-1-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #333 40%, #333 100%)
    }
}

.colour-block-grey-1-blue[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-grey-1-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-grey-1-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-grey-1-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-grey-1-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-grey-1-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-grey-1-yellow[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-grey-1-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-grey-1-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-grey-1-green[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #007859 50%, #007859 100%)
}

.colour-block-grey-1-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-grey-1-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-grey-1-green-7[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-grey-1-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-grey-1-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-grey-1-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #007859 50%, #007859 100%)
}

.colour-block-grey-1-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-grey-1-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-grey-1-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #f27305 50%, #f27305 100%)
}

.colour-block-grey-1-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-grey-1-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-grey-1-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #f27305 50%, #f27305 100%)
}

.colour-block-grey-1-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-grey-1-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-grey-1-red[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-grey-1-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-grey-1-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-grey-1-purple[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-grey-1-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-grey-1-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-grey-1-sand[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-grey-1-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-grey-1-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-grey-1-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-grey-1-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-grey-1-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-grey-1-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-dark-grey-white[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #fff 50%, #fff 100%)
}

.colour-block-dark-grey-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-dark-grey-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-dark-grey-black[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #000 50%, #000 100%)
}

.colour-block-dark-grey-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #000 60%, #000 100%)
    }
}

.colour-block-dark-grey-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #000 40%, #000 100%)
    }
}

.colour-block-dark-grey-grey[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-dark-grey-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-dark-grey-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-dark-grey-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #333 50%, #333 100%)
}

.colour-block-dark-grey-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #333 60%, #333 100%)
    }
}

.colour-block-dark-grey-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #333 40%, #333 100%)
    }
}

.colour-block-dark-grey-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #333 50%, #333 100%)
}

.colour-block-dark-grey-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #333 60%, #333 100%)
    }
}

.colour-block-dark-grey-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #333 40%, #333 100%)
    }
}

.colour-block-dark-grey-blue[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-dark-grey-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-dark-grey-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-dark-grey-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-dark-grey-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-dark-grey-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-dark-grey-yellow[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-dark-grey-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-dark-grey-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-dark-grey-green[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #007859 50%, #007859 100%)
}

.colour-block-dark-grey-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-dark-grey-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-dark-grey-green-7[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-dark-grey-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-dark-grey-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-dark-grey-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #007859 50%, #007859 100%)
}

.colour-block-dark-grey-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-dark-grey-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-dark-grey-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #f27305 50%, #f27305 100%)
}

.colour-block-dark-grey-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-dark-grey-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-dark-grey-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #f27305 50%, #f27305 100%)
}

.colour-block-dark-grey-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-dark-grey-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-dark-grey-red[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-dark-grey-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-dark-grey-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-dark-grey-purple[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-dark-grey-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-dark-grey-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-dark-grey-sand[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-dark-grey-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-dark-grey-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-dark-grey-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #333 0, #333 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-dark-grey-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-dark-grey-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #333 0, #333 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-dark-grey-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #333 0, #333 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-blue-white[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #fff 50%, #fff 100%)
}

.colour-block-blue-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-blue-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-blue-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-blue-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-blue-black[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #000 50%, #000 100%)
}

.colour-block-blue-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-blue-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #000 60%, #000 100%)
    }
}

.colour-block-blue-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-blue-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #000 40%, #000 100%)
    }
}

.colour-block-blue-grey[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-blue-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-blue-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-blue-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #333 50%, #333 100%)
}

.colour-block-blue-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-blue-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #333 60%, #333 100%)
    }
}

.colour-block-blue-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-blue-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #333 40%, #333 100%)
    }
}

.colour-block-blue-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #333 50%, #333 100%)
}

.colour-block-blue-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-blue-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #333 60%, #333 100%)
    }
}

.colour-block-blue-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-blue-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #333 40%, #333 100%)
    }
}

.colour-block-blue-blue[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-blue-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-blue-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-blue-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-blue-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-blue-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-blue-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-blue-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-blue-yellow[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-blue-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-blue-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-blue-green[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #007859 50%, #007859 100%)
}

.colour-block-blue-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-blue-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-blue-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-blue-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-blue-green-7[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-blue-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-blue-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-blue-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-blue-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-blue-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #007859 50%, #007859 100%)
}

.colour-block-blue-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-blue-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-blue-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-blue-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-blue-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #f27305 50%, #f27305 100%)
}

.colour-block-blue-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-blue-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-blue-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-blue-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-blue-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #f27305 50%, #f27305 100%)
}

.colour-block-blue-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-blue-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-blue-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-blue-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-blue-red[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-blue-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-blue-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-blue-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-blue-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-blue-purple[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-blue-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-blue-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-blue-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-blue-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-blue-sand[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-blue-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-blue-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-blue-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-blue-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-blue-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-blue-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-blue-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-blue-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-blue-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-blue-7-white[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #fff 50%, #fff 100%)
}

.colour-block-blue-7-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-blue-7-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-blue-7-black[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #000 50%, #000 100%)
}

.colour-block-blue-7-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #000 60%, #000 100%)
    }
}

.colour-block-blue-7-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #000 40%, #000 100%)
    }
}

.colour-block-blue-7-grey[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-blue-7-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-blue-7-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-blue-7-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #333 50%, #333 100%)
}

.colour-block-blue-7-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #333 60%, #333 100%)
    }
}

.colour-block-blue-7-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #333 40%, #333 100%)
    }
}

.colour-block-blue-7-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #333 50%, #333 100%)
}

.colour-block-blue-7-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #333 60%, #333 100%)
    }
}

.colour-block-blue-7-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #333 40%, #333 100%)
    }
}

.colour-block-blue-7-blue[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-blue-7-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-blue-7-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-blue-7-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-blue-7-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-blue-7-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-blue-7-yellow[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-blue-7-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-blue-7-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-blue-7-green[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #007859 50%, #007859 100%)
}

.colour-block-blue-7-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-blue-7-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-blue-7-green-7[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-blue-7-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-blue-7-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-blue-7-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #007859 50%, #007859 100%)
}

.colour-block-blue-7-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-blue-7-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-blue-7-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #f27305 50%, #f27305 100%)
}

.colour-block-blue-7-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-blue-7-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-blue-7-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #f27305 50%, #f27305 100%)
}

.colour-block-blue-7-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-blue-7-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-blue-7-red[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-blue-7-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-blue-7-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-blue-7-purple[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-blue-7-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-blue-7-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-blue-7-sand[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-blue-7-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-blue-7-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-blue-7-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-blue-7-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-blue-7-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c2e8ff 0, #c2e8ff 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-blue-7-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c2e8ff 0, #c2e8ff 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-yellow-white[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #fff 50%, #fff 100%)
}

.colour-block-yellow-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-yellow-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-yellow-black[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #000 50%, #000 100%)
}

.colour-block-yellow-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #000 60%, #000 100%)
    }
}

.colour-block-yellow-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #000 40%, #000 100%)
    }
}

.colour-block-yellow-grey[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-yellow-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-yellow-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-yellow-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #333 50%, #333 100%)
}

.colour-block-yellow-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #333 60%, #333 100%)
    }
}

.colour-block-yellow-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #333 40%, #333 100%)
    }
}

.colour-block-yellow-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #333 50%, #333 100%)
}

.colour-block-yellow-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #333 60%, #333 100%)
    }
}

.colour-block-yellow-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #333 40%, #333 100%)
    }
}

.colour-block-yellow-blue[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-yellow-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-yellow-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-yellow-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-yellow-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-yellow-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-yellow-yellow[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-yellow-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-yellow-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-yellow-green[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #007859 50%, #007859 100%)
}

.colour-block-yellow-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-yellow-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-yellow-green-7[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-yellow-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-yellow-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-yellow-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #007859 50%, #007859 100%)
}

.colour-block-yellow-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-yellow-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-yellow-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #f27305 50%, #f27305 100%)
}

.colour-block-yellow-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-yellow-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-yellow-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #f27305 50%, #f27305 100%)
}

.colour-block-yellow-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-yellow-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-yellow-red[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-yellow-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-yellow-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-yellow-purple[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-yellow-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-yellow-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-yellow-sand[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-yellow-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-yellow-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-yellow-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-yellow-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-yellow-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #0f7ac7 0, #0f7ac7 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-yellow-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #0f7ac7 0, #0f7ac7 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-green-white[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #fff 50%, #fff 100%)
}

.colour-block-green-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-green-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-green-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-green-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-green-black[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #000 50%, #000 100%)
}

.colour-block-green-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-green-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #000 60%, #000 100%)
    }
}

.colour-block-green-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-green-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #000 40%, #000 100%)
    }
}

.colour-block-green-grey[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-green-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-green-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-green-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-green-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-green-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #333 50%, #333 100%)
}

.colour-block-green-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-green-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #333 60%, #333 100%)
    }
}

.colour-block-green-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-green-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #333 40%, #333 100%)
    }
}

.colour-block-green-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #333 50%, #333 100%)
}

.colour-block-green-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-green-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #333 60%, #333 100%)
    }
}

.colour-block-green-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-green-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #333 40%, #333 100%)
    }
}

.colour-block-green-blue[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-green-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-green-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-green-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-green-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-green-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-green-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-green-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-green-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-green-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-green-yellow[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-green-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-green-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-green-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-green-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-green-green[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #007859 50%, #007859 100%)
}

.colour-block-green-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-green-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-green-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-green-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-green-green-7[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-green-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-green-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-green-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-green-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-green-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #007859 50%, #007859 100%)
}

.colour-block-green-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-green-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-green-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-green-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-green-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #f27305 50%, #f27305 100%)
}

.colour-block-green-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-green-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-green-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-green-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-green-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #f27305 50%, #f27305 100%)
}

.colour-block-green-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-green-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-green-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-green-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-green-red[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-green-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-green-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-green-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-green-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-green-purple[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-green-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-green-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-green-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-green-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-green-sand[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-green-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-green-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-green-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-green-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-green-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-green-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-green-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-green-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-green-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-green-7-white[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #fff 50%, #fff 100%)
}

.colour-block-green-7-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-green-7-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-green-7-black[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #000 50%, #000 100%)
}

.colour-block-green-7-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #000 60%, #000 100%)
    }
}

.colour-block-green-7-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #000 40%, #000 100%)
    }
}

.colour-block-green-7-grey[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-green-7-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-green-7-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-green-7-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #333 50%, #333 100%)
}

.colour-block-green-7-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #333 60%, #333 100%)
    }
}

.colour-block-green-7-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #333 40%, #333 100%)
    }
}

.colour-block-green-7-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #333 50%, #333 100%)
}

.colour-block-green-7-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #333 60%, #333 100%)
    }
}

.colour-block-green-7-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #333 40%, #333 100%)
    }
}

.colour-block-green-7-blue[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-green-7-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-green-7-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-green-7-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-green-7-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-green-7-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-green-7-yellow[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-green-7-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-green-7-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-green-7-green[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #007859 50%, #007859 100%)
}

.colour-block-green-7-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-green-7-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-green-7-green-7[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-green-7-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-green-7-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-green-7-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #007859 50%, #007859 100%)
}

.colour-block-green-7-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-green-7-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-green-7-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #f27305 50%, #f27305 100%)
}

.colour-block-green-7-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-green-7-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-green-7-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #f27305 50%, #f27305 100%)
}

.colour-block-green-7-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-green-7-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-green-7-red[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-green-7-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-green-7-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-green-7-purple[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-green-7-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-green-7-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-green-7-sand[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-green-7-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-green-7-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-green-7-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-green-7-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-green-7-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #c7faeb 0, #c7faeb 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-green-7-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #c7faeb 0, #c7faeb 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-dark-green-white[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #fff 50%, #fff 100%)
}

.colour-block-dark-green-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-dark-green-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-dark-green-black[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #000 50%, #000 100%)
}

.colour-block-dark-green-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #000 60%, #000 100%)
    }
}

.colour-block-dark-green-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #000 40%, #000 100%)
    }
}

.colour-block-dark-green-grey[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-dark-green-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-dark-green-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-dark-green-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #333 50%, #333 100%)
}

.colour-block-dark-green-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #333 60%, #333 100%)
    }
}

.colour-block-dark-green-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #333 40%, #333 100%)
    }
}

.colour-block-dark-green-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #333 50%, #333 100%)
}

.colour-block-dark-green-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #333 60%, #333 100%)
    }
}

.colour-block-dark-green-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #333 40%, #333 100%)
    }
}

.colour-block-dark-green-blue[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-dark-green-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-dark-green-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-dark-green-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-dark-green-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-dark-green-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-dark-green-yellow[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-dark-green-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-dark-green-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-dark-green-green[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #007859 50%, #007859 100%)
}

.colour-block-dark-green-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-dark-green-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-dark-green-green-7[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-dark-green-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-dark-green-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-dark-green-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #007859 50%, #007859 100%)
}

.colour-block-dark-green-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-dark-green-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-dark-green-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #f27305 50%, #f27305 100%)
}

.colour-block-dark-green-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-dark-green-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-dark-green-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #f27305 50%, #f27305 100%)
}

.colour-block-dark-green-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-dark-green-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-dark-green-red[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-dark-green-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-dark-green-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-dark-green-purple[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-dark-green-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-dark-green-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-dark-green-sand[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-dark-green-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-dark-green-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-dark-green-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #007859 0, #007859 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-dark-green-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-dark-green-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #007859 0, #007859 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-dark-green-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #007859 0, #007859 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-dark-orange-white[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #fff 50%, #fff 100%)
}

.colour-block-dark-orange-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-dark-orange-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-dark-orange-black[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #000 50%, #000 100%)
}

.colour-block-dark-orange-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #000 60%, #000 100%)
    }
}

.colour-block-dark-orange-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #000 40%, #000 100%)
    }
}

.colour-block-dark-orange-grey[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-dark-orange-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-dark-orange-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-dark-orange-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #333 50%, #333 100%)
}

.colour-block-dark-orange-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #333 60%, #333 100%)
    }
}

.colour-block-dark-orange-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #333 40%, #333 100%)
    }
}

.colour-block-dark-orange-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #333 50%, #333 100%)
}

.colour-block-dark-orange-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #333 60%, #333 100%)
    }
}

.colour-block-dark-orange-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #333 40%, #333 100%)
    }
}

.colour-block-dark-orange-blue[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-dark-orange-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-dark-orange-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-dark-orange-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-dark-orange-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-dark-orange-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-dark-orange-yellow[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-dark-orange-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-dark-orange-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-dark-orange-green[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #007859 50%, #007859 100%)
}

.colour-block-dark-orange-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-dark-orange-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-dark-orange-green-7[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-dark-orange-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-dark-orange-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-dark-orange-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #007859 50%, #007859 100%)
}

.colour-block-dark-orange-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-dark-orange-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-dark-orange-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #f27305 50%, #f27305 100%)
}

.colour-block-dark-orange-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-dark-orange-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-dark-orange-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #f27305 50%, #f27305 100%)
}

.colour-block-dark-orange-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-dark-orange-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-dark-orange-red[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-dark-orange-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-dark-orange-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-dark-orange-purple[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-dark-orange-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-dark-orange-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-dark-orange-sand[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-dark-orange-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-dark-orange-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-dark-orange-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-dark-orange-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-dark-orange-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-dark-orange-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-light-orange-white[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #fff 50%, #fff 100%)
}

.colour-block-light-orange-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-light-orange-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-light-orange-black[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #000 50%, #000 100%)
}

.colour-block-light-orange-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #000 60%, #000 100%)
    }
}

.colour-block-light-orange-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #000 40%, #000 100%)
    }
}

.colour-block-light-orange-grey[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-light-orange-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-light-orange-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-light-orange-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #333 50%, #333 100%)
}

.colour-block-light-orange-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #333 60%, #333 100%)
    }
}

.colour-block-light-orange-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #333 40%, #333 100%)
    }
}

.colour-block-light-orange-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #333 50%, #333 100%)
}

.colour-block-light-orange-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #333 60%, #333 100%)
    }
}

.colour-block-light-orange-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #333 40%, #333 100%)
    }
}

.colour-block-light-orange-blue[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-light-orange-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-light-orange-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-light-orange-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-light-orange-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-light-orange-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-light-orange-yellow[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-light-orange-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-light-orange-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-light-orange-green[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #007859 50%, #007859 100%)
}

.colour-block-light-orange-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-light-orange-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-light-orange-green-7[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-light-orange-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-light-orange-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-light-orange-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #007859 50%, #007859 100%)
}

.colour-block-light-orange-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-light-orange-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-light-orange-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #f27305 50%, #f27305 100%)
}

.colour-block-light-orange-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-light-orange-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-light-orange-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #f27305 50%, #f27305 100%)
}

.colour-block-light-orange-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-light-orange-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-light-orange-red[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-light-orange-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-light-orange-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-light-orange-purple[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-light-orange-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-light-orange-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-light-orange-sand[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-light-orange-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-light-orange-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-light-orange-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #f27305 0, #f27305 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-light-orange-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-light-orange-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #f27305 0, #f27305 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-light-orange-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #f27305 0, #f27305 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-red-white[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #fff 50%, #fff 100%)
}

.colour-block-red-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-red-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-red-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-red-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-red-black[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #000 50%, #000 100%)
}

.colour-block-red-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-red-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #000 60%, #000 100%)
    }
}

.colour-block-red-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-red-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #000 40%, #000 100%)
    }
}

.colour-block-red-grey[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-red-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-red-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-red-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-red-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-red-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #333 50%, #333 100%)
}

.colour-block-red-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-red-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #333 60%, #333 100%)
    }
}

.colour-block-red-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-red-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #333 40%, #333 100%)
    }
}

.colour-block-red-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #333 50%, #333 100%)
}

.colour-block-red-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-red-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #333 60%, #333 100%)
    }
}

.colour-block-red-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-red-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #333 40%, #333 100%)
    }
}

.colour-block-red-blue[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-red-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-red-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-red-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-red-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-red-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-red-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-red-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-red-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-red-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-red-yellow[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-red-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-red-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-red-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-red-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-red-green[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #007859 50%, #007859 100%)
}

.colour-block-red-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-red-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-red-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-red-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-red-green-7[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-red-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-red-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-red-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-red-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-red-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #007859 50%, #007859 100%)
}

.colour-block-red-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-red-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-red-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-red-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-red-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #f27305 50%, #f27305 100%)
}

.colour-block-red-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-red-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-red-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-red-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-red-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #f27305 50%, #f27305 100%)
}

.colour-block-red-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-red-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-red-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-red-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-red-red[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-red-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-red-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-red-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-red-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-red-purple[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-red-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-red-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-red-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-red-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-red-sand[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-red-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-red-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-red-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-red-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-red-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #cf2938 0, #cf2938 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-red-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-red-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-red-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #cf2938 0, #cf2938 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-red-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #cf2938 0, #cf2938 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-purple-white[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #fff 50%, #fff 100%)
}

.colour-block-purple-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-purple-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-purple-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-purple-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-purple-black[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #000 50%, #000 100%)
}

.colour-block-purple-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-purple-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #000 60%, #000 100%)
    }
}

.colour-block-purple-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-purple-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #000 40%, #000 100%)
    }
}

.colour-block-purple-grey[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-purple-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-purple-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-purple-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-purple-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-purple-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #333 50%, #333 100%)
}

.colour-block-purple-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-purple-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #333 60%, #333 100%)
    }
}

.colour-block-purple-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-purple-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #333 40%, #333 100%)
    }
}

.colour-block-purple-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #333 50%, #333 100%)
}

.colour-block-purple-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-purple-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #333 60%, #333 100%)
    }
}

.colour-block-purple-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-purple-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #333 40%, #333 100%)
    }
}

.colour-block-purple-blue[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-purple-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-purple-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-purple-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-purple-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-purple-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-purple-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-purple-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-purple-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-purple-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-purple-yellow[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-purple-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-purple-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-purple-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-purple-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-purple-green[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #007859 50%, #007859 100%)
}

.colour-block-purple-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-purple-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-purple-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-purple-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-purple-green-7[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-purple-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-purple-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-purple-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-purple-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-purple-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #007859 50%, #007859 100%)
}

.colour-block-purple-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-purple-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-purple-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-purple-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-purple-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #f27305 50%, #f27305 100%)
}

.colour-block-purple-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-purple-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-purple-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-purple-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-purple-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #f27305 50%, #f27305 100%)
}

.colour-block-purple-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-purple-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-purple-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-purple-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-purple-red[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-purple-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-purple-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-purple-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-purple-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-purple-purple[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-purple-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-purple-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-purple-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-purple-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-purple-sand[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-purple-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-purple-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-purple-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-purple-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-purple-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #7526e5 0, #7526e5 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-purple-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-purple-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-purple-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #7526e5 0, #7526e5 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-purple-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #7526e5 0, #7526e5 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-sand-white[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #fff 50%, #fff 100%)
}

.colour-block-sand-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-sand-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-sand-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-sand-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-sand-black[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #000 50%, #000 100%)
}

.colour-block-sand-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-sand-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #000 60%, #000 100%)
    }
}

.colour-block-sand-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-sand-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #000 40%, #000 100%)
    }
}

.colour-block-sand-grey[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-sand-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-sand-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-sand-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #333 50%, #333 100%)
}

.colour-block-sand-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-sand-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #333 60%, #333 100%)
    }
}

.colour-block-sand-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-sand-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #333 40%, #333 100%)
    }
}

.colour-block-sand-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #333 50%, #333 100%)
}

.colour-block-sand-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-sand-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #333 60%, #333 100%)
    }
}

.colour-block-sand-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-sand-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #333 40%, #333 100%)
    }
}

.colour-block-sand-blue[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-sand-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-sand-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-sand-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-sand-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-sand-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-sand-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-sand-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-sand-yellow[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-sand-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-sand-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-sand-green[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #007859 50%, #007859 100%)
}

.colour-block-sand-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-sand-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-sand-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-sand-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-sand-green-7[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-sand-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-sand-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-sand-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-sand-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-sand-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #007859 50%, #007859 100%)
}

.colour-block-sand-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-sand-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-sand-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-sand-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-sand-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #f27305 50%, #f27305 100%)
}

.colour-block-sand-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-sand-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-sand-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-sand-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-sand-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #f27305 50%, #f27305 100%)
}

.colour-block-sand-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-sand-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-sand-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-sand-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-sand-red[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-sand-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-sand-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-sand-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-sand-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-sand-purple[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-sand-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-sand-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-sand-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-sand-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-sand-sand[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-sand-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-sand-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-sand-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-sand-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-sand-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-sand-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-sand-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-sand-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #ddb88a 0, #ddb88a 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-sand-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #ddb88a 0, #ddb88a 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.colour-block-sand-7-white[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #fff 50%, #fff 100%)
}

.colour-block-sand-7-white-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #fff 60%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-white-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #fff 60%, #fff 100%)
    }
}

.colour-block-sand-7-white-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #fff 40%, #fff 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-white-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #fff 40%, #fff 100%)
    }
}

.colour-block-sand-7-black[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #000 50%, #000 100%)
}

.colour-block-sand-7-black-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #000 60%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-black-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #000 60%, #000 100%)
    }
}

.colour-block-sand-7-black-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #000 40%, #000 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-black-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #000 40%, #000 100%)
    }
}

.colour-block-sand-7-grey[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #f7f7f7 50%, #f7f7f7 100%)
}

.colour-block-sand-7-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #f7f7f7 60%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #f7f7f7 60%, #f7f7f7 100%)
    }
}

.colour-block-sand-7-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #f7f7f7 40%, #f7f7f7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #f7f7f7 40%, #f7f7f7 100%)
    }
}

.colour-block-sand-7-grey-1[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #333 50%, #333 100%)
}

.colour-block-sand-7-grey-1-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-grey-1-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #333 60%, #333 100%)
    }
}

.colour-block-sand-7-grey-1-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-grey-1-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #333 40%, #333 100%)
    }
}

.colour-block-sand-7-dark-grey[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #333 50%, #333 100%)
}

.colour-block-sand-7-dark-grey-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #333 60%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-dark-grey-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #333 60%, #333 100%)
    }
}

.colour-block-sand-7-dark-grey-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #333 40%, #333 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-dark-grey-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #333 40%, #333 100%)
    }
}

.colour-block-sand-7-blue[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-sand-7-blue-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-blue-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-sand-7-blue-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-blue-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-sand-7-blue-7[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #c2e8ff 50%, #c2e8ff 100%)
}

.colour-block-sand-7-blue-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #c2e8ff 60%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-blue-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #c2e8ff 60%, #c2e8ff 100%)
    }
}

.colour-block-sand-7-blue-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #c2e8ff 40%, #c2e8ff 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-blue-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #c2e8ff 40%, #c2e8ff 100%)
    }
}

.colour-block-sand-7-yellow[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #0f7ac7 50%, #0f7ac7 100%)
}

.colour-block-sand-7-yellow-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #0f7ac7 60%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-yellow-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #0f7ac7 60%, #0f7ac7 100%)
    }
}

.colour-block-sand-7-yellow-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #0f7ac7 40%, #0f7ac7 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-yellow-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #0f7ac7 40%, #0f7ac7 100%)
    }
}

.colour-block-sand-7-green[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #007859 50%, #007859 100%)
}

.colour-block-sand-7-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-sand-7-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-sand-7-green-7[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #c7faeb 50%, #c7faeb 100%)
}

.colour-block-sand-7-green-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #c7faeb 60%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-green-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #c7faeb 60%, #c7faeb 100%)
    }
}

.colour-block-sand-7-green-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #c7faeb 40%, #c7faeb 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-green-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #c7faeb 40%, #c7faeb 100%)
    }
}

.colour-block-sand-7-dark-green[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #007859 50%, #007859 100%)
}

.colour-block-sand-7-dark-green-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #007859 60%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-dark-green-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #007859 60%, #007859 100%)
    }
}

.colour-block-sand-7-dark-green-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #007859 40%, #007859 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-dark-green-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #007859 40%, #007859 100%)
    }
}

.colour-block-sand-7-dark-orange[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #f27305 50%, #f27305 100%)
}

.colour-block-sand-7-dark-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-dark-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-sand-7-dark-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-dark-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-sand-7-light-orange[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #f27305 50%, #f27305 100%)
}

.colour-block-sand-7-light-orange-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #f27305 60%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-light-orange-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #f27305 60%, #f27305 100%)
    }
}

.colour-block-sand-7-light-orange-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #f27305 40%, #f27305 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-light-orange-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #f27305 40%, #f27305 100%)
    }
}

.colour-block-sand-7-red[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #cf2938 50%, #cf2938 100%)
}

.colour-block-sand-7-red-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #cf2938 60%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-red-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #cf2938 60%, #cf2938 100%)
    }
}

.colour-block-sand-7-red-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #cf2938 40%, #cf2938 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-red-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #cf2938 40%, #cf2938 100%)
    }
}

.colour-block-sand-7-purple[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #7526e5 50%, #7526e5 100%)
}

.colour-block-sand-7-purple-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #7526e5 60%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-purple-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #7526e5 60%, #7526e5 100%)
    }
}

.colour-block-sand-7-purple-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #7526e5 40%, #7526e5 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-purple-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #7526e5 40%, #7526e5 100%)
    }
}

.colour-block-sand-7-sand[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #ddb88a 50%, #ddb88a 100%)
}

.colour-block-sand-7-sand-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #ddb88a 60%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-sand-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #ddb88a 60%, #ddb88a 100%)
    }
}

.colour-block-sand-7-sand-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #ddb88a 40%, #ddb88a 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-sand-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #ddb88a 40%, #ddb88a 100%)
    }
}

.colour-block-sand-7-sand-7[data-component=true] {
    background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 50%, #fcedcc 50%, #fcedcc 100%)
}

.colour-block-sand-7-sand-7-vertical-sixtyFourty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 60%, #fcedcc 60%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-sand-7-vertical-sixtyFourty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 60%, #fcedcc 60%, #fcedcc 100%)
    }
}

.colour-block-sand-7-sand-7-vertical-fourtySixty[data-component=true] {
    background: linear-gradient(to right, #fcedcc 0, #fcedcc 40%, #fcedcc 40%, #fcedcc 100%)
}

@media(max-width:768px) {
    .colour-block-sand-7-sand-7-vertical-fourtySixty[data-component=true] {
        background: linear-gradient(to bottom, #fcedcc 0, #fcedcc 40%, #fcedcc 40%, #fcedcc 100%)
    }
}

.cmp-carousel__indicators {
    position: absolute;
    width: 1440px;
    margin-left: -680px;
    left: 50%;
    bottom: 20px;
    justify-content: flex-start;
    z-index: 3
}

@media(max-width:1439px) {
    .cmp-carousel__indicators {
        width: 80%;
        left: 0;
        margin-left: 40px
    }
}

@media(max-width:1024px) {
    .cmp-carousel__indicators {
        bottom: 45px;
        left: 0;
        margin-left: 12px
    }
}

@media(max-width:767px) {
    .cmp-carousel__indicators {
        left: 0;
        margin-left: 12px;
        bottom: 140px
    }
}

.cmp-carousel__indicator {
    position: relative;
    border-radius: 0;
    width: 88px;
    height: 2px;
    background-color: #fff;
    cursor: pointer
}

@media(max-width:640px) {
    .cmp-carousel__indicator {
        width: 25%
    }
}

.cmp-carousel__indicator:after {
    content: "";
    width: 0;
    height: 2px;
    width: 0;
    position: absolute;
    z-index: 1;
    background-color: #666;
    top: 0;
    left: 0
}

.cmp-carousel__indicator:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.cmp-carousel__actions {
    position: absolute;
    margin-left: -376px;
    left: 50%;
    bottom: 16px;
    z-index: 3
}

@media(max-width:1439px) {
    .cmp-carousel__actions {
        left: 344px;
        margin-left: 0
    }
}

@media(max-width:1024px) {
    .cmp-carousel__actions {
        bottom: 42px
    }
}

@media(max-width:1023px) {
    .cmp-carousel__actions {
        right: 16px;
        left: auto
    }
}

@media(max-width:767px) {
    .cmp-carousel__actions {
        bottom: 135px
    }
}

.cmp-carousel__action:focus-visible .cmp-carousel__action-icon {
    position: relative;
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.cmp-carousel__action--previous,
.cmp-carousel__action--next {
    display: none
}

.cmp-carousel__action--pause,
.cmp-carousel__action--play {
    cursor: pointer;
    border: 0;
    background: 0;
    color: #fff
}

@media(max-width:640px) {
    .cmp-carousel__action--pause,
    .cmp-carousel__action--play {
        padding: 0 8px
    }
}

.cmp-carousel__action--pause .cmp-carousel__action-icon,
.cmp-carousel__action--play .cmp-carousel__action-icon {
    display: block;
    font-family: "macquarie-common" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.cmp-carousel__action--pause .cmp-carousel__action-text,
.cmp-carousel__action--play .cmp-carousel__action-text {
    display: none
}

@keyframes w100 {
    from {
        width: 0
    }
    to {
        width: 100%
    }
}

.navigation .container {
    width: 100%;
    height: 48px;
    max-width: 1440px;
    margin: auto
}

@media(max-width:1023px) {
    .navigation .container {
        height: 100px
    }
}

@media(max-width:640px) {
    .navigation .container {
        height: 90px
    }
}

#appmenu {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    color: #fff;
    height: 48px
}

@media(max-width:1023px) {
    #appmenu {
        display: none
    }
}

#appmenu.is-active {
    display: block;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 100px;
    z-index: 10;
    margin-left: 0;
    overflow-y: scroll;
    left: 0;
    background-color: #fff;
    color: #000
}

@media(max-width:640px) {
    #appmenu.is-active {
        top: 90px;
        height: 90vh
    }
}

.toggle {
    display: none
}

@media(max-width:1023px) {
    .toggle {
        position: fixed;
        display: block;
        width: 70px;
        height: 100px;
        padding-top: 8px;
        top: 0;
        right: 0;
        cursor: pointer;
        border: 0;
        background-color: #000;
        z-index: 6
    }
    .toggle:focus {
        outline: 0
    }
    .toggle>span {
        display: block;
        height: 2px;
        width: 24px;
        overflow: hidden;
        color: #fff;
        background: #fff;
        margin: auto;
        margin-bottom: 8px;
        transition-property: transform, opacity, top, left;
        transition-duration: .2s;
        transition-timing-function: inherit
    }
}

@media(max-width:767px) {
    .toggle {
        width: 54px
    }
}

@media(max-width:640px) {
    .toggle {
        height: 90px
    }
}

.toggle[aria-expanded=true] {
    background-color: #fff
}

.toggle[aria-expanded=true] span {
    color: #000;
    background: #000
}

.toggle[aria-expanded=true] span:nth-child(1) {
    transform: rotate3d(0, 0, 1, 45deg);
    top: 50px;
    left: 25px;
    position: absolute
}

@media(max-width:768px) {
    .toggle[aria-expanded=true] span:nth-child(1) {
        top: 46px;
        left: 22px
    }
}

@media(max-width:640px) {
    .toggle[aria-expanded=true] span:nth-child(1) {
        left: 15px
    }
}

.toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0
}

.toggle[aria-expanded=true] span:nth-child(3) {
    transform: rotate3d(0, 0, 1, -45deg);
    top: 50px;
    left: 25px;
    position: absolute
}

@media(max-width:768px) {
    .toggle[aria-expanded=true] span:nth-child(3) {
        top: 46px;
        left: 22px
    }
}

@media(max-width:640px) {
    .toggle[aria-expanded=true] span:nth-child(3) {
        left: 15px
    }
}

#appmenu>li:first-child {
    padding-left: 16px;
    border-top-style: none
}

#appmenu>li {
    white-space: nowrap;
    display: block;
    padding: 0;
    margin: 0;
    float: left;
    text-align: center;
    position: relative;
    line-height: 2.5em;
    outline: 0;
    text-transform: uppercase
}

#appmenu>li>a {
    color: #fff;
    text-decoration: none;
    padding: .25em 2em .25em 2em;
    display: inline-block
}

@media(max-width:1023px) {
    #appmenu>li>a {
        color: #000;
        padding: 0
    }
}

#appmenu>li[aria-haspopup=true] {
    padding: .25em 3em .25em 2em
}

#appmenu>li[aria-haspopup=true]:after {
    content: "";
    position: absolute;
    top: 17px;
    right: 29px;
    width: 7px;
    height: 7px;
    border-style: solid;
    border-color: #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

@media(max-width:1023px) {
    #appmenu>li[aria-haspopup=true]:after {
        border-color: #000;
        right: 0;
        top: 25px
    }
}

@media(max-width:1023px) {
    #appmenu>li {
        float: none;
        text-align: left;
        border-top: 2px solid #000;
        margin: 0 20px;
        padding: .75em 0
    }
    #appmenu>li[aria-haspopup=true] {
        padding: .75em 0
    }
}

#appmenu :hover,
#appmenu :focus {
    background-color: #fff;
    color: #000;
    text-decoration: none
}

#appmenu>li:hover,
#appmenu>li:focus {
    color: #000
}

#appmenu>li:hover>a,
#appmenu>li:focus>a {
    color: #000
}

#appmenu>li:hover[aria-haspopup=true]:after,
#appmenu>li:focus[aria-haspopup=true]:after {
    content: "";
    position: absolute;
    top: 17px;
    right: 29px;
    width: 7px;
    height: 7px;
    border-style: solid;
    border-color: #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

@media(max-width:1023px) {
    #appmenu>li:hover[aria-haspopup=true]:after,
    #appmenu>li:focus[aria-haspopup=true]:after {
        top: 25px;
        right: 0
    }
}

#appmenu>li:hover[aria-haspopup=true][aria-expanded=true]:after,
#appmenu>li:focus[aria-haspopup=true][aria-expanded=true]:after {
    border-width: 2px 0 0 2px
}

@media(min-width:1024px) {
    #appmenu>li:hover[aria-haspopup=true][aria-expanded=true]:after,
    #appmenu>li:focus[aria-haspopup=true][aria-expanded=true]:after {
        position: absolute;
        top: 21px;
        right: 29px;
        border-style: solid;
        border-color: #000
    }
}

#appmenu>li>ul {
    display: none;
    position: absolute;
    background-color: #fff;
    color: #000;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0;
    margin: 0;
    width: 200%;
    text-align: left;
    list-style: none;
    z-index: 4
}

@media(max-width:1023px) {
    #appmenu>li>ul {
        position: relative
    }
}

@media(max-width:768px) {
    #appmenu>li>ul {
        width: auto
    }
}

#appmenu>li[aria-expanded=true]>ul {
    display: block;
    outline: 0;
    padding: 2em 2em 1em 2em;
    min-width: 40ch
}

@media(max-width:1023px) {
    #appmenu>li[aria-expanded=true]>ul {
        padding: 0 0 1em 0;
        min-width: auto
    }
}

#appmenu>li[aria-expanded=true] {
    background-color: #fff;
    color: #000
}

#appmenu>li[aria-expanded=true]:after {
    content: "";
    position: absolute;
    top: 21px;
    right: 29px;
    border-style: solid;
    border-color: #000;
    border-width: 2px 0 0 2px;
    transform: rotate(45deg)
}

.submenu__heading {
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.5em;
    padding-bottom: 1em;
    text-transform: none
}

@media(max-width:1023px) {
    .submenu__heading {
        width: 50%;
        padding-bottom: 0
    }
}

.submenu__heading a {
    color: #000
}

.submenu__item {
    border-top: 2px solid #f7f7f7;
    position: relative;
    padding: 0;
    margin: 0;
    text-transform: none
}

@media(max-width:1023px) {
    .submenu__item {
        border-top: 0;
        height: 45px
    }
}

.submenu__item>.arrow {
    opacity: 0;
    right: 15px
}

@media(max-width:1023px) {
    .submenu__item>.arrow {
        display: none
    }
}

.submenu__item:hover,
.submenu__item:focus {
    border-top-color: #000
}

.submenu__item:hover>.arrow,
.submenu__item:focus>.arrow {
    opacity: 1;
    right: -8px;
    transition-property: transform, opacity, right;
    transition-duration: .5s;
    transition-timing-function: inherit
}

.submenu__item:hover>.submenu__link,
.submenu__item:focus>.submenu__link {
    color: #000
}

.submenu__link {
    color: #666;
    text-decoration: none;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    white-space: normal;
    display: inline-block;
    padding: 16px 0;
    width: 95%;
    cursor: pointer
}

@media(min-width:1024px) {
    nav.cmp-navigation #appmenu .menu__item-login {
        display: none
    }
}

nav.cmp-navigation #appmenu .menu__item-login a.login-link {
    color: #000;
    text-decoration: none
}

nav.cmp-navigation #appmenu .menu__item-login a.login-link .label {
    padding-left: 5px
}

.arrow {
    display: inline;
    position: absolute;
    right: 0;
    top: 50%
}

.arrow::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    border-style: solid;
    border-color: #000;
    border-width: 2px 2px 0 0;
    position: absolute;
    transform-origin: 50% 50%
}

.arrow.left::before {
    transform: rotate(-135deg);
    margin: -15px 0 0 -10px
}

.arrow.up::before {
    transform: rotate(-45deg);
    margin: -10px 0 0 -15px
}

.arrow.down::before {
    transform: rotate(135deg);
    margin: -20px 0 0 -15px
}

.arrow.right::before {
    transform: rotate(45deg);
    margin: -6px 0 0 -22px
}

.arrow::after {
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    border-style: solid;
    border-color: #000;
    position: absolute;
    transform-origin: 50% 50%
}

.arrow.left::after {
    width: 40px;
    height: 0;
    border-width: 2px 0 0 0;
    transform: translate(-14px, -1px)
}

.arrow.up::after {
    width: 0;
    height: 40px;
    border-width: 0 2px 0 0;
    transform: translate(-1px, -14px)
}

.arrow.down::after {
    width: 0;
    height: 40px;
    border-width: 0 2px 0 0;
    transform: translate(-1px, -26px)
}

.arrow.right::after {
    width: 16px;
    height: 0;
    border-width: 2px 0 0 0;
    transform: translate(-26px, -1px)
}

.arrow.circle {
    background: rgba(233, 233, 180, .75);
    border-radius: 50px
}

.arrow.debug {
    outline: 1px solid #00008b
}

.arrow.debug::before {
    outline: 1px solid red
}

div[data-component=navigation-v2] {
    border-bottom: 1px solid #333;
    position: relative;
    z-index: 5
}

div[data-component=navigation-v2] .navigation-v2__wrapper {
    background-color: #000
}

div[data-component=navigation-v2] .nav-container {
    width: 100%;
    display: flex;
    align-items: center
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] {
        position: fixed;
        top: 0;
        width: 100%
    }
}

div[data-component=navigation-v2] #nav-menu {
    margin: 0;
    padding: 0;
    color: #fff;
    display: flex;
    flex: 1;
    margin-top: 1px
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu {
        display: none
    }
    div[data-component=navigation-v2] #nav-menu.navigation-v2--author {
        display: block
    }
}

div[data-component=navigation-v2] #nav-menu.is-active {
    display: block;
    position: fixed;
    height: calc(100% - 72px);
    width: 100vw;
    top: 72px;
    z-index: 10;
    margin-left: 0;
    overflow-y: auto;
    left: 0;
    background-color: #fff;
    color: #000
}

@media(max-width:1023px) {
    div[data-component=navigation-v2] #nav-menu.is-active {
        top: 72px;
        height: calc(100% - 72px)
    }
}

@media(max-width:640px) {
    div[data-component=navigation-v2] #nav-menu.is-active {
        top: 56px;
        height: calc(100% - 56px)
    }
}

div[data-component=navigation-v2] #nav-menu>li {
    white-space: nowrap;
    display: block;
    padding: 0;
    margin: 0;
    float: left;
    padding: 0 24px 0 24px;
    text-align: center;
    line-height: 72px;
    height: 72px;
    outline: 0;
    cursor: pointer;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light";
    box-sizing: border-box
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li {
        border-bottom: 0
    }
    div[data-component=navigation-v2] #nav-menu>li:last-child {
        border-bottom: 1px solid #666
    }
    div[data-component=navigation-v2] #nav-menu>li:last-child:hover,
    div[data-component=navigation-v2] #nav-menu>li:last-child:focus-visible {
        border-bottom: 1px solid #666
    }
}

div[data-component=navigation-v2] #nav-menu>li>a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li>a {
        color: #000;
        padding: 0;
        width: 100%
    }
}

div[data-component=navigation-v2] #nav-menu>li[aria-haspopup=true]:after {
    content: "";
    display: inline-block;
    position: relative;
    bottom: 3px;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-style: solid;
    border-color: #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li[aria-haspopup=true]:after {
        border-color: #000;
        position: absolute;
        right: 27px;
        top: 22px;
        width: 10px;
        height: 10px
    }
}

@media(max-width:639px) {
    div[data-component=navigation-v2] #nav-menu>li[aria-haspopup=true]:after {
        right: 20px
    }
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li {
        line-height: 58px;
        float: none;
        text-align: left;
        border-top: 1px solid #666;
        position: relative;
        height: auto;
        padding: 0 48px
    }
    div[data-component=navigation-v2] #nav-menu>li:first-child {
        border-top: 1px solid rgba(0, 0, 0, 0)
    }
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li.menu__item.navigation-v2--author {
        height: 4px;
        display: none
    }
}

@media(max-width:1023px) {
    div[data-component=navigation-v2] #nav-menu>li {
        padding: 0 48px
    }
}

@media(max-width:640px) {
    div[data-component=navigation-v2] #nav-menu>li {
        padding: 0 16px
    }
}

div[data-component=navigation-v2] #nav-menu>li:focus-visible {
    outline-offset: -1px;
    outline: 2px dashed #fff
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li:focus-visible:focus-visible {
        border-top: 1px solid #666;
        border-bottom: 1px solid #666;
        outline-offset: -4px;
        outline: 2px dashed #000
    }
    div[data-component=navigation-v2] #nav-menu>li:focus-visible:focus-visible:first-of-type {
        border-top: 1px solid rgba(0, 0, 0, 0);
        border-bottom: 1px solid rgba(0, 0, 0, 0)
    }
}

div[data-component=navigation-v2] #nav-menu>li:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;
    height: 72px;
    border-bottom: 1px solid #fff;
    box-shadow: 0 1px #fff
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li:hover {
        height: auto;
        border-bottom: 0
    }
}

div[data-component=navigation-v2] #nav-menu>li:hover>a {
    color: #000
}

div[data-component=navigation-v2] #nav-menu>li:hover[aria-haspopup=true]:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-style: solid;
    border-color: #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li:hover[aria-haspopup=true]:after {
        position: absolute;
        right: 27px;
        top: 22px;
        width: 10px;
        height: 10px
    }
}

@media(max-width:640px) {
    div[data-component=navigation-v2] #nav-menu>li:hover[aria-haspopup=true]:after {
        right: 20px
    }
}

div[data-component=navigation-v2] #nav-menu>li:hover[aria-haspopup=true][aria-expanded=true]:after {
    border-width: 2px 0 0 2px
}

@media(min-width:1024px) {
    div[data-component=navigation-v2] #nav-menu>li:hover[aria-haspopup=true][aria-expanded=true]:after {
        display: inline-block;
        border-style: solid;
        border-color: #000
    }
}

div[data-component=navigation-v2] #nav-menu>li>.submenu-container {
    display: none;
    position: absolute;
    background-color: #fff;
    color: #000;
    left: 0;
    top: 72px;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
    list-style: none;
    z-index: -1
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li>.submenu-container {
        background-color: rgba(0, 0, 0, 0);
        position: relative;
        top: auto;
        left: auto;
        z-index: auto
    }
}

@media(max-width:768px) {
    div[data-component=navigation-v2] #nav-menu>li>.submenu-container {
        width: auto
    }
}

div[data-component=navigation-v2] #nav-menu>li[aria-expanded=true]>.submenu-container {
    display: block;
    outline: 0;
    width: 100%;
    margin: auto;
    border-bottom: 1px solid #999
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li[aria-expanded=true]>.submenu-container {
        padding: 0 0 1em 0;
        min-width: auto;
        box-shadow: none;
        border-bottom: 0
    }
}

div[data-component=navigation-v2] #nav-menu>li[aria-expanded=true] {
    background-color: #fff;
    color: #000;
    height: 72px;
    box-shadow: 0 1px #fff;
    border-bottom: 1px solid #fff;
    outline: 0
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li[aria-expanded=true] {
        height: auto
    }
}

div[data-component=navigation-v2] #nav-menu>li[aria-expanded=true] a {
    color: #000;
    white-space: normal;
    width: 100%
}

div[data-component=navigation-v2] #nav-menu>li[aria-expanded=true]:after {
    content: "";
    display: inline-block;
    position: relative;
    top: 2px;
    border-style: solid;
    border-color: #000;
    border-width: 2px 0 0 2px;
    transform: rotate(45deg)
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] #nav-menu>li[aria-expanded=true]:after {
        position: absolute;
        right: 27px;
        top: 22px
    }
}

div[data-component=navigation-v2] #nav-menu .menu__item--push-left {
    margin-left: auto
}

div[data-component=navigation-v2] .toggle {
    display: none
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .toggle {
        position: fixed;
        display: block;
        width: 70px;
        height: 72px;
        padding-top: 8px;
        top: 0;
        right: 0;
        cursor: pointer;
        border: 0;
        background-color: #000;
        z-index: 4
    }
    div[data-component=navigation-v2] .toggle:focus-visible {
        outline: 2px dashed #fff;
        outline-offset: -2px
    }
    div[data-component=navigation-v2] .toggle>span {
        display: block;
        height: 2px;
        width: 24px;
        overflow: hidden;
        color: #000;
        background: #fff;
        margin: auto;
        margin-bottom: 8px;
        transition-property: transform, opacity, top, left;
        transition-duration: .2s;
        transition-timing-function: inherit
    }
}

@media(max-width:767px) {
    div[data-component=navigation-v2] .toggle {
        width: 54px
    }
}

@media(max-width:640px) {
    div[data-component=navigation-v2] .toggle {
        height: 56px
    }
}

div[data-component=navigation-v2] .toggle[aria-expanded=true] {
    background-color: #fff
}

div[data-component=navigation-v2] .toggle[aria-expanded=true]:focus-visible {
    outline: 2px dashed #000;
    outline-offset: -2px
}

div[data-component=navigation-v2] .toggle[aria-expanded=true] span {
    color: #000;
    background: #000
}

div[data-component=navigation-v2] .toggle[aria-expanded=true] span:nth-child(1) {
    transform: rotate3d(0, 0, 1, 45deg);
    top: 36px;
    left: 25px;
    position: absolute
}

@media(max-width:767px) {
    div[data-component=navigation-v2] .toggle[aria-expanded=true] span:nth-child(1) {
        left: 16px
    }
}

@media(max-width:640px) {
    div[data-component=navigation-v2] .toggle[aria-expanded=true] span:nth-child(1) {
        top: 28px
    }
}

div[data-component=navigation-v2] .toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0
}

div[data-component=navigation-v2] .toggle[aria-expanded=true] span:nth-child(3) {
    transform: rotate3d(0, 0, 1, -45deg);
    top: 36px;
    left: 25px;
    position: absolute
}

@media(max-width:767px) {
    div[data-component=navigation-v2] .toggle[aria-expanded=true] span:nth-child(3) {
        left: 16px
    }
}

@media(max-width:640px) {
    div[data-component=navigation-v2] .toggle[aria-expanded=true] span:nth-child(3) {
        top: 28px
    }
}

div[data-component=navigation-v2] .submenu {
    padding: 40px 48px;
    list-style: none;
    cursor: auto
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .submenu {
        display: -ms-grid;
        -ms-grid-columns: 1fr 1fr 1fr 1fr
    }
    div[data-component=navigation-v2] .submenu__group {
        padding-left: 48px
    }
}

@media(-ms-high-contrast:none)and (max-width:1365px) {
    div[data-component=navigation-v2] .submenu__group {
        padding: 0
    }
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .submenu__group:nth-child(1) {
        -ms-grid-column: 1;
        -ms-grid-row: 1
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(2) {
        -ms-grid-column: 2;
        -ms-grid-row: 1
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(3) {
        -ms-grid-column: 3;
        -ms-grid-row: 1
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(4) {
        -ms-grid-column: 4;
        -ms-grid-row: 1
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(5) {
        -ms-grid-column: 1;
        -ms-grid-row: 2
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(6) {
        -ms-grid-column: 2;
        -ms-grid-row: 2
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(7) {
        -ms-grid-column: 3;
        -ms-grid-row: 2
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(8) {
        -ms-grid-column: 4;
        -ms-grid-row: 2
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(9) {
        -ms-grid-column: 5;
        -ms-grid-row: 3
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(10) {
        -ms-grid-column: 6;
        -ms-grid-row: 3
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(11) {
        -ms-grid-column: 7;
        -ms-grid-row: 3
    }
    div[data-component=navigation-v2] .submenu__group:nth-child(12) {
        -ms-grid-column: 8;
        -ms-grid-row: 3
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group {
        padding-left: 48px
    }
}

@media(-ms-high-contrast:none)and (max-width:1365px) {
    div[data-component=navigation-v2] .submenu--with-description .submenu__group {
        padding: 0
    }
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:first-child {
        padding-left: 0;
        -ms-grid-row-span: 2;
        -ms-grid-column: 1
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:nth-child(2) {
        -ms-grid-column: 2;
        -ms-grid-row: 1
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:nth-child(3) {
        -ms-grid-column: 3;
        -ms-grid-row: 1
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:nth-child(4) {
        -ms-grid-column: 4;
        -ms-grid-row: 1
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:nth-child(5) {
        -ms-grid-column: 2;
        -ms-grid-row: 2
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:nth-child(6) {
        -ms-grid-column: 3;
        -ms-grid-row: 2
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:nth-child(7) {
        -ms-grid-column: 4;
        -ms-grid-row: 2
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:nth-child(8) {
        -ms-grid-column: 2;
        -ms-grid-row: 3
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:nth-child(9) {
        -ms-grid-column: 3;
        -ms-grid-row: 3
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:nth-child(10) {
        -ms-grid-column: 4;
        -ms-grid-row: 3
    }
}

@supports(display:grid) {
    div[data-component=navigation-v2] .submenu {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
        grid-gap: 48px
    }
    div[data-component=navigation-v2] .submenu__group {
        width: auto;
        padding-left: initial
    }
    div[data-component=navigation-v2] .submenu__group:first-child {
        padding-left: initial
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:first-child {
        grid-row: 1/3;
        outline: 0
    }
    div[data-component=navigation-v2] .submenu--with-description .submenu__group:focus-visible a {
        outline-offset: 2px;
        outline: 2px dashed #000;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding-left: .5rem;
        padding-right: .5rem;
        line-height: 1.3rem
    }
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .submenu {
        display: block;
        padding: 0
    }
}

div[data-component=navigation-v2] .submenu__heading {
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light";
    margin-top: 16px;
    padding-bottom: 0
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .submenu__heading {
        width: 50%;
        padding-bottom: 0;
        display: none
    }
}

div[data-component=navigation-v2] .submenu__heading a {
    color: #000
}

div[data-component=navigation-v2] .submenu__description {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light";
    white-space: normal;
    margin-bottom: 0
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .submenu__description {
        display: none
    }
}

div[data-component=navigation-v2] .submenu__list {
    padding-left: 0;
    list-style: none;
    line-height: normal
}

div[data-component=navigation-v2] .submenu__arrow-right {
    margin-right: 16px
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .submenu__arrow-right {
        display: none
    }
}

div[data-component=navigation-v2] .submenu__item {
    position: relative;
    padding: 0;
    margin: 0;
    text-transform: none;
    border-top: 0;
    margin: 8px 0
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .submenu__item {
        border-top: 0;
        height: auto
    }
}

div[data-component=navigation-v2] .submenu__item a {
    text-decoration: none;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

div[data-component=navigation-v2] .submenu__item>.arrow {
    opacity: 0;
    right: 15px
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .submenu__item>.arrow {
        display: none
    }
}

div[data-component=navigation-v2] .submenu__item:focus-visible {
    outline: 0
}

div[data-component=navigation-v2] .submenu__item:focus-visible a {
    display: inline-block;
    outline-offset: 0;
    outline: 2px dashed #000;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding-left: .5rem;
    padding-right: .5rem
}

div[data-component=navigation-v2] .submenu__item:hover {
    border-top-color: #000
}

div[data-component=navigation-v2] .submenu__item:hover>.arrow {
    opacity: 1;
    right: -8px;
    transition-property: transform, opacity, right;
    transition-duration: .5s;
    transition-timing-function: inherit
}

div[data-component=navigation-v2] .submenu__item:hover>.submenu__link {
    color: #000
}

div[data-component=navigation-v2] .submenu__link {
    color: #666;
    text-decoration: none;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: normal;
    word-break: break-word;
    white-space: normal;
    cursor: pointer;
    padding: 0;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light";
    width: auto
}

@media(max-width:1023px) {
    div[data-component=navigation-v2] .submenu__link {
        font-size: 1rem;
        line-height: 1.625rem
    }
}

div[data-component=navigation-v2] .submenu__link:hover {
    text-decoration: underline
}

div[data-component=navigation-v2] .submenu__group-heading {
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light";
    font-size: 1rem;
    line-height: 1.75rem;
    color: #666
}

@media(max-width:1023px) {
    div[data-component=navigation-v2] .submenu__group-heading {
        font-size: .875rem;
        line-height: 1.5rem
    }
}

div[data-component=navigation-v2] .arrow {
    display: inline;
    position: absolute;
    right: 0;
    top: 50%
}

div[data-component=navigation-v2] .arrow::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    border-style: solid;
    border-color: #000;
    border-width: 2px 2px 0 0;
    position: absolute;
    transform-origin: 50% 50%
}

div[data-component=navigation-v2] .arrow.left::before {
    transform: rotate(-135deg);
    margin: -15px 0 0 -10px
}

div[data-component=navigation-v2] .arrow.up::before {
    transform: rotate(-45deg);
    margin: -10px 0 0 -15px
}

div[data-component=navigation-v2] .arrow.down::before {
    transform: rotate(135deg);
    margin: -20px 0 0 -15px
}

div[data-component=navigation-v2] .arrow.right::before {
    transform: rotate(45deg);
    margin: -6px 0 0 -22px
}

div[data-component=navigation-v2] .arrow::after {
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    border-style: solid;
    border-color: #000;
    position: absolute;
    transform-origin: 50% 50%
}

div[data-component=navigation-v2] .arrow.left::after {
    width: 40px;
    height: 0;
    border-width: 2px 0 0 0;
    transform: translate(-14px, -1px)
}

div[data-component=navigation-v2] .arrow.up::after {
    width: 0;
    height: 40px;
    border-width: 0 2px 0 0;
    transform: translate(-1px, -14px)
}

div[data-component=navigation-v2] .arrow.down::after {
    width: 0;
    height: 40px;
    border-width: 0 2px 0 0;
    transform: translate(-1px, -26px)
}

div[data-component=navigation-v2] .arrow.right::after {
    width: 16px;
    height: 0;
    border-width: 2px 0 0 0;
    transform: translate(-26px, -1px)
}

div[data-component=navigation-v2] .arrow.circle {
    background: rgba(233, 233, 180, .75);
    border-radius: 50px
}

div[data-component=navigation-v2] .arrow.debug {
    outline: 1px solid #00008b
}

div[data-component=navigation-v2] .arrow.debug::before {
    outline: 1px solid red
}

div[data-component=navigation-v2] .container.header {
    height: 72px;
    padding: 0 48px;
    width: auto;
    max-width: none
}

@media(max-width:1023px) {
    div[data-component=navigation-v2] .container.header {
        padding: 0 48px
    }
}

@media(max-width:639px) {
    div[data-component=navigation-v2] .container.header {
        height: 56px;
        padding: 0 16px
    }
}

div[data-component=navigation-v2] .header {
    display: flex;
    align-items: center
}

div[data-component=navigation-v2] .header__logo-link {
    margin-left: -1rem;
    padding-left: 1rem;
    align-self: stretch
}

div[data-component=navigation-v2] .header__logo-link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: -2px
}

div[data-component=navigation-v2] .header__logo-wrapper {
    display: flex;
    align-self: stretch;
    height: 100%
}

div[data-component=navigation-v2] .header__logo {
    align-self: center;
    width: 170px;
    height: auto;
    padding-right: 24px
}

@media(max-width:1365px) {
    div[data-component=navigation-v2]+.responsive-height {
        padding-top: 72px
    }
}

@media(max-width:640px) {
    div[data-component=navigation-v2]+.responsive-height {
        padding-top: 56px
    }
}

div[data-component=side-navigation] {
    background-color: #212121;
    color: #fff;
    font-size: .875rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    position: absolute;
    width: 250px;
    z-index: 9999;
    box-shadow: none
}

div[data-component=side-navigation].collapsed {
    left: -250px
}

@media screen and (max-width:641px) {
    div[data-component=side-navigation].collapsed {
        left: -100%
    }
}

div[data-component=side-navigation] a {
    color: #fff;
    text-decoration: none
}

div[data-component=side-navigation] hr {
    border: 0;
    background-color: #414141;
    height: 1px;
    margin: 0 24px
}

div[data-component=side-navigation] ol {
    list-style-type: none;
    padding-left: 0;
    overflow: inherit;
    scrollbar-width: none;
    -ms-overflow-style: none
}

div[data-component=side-navigation] ol::-webkit-scrollbar {
    display: none
}

@media(max-width:1365px) {
    div[data-component=side-navigation] ol.first-list {
        display: none
    }
    .sidenav-expanded div[data-component=side-navigation] ol.first-list {
        display: block;
        margin: 0;
        background-color: #fff;
        overflow-y: auto;
        flex: 1
    }
}

div[data-component=side-navigation] ol.first-list::-webkit-scrollbar {
    display: none
}

div[data-component=side-navigation] ol.first-list>li .header {
    line-height: 40px;
    font-size: 14px
}

div[data-component=side-navigation] ol.first-list>li.expanded .header__arrow-1 {
    transform: rotate(270deg)
}

div[data-component=side-navigation] ol.first-list>li.expanded .second-list {
    display: block
}

div[data-component=side-navigation] ol.second-list {
    display: none
}

div[data-component=side-navigation] ol.second-list>li .header {
    line-height: 32px;
    padding-left: 20px
}

div[data-component=side-navigation] ol.second-list>li.expanded .header__arrow-2 {
    transform: rotate(270deg)
}

div[data-component=side-navigation] ol.second-list>li.expanded .third-list {
    display: block
}

div[data-component=side-navigation] ol .third-list>li .header {
    line-height: 32px;
    padding-left: 20px
}

div[data-component=side-navigation] ol.third-list {
    display: none
}

div[data-component=side-navigation] ol.third-list>li.expanded .header__arrow-fourth {
    transform: rotate(270deg)
}

div[data-component=side-navigation] ol.third-list>li.expanded .fourth-list {
    display: block
}

div[data-component=side-navigation] ol li {
    padding: 4px 0
}

div[data-component=side-navigation] ol li .header {
    position: relative;
    cursor: pointer;
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular"
}

div[data-component=side-navigation] ol li .header:hover {
    background-color: #414141
}

@media(max-width:1365px) {
    div[data-component=side-navigation] ol li .header:hover {
        background-color: rgba(0, 0, 0, 0)
    }
}

div[data-component=side-navigation] ol li .header__label {
    margin-top: 13px;
    font-size: .75rem;
    opacity: .6
}

div[data-component=side-navigation] ol li .header__label:hover {
    cursor: default;
    background-color: rgba(0, 0, 0, 0)
}

div[data-component=side-navigation] ol li .header__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

div[data-component=side-navigation] ol li .header__parent__indicator {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #0f7ac7
}

div[data-component=side-navigation] ol li .header__indicator {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #0f7ac7
}

div[data-component=side-navigation] ol li .header__arrow-1,
div[data-component=side-navigation] ol li .header__arrow-2 {
    transform: rotate(90deg)
}

div[data-component=side-navigation] ol li.active>a>.header {
    font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", "NotoSansSC-Medium", "NotoSansJP-Medium"
}

div[data-component=side-navigation] ol hr {
    margin-top: 8px
}

@media screen and (max-width:641px) {
    div[data-component=side-navigation].collapsed .sidenav-menu {
        right: -57px;
        box-shadow: none
    }
}

div[data-component=side-navigation] .sidenav-menu {
    display: none;
    position: absolute;
    right: -57px;
    top: 0;
    color: #000;
    background-color: #212121;
    padding: 21px
}

div[data-component=side-navigation] .sidenav-menu else {
    box-shadow: none
}

@media screen and (max-width:641px) {
    div[data-component=side-navigation] .sidenav-menu {
        right: 0;
        box-shadow: none
    }
}

div[data-component=side-navigation] .sidenav-menu .menu-button {
    display: inline-block;
    color: #fff;
    transform: rotate(180deg)
}

div[data-component=side-navigation] .sidenav-login-btn {
    display: none
}

div[data-component=side-navigation] .sidenav-login-btn .header__title {
    justify-content: flex-start
}

div[data-component=side-navigation] .sidenav-login-btn .header__title .icon {
    margin-right: 8px
}

@media(max-width:1365px) {
    div[data-component=side-navigation] .sidenav-login-btn {
        display: block
    }
}

div[data-component=side-navigation] .sidenav-toggle-btn {
    display: none
}

@media(max-width:1365px) {
    div[data-component=side-navigation] .sidenav-toggle-btn {
        position: relative;
        display: block;
        align-self: flex-end;
        width: 70px;
        height: 73px;
        cursor: pointer;
        border: 0;
        background-color: rgba(0, 0, 0, 0)
    }
    div[data-component=side-navigation] .sidenav-toggle-btn:focus {
        outline: 0
    }
    div[data-component=side-navigation] .sidenav-toggle-btn>span {
        display: block;
        height: 2px;
        width: 24px;
        overflow: hidden;
        color: #000;
        background: #fff;
        margin: auto;
        margin-bottom: 8px;
        transition-property: transform, opacity, top, left;
        transition-duration: .2s;
        transition-timing-function: inherit
    }
}

div[data-component=side-navigation] .sidenav-toggle-btn[aria-expanded=true] {
    background-color: #fff
}

div[data-component=side-navigation] .sidenav-toggle-btn[aria-expanded=true] span {
    color: #000;
    background: #000
}

div[data-component=side-navigation] .sidenav-toggle-btn[aria-expanded=true] span:nth-child(1) {
    transform: rotate3d(0, 0, 1, 45deg);
    top: 36px;
    left: 25px;
    position: absolute
}

div[data-component=side-navigation] .sidenav-toggle-btn[aria-expanded=true] span:nth-child(2) {
    opacity: 0
}

div[data-component=side-navigation] .sidenav-toggle-btn[aria-expanded=true] span:nth-child(3) {
    transform: rotate3d(0, 0, 1, -45deg);
    top: 36px;
    left: 25px;
    position: absolute
}

@media(max-width:1365px) {
    div[data-component=side-navigation] {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        transform: translateY(0) !important;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1000000
    }
    div[data-component=side-navigation] a {
        color: #212121
    }
}

.side-navigation {
    padding: 0 !important
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .region-submenu {
        display: -ms-grid;
        -ms-grid-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
        -ms-grid-rows: 150px 12px 1fr
    }
}

@media(-ms-high-contrast:none)and (max-width:1365px) {
    div[data-component=navigation-v2] .region-submenu {
        display: block
    }
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .region-submenu__group {
        width: auto;
        padding-left: initial;
        -ms-grid-row-span: 3;
        color: #666
    }
}

@media(-ms-high-contrast:none)and (max-width:1365px) {
    div[data-component=navigation-v2] .region-submenu__group {
        padding: 0
    }
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .region-submenu__group:first-child {
        -ms-grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1
    }
    div[data-component=navigation-v2] .region-submenu__group:nth-child(2) {
        -ms-grid-column: 1;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1
    }
    div[data-component=navigation-v2] .region-submenu__group:nth-child(3) {
        -ms-grid-column: 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 3
    }
    div[data-component=navigation-v2] .region-submenu__group:nth-child(4) {
        -ms-grid-column: 5;
        -ms-grid-row: 1;
        -ms-grid-row-span: 3
    }
    div[data-component=navigation-v2] .region-submenu--with-description {
        color: #000
    }
}

@media(-ms-high-contrast:none)and (max-width:1365px) {
    div[data-component=navigation-v2] .region-submenu--with-description .region-submenu__group {
        padding: 0
    }
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .region-submenu--with-description .region-submenu__group:first-child {
        -ms-grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 3
    }
    div[data-component=navigation-v2] .region-submenu--with-description .region-submenu__group:nth-child(2) {
        -ms-grid-column: 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1
    }
    div[data-component=navigation-v2] .region-submenu--with-description .region-submenu__group:nth-child(3) {
        -ms-grid-column: 3;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1
    }
    div[data-component=navigation-v2] .region-submenu--with-description .region-submenu__group:nth-child(4) {
        -ms-grid-column: 5;
        -ms-grid-row: 1;
        -ms-grid-row-span: 3
    }
    div[data-component=navigation-v2] .region-submenu--with-description .region-submenu__group:nth-child(5) {
        -ms-grid-column: 7;
        -ms-grid-row: 1;
        -ms-grid-row-span: 3
    }
}

@supports(display:grid) {
    div[data-component=navigation-v2] .region-submenu {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 150px 1fr;
        grid-column-gap: 48px;
        grid-row-gap: 12px
    }
    @media(max-width:1365px) {
        div[data-component=navigation-v2] .region-submenu {
            display: block
        }
    }
    div[data-component=navigation-v2] .region-submenu__group {
        width: auto;
        padding-left: initial;
        grid-row: span 2;
        color: #666
    }
    div[data-component=navigation-v2] .region-submenu__group:first-child {
        padding-left: initial;
        grid-row: 1/2
    }
    div[data-component=navigation-v2] .region-submenu__group:nth-child(2) {
        grid-row: 2/3
    }
    div[data-component=navigation-v2] .region-submenu--with-description {
        color: #000
    }
    div[data-component=navigation-v2] .region-submenu--with-description .region-submenu__group:first-child {
        grid-row: span 2
    }
    div[data-component=navigation-v2] .region-submenu--with-description .region-submenu__group:nth-child(2) {
        grid-column: 2;
        grid-row: 1/2
    }
    div[data-component=navigation-v2] .region-submenu--with-description .region-submenu__group:nth-child(3) {
        grid-column: 2;
        grid-row: 2/3
    }
}

div[data-component=navigation-v2] .region-menu__globe {
    margin-right: 8px
}

div[data-component=navigation-v2] .region-menu__title {
    display: block;
    height: 0;
    width: 0;
    overflow: hidden
}

div[data-component=navigation-v2] .region-selector-menu-item {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 72px;
    margin-left: auto
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .region-selector-menu-item {
        margin-left: calc(100% - 160px)
    }
}

div[data-component=navigation-v2] .region-selector-menu-item>li {
    display: block
}

div[data-component=navigation-v2] .region-selector-menu-item>li .submenu-container {
    display: none
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .submenu__group {
        padding-left: 0
    }
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .login-submenu {
        display: -ms-grid;
        -ms-grid-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
        -ms-grid-rows: 1fr
    }
}

@media(-ms-high-contrast:none)and (max-width:1365px) {
    div[data-component=navigation-v2] .login-submenu {
        display: block
    }
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .login-submenu__group {
        width: auto;
        padding-left: initial;
        -ms-grid-row-span: 1
    }
}

@media(-ms-high-contrast:none)and (max-width:1365px) {
    div[data-component=navigation-v2] .login-submenu__group {
        padding: 0
    }
}

@media all and (-ms-high-contrast:none) {
    div[data-component=navigation-v2] .login-submenu__group:first-child {
        -ms-grid-column: 1
    }
    div[data-component=navigation-v2] .login-submenu__group:nth-child(2) {
        -ms-grid-column: 3
    }
    div[data-component=navigation-v2] .login-submenu__group:nth-child(3) {
        -ms-grid-column: 5
    }
    div[data-component=navigation-v2] .login-submenu__group:nth-child(4) {
        -ms-grid-column: 7
    }
}

@supports(display:grid) {
    div[data-component=navigation-v2] .login-submenu {
        display: grid;
        grid-template-columns: repeat(4, minmax(1fr, 200px));
        grid-template-rows: 1fr;
        grid-column-gap: 48px
    }
    @media(max-width:1365px) {
        div[data-component=navigation-v2] .login-submenu {
            display: block
        }
    }
}

div[data-component=navigation-v2] .login-submenu__login {
    margin-right: 8px
}

div[data-component=navigation-v2] .login-submenu__login:hover {
    color: #000
}

div[data-component=navigation-v2] .login-submenu__group-heading {
    white-space: normal
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .login-submenu__group-heading {
        margin-top: 24px;
        margin-bottom: 16px
    }
}

div[data-component=navigation-v2] .login-submenu__group-description {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    white-space: normal;
    margin-top: 24px;
    margin-bottom: 24px
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .login-submenu__group-description {
        margin-top: 16px;
        margin-bottom: 16px
    }
}

div[data-component=navigation-v2] .login-menu-item {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 72px;
    margin-left: 24px
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .login-menu-item {
        display: none
    }
}

div[data-component=navigation-v2] .login-menu-item>li {
    display: block
}

div[data-component=navigation-v2] .login-menu-item>li .submenu-container {
    display: none
}

div[data-component=navigation-v2] .icon-external-link {
    font-size: .625rem;
    margin-left: 4px;
    position: relative;
    bottom: 8px
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .icon-external-link {
        bottom: 7px
    }
}

div[data-component=navigation-v2] #nav-menu>li[aria-expanded=true] a {
    width: auto
}

@keyframes spinner {
    to {
        transform: rotate(360deg)
    }
}

.spinner:after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    width: 32px;
    height: 32px;
    margin-top: -8px;
    margin-left: -24px;
    border-radius: 50%;
    border: 1px solid #ccc;
    border-top-color: #000;
    animation: spinner .6s linear infinite
}

@media(max-width:1365px) {
    .spinner:after {
        width: 28px;
        height: 28px;
        margin-top: -5px;
        margin-left: -24px
    }
}

div[data-component=navigation-v2] {
    z-index: 99999
}

div[data-component=navigation-v2] .search__container {
    margin-left: -2px
}

div[data-component=navigation-v2] .search__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: -2px
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .search__container {
        margin: 0;
        position: fixed;
        top: 0;
        right: 70px;
        border-left: 1px solid #666;
        border-right: 1px solid #666;
        box-sizing: border-box
    }
}

@media(max-width:767px) {
    div[data-component=navigation-v2] .search__container {
        right: 54px
    }
}

div[data-component=navigation-v2] .search__icon-container {
    display: inline-flex;
    color: #fff;
    align-items: center;
    padding: 0 24px;
    height: 73px;
    cursor: pointer
}

div[data-component=navigation-v2] .search__icon-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: -2px
}

@media(max-width:767px) {
    div[data-component=navigation-v2] .search__icon-container {
        padding: 0 18px
    }
}

@media(max-width:639px) {
    div[data-component=navigation-v2] .search__icon-container {
        height: 56px
    }
}

@media(min-width:1025px) {
    div[data-component=navigation-v2] .search__icon-container:hover {
        background: #fff;
        color: #000;
        box-shadow: 0 1px #fff;
        outline: 0
    }
}

div[data-component=navigation-v2] .search__icon-container.expanded {
    background: #fff;
    color: #000;
    box-shadow: 0 1px #fff
}

div[data-component=navigation-v2] .search__icon-container.expanded .search__icon-close {
    display: block
}

div[data-component=navigation-v2] .search__icon-container.expanded .search__icon-search {
    display: none
}

div[data-component=navigation-v2] .search__icon-search {
    cursor: pointer
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .search__icon-search {
        font-size: 20px
    }
}

.expanded div[data-component=navigation-v2] .search__icon-search--nav {
    display: none
}

div[data-component=navigation-v2] .search__icon-search--overlay {
    border: 0;
    background: rgba(0, 0, 0, 0);
    padding: 0
}

div[data-component=navigation-v2] .search__icon-close {
    display: none;
    cursor: pointer
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .search__icon-close {
        font-size: 20px
    }
}

div[data-component=navigation-v2] .search__overlay {
    display: none
}

div[data-component=navigation-v2] .search__overlay.animated {
    display: block;
    position: absolute;
    width: 100%;
    top: 73px;
    z-index: -1;
    margin-left: 0;
    overflow-y: auto;
    left: 0;
    background-color: #fff;
    color: #000;
    box-sizing: border-box;
    border-bottom: 1px solid #999
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .search__overlay.animated {
        top: 73px;
        position: fixed
    }
}

@media(max-width:639px) {
    div[data-component=navigation-v2] .search__overlay.animated {
        top: 56px
    }
}

div[data-component=navigation-v2] .search__input {
    border: 0;
    font-size: 24px;
    color: #000;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    line-height: 36px;
    width: 100%
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .search__input {
        font-size: 18px;
        line-height: 28px
    }
}

div[data-component=navigation-v2] .search__fields {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 48px;
    margin-right: 73px;
    padding: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #999
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .search__fields {
        margin-right: 24px
    }
}

@media(max-width:639px) {
    div[data-component=navigation-v2] .search__fields {
        margin: 24px 16px 40px
    }
}

div[data-component=navigation-v2] .search__fields--has-results {
    margin-bottom: 0
}

div[data-component=navigation-v2] .search__fields--has-results span {
    display: block
}

div[data-component=navigation-v2] .search__results {
    position: relative;
    display: none;
    margin: 48px;
    margin-top: 0;
    margin-right: 73px;
    padding: 0;
    max-height: 0;
    transition: width 1s
}

@media(max-width:1365px) {
    div[data-component=navigation-v2] .search__results {
        margin-right: 24px
    }
}

@media(max-width:639px) {
    div[data-component=navigation-v2] .search__results {
        margin: 24px 16px 40px
    }
}

div[data-component=navigation-v2] .search__results--has-results {
    display: block;
    border: 0;
    max-height: 400px;
    transition: width 1s;
    margin-bottom: 24px
}

div[data-component=navigation-v2] .search__results a {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    float: none;
    color: #000;
    font-size: 24px;
    font-weight: normal;
    text-decoration: none;
    display: block;
    position: relative;
    text-align: left;
    cursor: pointer;
    min-height: 32px
}

div[data-component=navigation-v2] .search__results a h3 {
    display: block;
    font-size: 22px;
    padding: 16px 0 0 0;
    margin: 0
}

div[data-component=navigation-v2] .search__results a h3 i {
    bottom: auto
}

div[data-component=navigation-v2] .search__results a h3>span {
    display: block;
    font-size: 16px;
    line-height: 16px;
    margin-top: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    min-height: 20px;
    border-bottom: 1px solid #d3d3d3
}

div[data-component=navigation-v2] .search__results a h3 sup {
    font-size: 18px;
    line-height: 28px
}

div[data-component=navigation-v2] .search__results a h3 em {
    font-style: normal;
    font-weight: 700;
    text-decoration: underline
}

div[data-component=navigation-v2] .search__results a:hover,
div[data-component=navigation-v2] .search__results a:focus-visible {
    background-color: #f7f7f7
}

div[data-component=navigation-v2] .search__icon-label {
    width: 0;
    height: 0;
    overflow: hidden
}

div[data-component=navigation-v2] input:-ms-input-placeholder {
    line-height: 1
}

.cmp-header[data-component=true] {
    background-color: #000;
    height: 100px
}

@media(min-width:641px)and (max-width:1023px) {
    .cmp-header[data-component=true] {
        height: 100px
    }
}

@media(max-width:640px) {
    .cmp-header[data-component=true] {
        height: 90px
    }
}

@media(max-width:1023px) {
    .cmp-header[data-component=true] {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 4;
        width: 100%
    }
}

.cmp-header[data-component=true] .container {
    height: 100%;
    margin: 0 auto;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.cmp-header[data-component=true] .header-links-container {
    height: 100%;
    display: flex;
    align-items: center
}

.cmp-header[data-component=true] .logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 100px
}

@media(max-width:640px) {
    .cmp-header[data-component=true] .logo-container__label {
        width: 142px;
        display: inline-block
    }
}

@media(max-width:767px) {
    .cmp-header[data-component=true] .logo-container {
        padding-left: 16px
    }
}

@media(max-width:639px) {
    .cmp-header[data-component=true] .logo-container {
        padding-left: 8px;
        height: 90px
    }
}

.cmp-header[data-component=true] .logo {
    float: left;
    width: 64px;
    height: 70px;
    margin-right: 16px
}

@media(max-width:767px) {
    .cmp-header[data-component=true] .logo {
        margin-top: 0;
        height: 60px;
        width: 55px
    }
}

.cmp-header[data-component=true] .logo-link {
    font-size: 1.25rem;
    padding-left: 48px
}

.cmp-header[data-component=true] .logo-link--text {
    padding-left: 16px
}

@media(max-width:640px) {
    .cmp-header[data-component=true] .logo-link {
        font-size: 12px;
        line-height: 18px;
        padding-left: 8px
    }
}

@media(max-width:1023px) {
    .cmp-header[data-component=true] .logo-link.label {
        display: none
    }
}

.cmp-header[data-component=true] .login-container {
    padding: 0 24px;
    margin-right: 0;
    margin-left: auto
}

@media(min-width:768px)and (max-width:1023px) {
    .cmp-header[data-component=true] .login-container {
        padding: 0 24px
    }
}

@media(max-width:767px) {
    .cmp-header[data-component=true] .login-container {
        padding: 0 14px
    }
}

@media(max-width:1023px) {
    .cmp-header[data-component=true] .login-container {
        display: none
    }
}

.cmp-header[data-component=true] a {
    color: #fff;
    display: inline-block;
    text-decoration: none
}

.cmp-header[data-component=true] .icon-login-icon {
    font-size: 18px
}

@media(min-width:641px)and (max-width:1023px) {
    .cmp-header[data-component=true] .icon-login-icon {
        font-size: 24px;
        line-height: 100px
    }
}

@media(max-width:640px) {
    .cmp-header[data-component=true] .icon-login-icon {
        font-size: 24px;
        line-height: 90px
    }
}

.cmp-header[data-component=true] .login-link .label {
    padding-left: 5px
}

@media(max-width:1023px) {
    .cmp-header[data-component=true] .login-link .label {
        display: none
    }
}

.cmp-header[data-component=true] .search__container {
    height: 100%;
    margin-right: 70px;
    margin-left: auto
}

@media(min-width:1024px) {
    .cmp-header[data-component=true] .search__container {
        margin-right: 48px;
        margin-left: 0
    }
}

.cmp-header[data-component=true] .search__icon-label {
    width: 0;
    height: 0;
    overflow: hidden
}

.cmp-header[data-component=true] .search__icon-container {
    display: flex;
    color: #fff;
    align-items: center;
    height: 100%;
    padding: 0 18px;
    cursor: pointer
}

@media(min-width:1024px) {
    .cmp-header[data-component=true] .search__icon-container {
        padding: 0 24px
    }
}

.cmp-header[data-component=true] .search__icon-container.expanded {
    background: #fff;
    color: #000;
    box-shadow: 0 2px #fff
}

.cmp-header[data-component=true] .search__icon-container.expanded .search__icon-close {
    display: block
}

.cmp-header[data-component=true] .search__icon-container.expanded .search__icon-search {
    display: none
}

.cmp-header[data-component=true] .search__icon-search {
    cursor: pointer;
    font-size: 20px
}

.expanded .cmp-header[data-component=true] .search__icon-search--nav {
    display: none
}

.cmp-header[data-component=true] .search__icon-search--overlay {
    border: 0;
    background: rgba(0, 0, 0, 0);
    padding: 0
}

.cmp-header[data-component=true] .search__icon-close {
    display: none;
    cursor: pointer;
    font-size: 20px
}

.cmp-header[data-component=true] .search__overlay {
    display: none
}

.cmp-header[data-component=true] .search__overlay.animated {
    display: block;
    position: absolute;
    width: 100%;
    top: 100px;
    z-index: -1;
    margin-left: 0;
    overflow-y: auto;
    left: 0;
    background-color: #fff;
    color: #000;
    box-sizing: border-box;
    border-bottom: 1px solid #999
}

@media(max-width:640px) {
    .cmp-header[data-component=true] .search__overlay.animated {
        top: 91px
    }
}

.cmp-header[data-component=true] .search__fields {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 48px;
    margin-right: 72px;
    padding: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #666
}

@media(max-width:1023px) {
    .cmp-header[data-component=true] .search__fields {
        margin-right: 24px
    }
}

@media(max-width:639px) {
    .cmp-header[data-component=true] .search__fields {
        margin: 24px 16px 40px
    }
}

.cmp-header[data-component=true] .search__input {
    border: 0;
    font-size: 24px;
    color: #000;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    line-height: 36px;
    width: 100%
}

@media(max-width:1365px) {
    .cmp-header[data-component=true] .search__input {
        font-size: 18px;
        line-height: 28px
    }
}

.cmp-header[data-component=true] input:-ms-input-placeholder {
    line-height: 1
}

@media(max-width:768px) {
    .navigation .bg--grey-1 {
        background-color: rgba(0, 0, 0, 0)
    }
}

.cmp-header__container {
    position: relative;
    z-index: 5
}

.disclaimer-cmp[data-component=true] {
    background-color: #000
}

.disclaimer-cmp[data-component=true] .container {
    margin: 0 auto;
    max-width: 1440px
}

.disclaimer-cmp[data-component=true] .container .container-inner {
    padding: 48px 48px 0 48px
}

@media(max-width:767px) {
    .disclaimer-cmp[data-component=true] .container .container-inner {
        padding: 24px
    }
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container {
    padding-bottom: 48px;
    border-bottom: solid 1px #333;
    color: #fff
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container p {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
    font-size: .75rem;
    line-height: 1.25rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0;
    margin: 0
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container p:lang(ja) {
    font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container p:lang(zh-cn) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container p:lang(zh-tw) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container p:lang(ko) {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container li {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
    font-size: .75rem;
    line-height: 1.25rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0;
    margin: 0
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container li:lang(ja) {
    font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container li:lang(zh-cn) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container li:lang(zh-tw) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.disclaimer-cmp[data-component=true] .container .container-inner .text-container li:lang(ko) {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
}

.footer-cmp[data-component=true] {
    background-color: #000;
    min-height: 240px
}

.footer-cmp[data-component=true] .container {
    margin: 0 auto;
    max-width: 1440px
}

.footer-cmp[data-component=true] .container-inner {
    padding: 48px
}

@media(max-width:1024px) {
    .footer-cmp[data-component=true] .container-inner {
        padding: 24px
    }
}

.footer-cmp[data-component=true] .container-flex {
    display: flex;
    justify-content: space-between
}

@media(max-width:1024px) {
    .footer-cmp[data-component=true] .container-flex {
        display: block
    }
}

.footer-cmp[data-component=true] .text-container {
    color: #fff
}

.footer-cmp[data-component=true] .text-container p {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
    font-size: .75rem;
    line-height: 1.25rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0;
    margin: 0
}

.footer-cmp[data-component=true] .text-container p:lang(ja) {
    font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

.footer-cmp[data-component=true] .text-container p:lang(zh-cn) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.footer-cmp[data-component=true] .text-container p:lang(zh-tw) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.footer-cmp[data-component=true] .text-container p:lang(ko) {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
}

.footer-cmp[data-component=true] .logo-container {
    padding: 24px 0 0 0;
    margin: 0
}

.footer-cmp[data-component=true] .logo-container img {
    height: 50px
}

.footer-cmp[data-component=true] .links-container {
    padding: 24px 0 0 0;
    margin: 0
}

.footer-cmp[data-component=true] .links-container ul {
    margin: 0;
    padding: 0
}

@media(max-width:1024px) {
    .footer-cmp[data-component=true] .links-container ul {
        display: flex;
        flex-wrap: wrap
    }
}

.footer-cmp[data-component=true] .links-container ul li {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none
}

@media(max-width:1024px) {
    .footer-cmp[data-component=true] .links-container ul li {
        float: none;
        padding-bottom: 8px;
        width: 33%
    }
}

@media(max-width:768px) {
    .footer-cmp[data-component=true] .links-container ul li {
        width: 100%
    }
}

.footer-cmp[data-component=true] .links-container ul li a {
    margin: 0 16px;
    text-decoration: none;
    color: #fff;
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
    font-size: .875rem;
    line-height: 3.125rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

@media(max-width:1024px) {
    .footer-cmp[data-component=true] .links-container ul li a {
        margin: 0;
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular", Arial, sans-serif;
        font-size: .875rem;
        line-height: .875rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .footer-cmp[data-component=true] .links-container ul li a:lang(ja) {
        font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
    }
    .footer-cmp[data-component=true] .links-container ul li a:lang(zh-cn) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .footer-cmp[data-component=true] .links-container ul li a:lang(zh-tw) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .footer-cmp[data-component=true] .links-container ul li a:lang(ko) {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
    }
}

.footer-cmp[data-component=true] .links-container ul li a:lang(ja) {
    font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
}

.footer-cmp[data-component=true] .links-container ul li a:lang(zh-cn) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.footer-cmp[data-component=true] .links-container ul li a:lang(zh-tw) {
    font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
}

.footer-cmp[data-component=true] .links-container ul li a:lang(ko) {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
}

.footer-cmp[data-component=true] .links-container ul li a:hover {
    text-decoration: underline
}

div[data-component=footer-v2] {
    background-color: #000;
    border-top: 1px solid #333
}

div[data-component=footer-v2] .footer-v2 {
    display: grid;
    color: #fff;
    padding: 48px 48px 16px 48px
}

@media(max-width:640px) {
    div[data-component=footer-v2] .footer-v2 {
        padding: 16px
    }
}

div[data-component=footer-v2] .footer-v2__disclaimer-container {
    display: grid;
    grid-gap: 48px;
    grid-template-columns: repeat(4, minmax(100px, 1fr));
    display: -ms-grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr
}

div[data-component=footer-v2] .footer-v2__disclaimer-container>* {
    align-text: top
}

@media(max-width:639px) {
    div[data-component=footer-v2] .footer-v2__disclaimer-container {
        justify-self: start;
        grid-template-columns: 1fr;
        grid-rows: 2;
        grid-gap: 8px;
        -ms-grid-column: 1;
        -ms-grid-row: 2;
        -ms-grid-column-span: 12;
        -ms-grid-column-align: start
    }
}

div[data-component=footer-v2] .footer-v2__header {
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light";
    margin: 10px 0 0 0;
    grid-column: 1;
    grid-row: 1;
    -ms-grid-column: 1
}

div[data-component=footer-v2] .footer-v2__text {
    grid-column: span 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    padding: 0 0 40px 0
}

@media(max-width:1023px) {
    div[data-component=footer-v2] .footer-v2__text {
        -ms-grid-column-span: 3;
        grid-column: span 3
    }
}

@media(max-width:639px) {
    div[data-component=footer-v2] .footer-v2__text {
        justify-self: start;
        grid-column: 1;
        grid-row: 2;
        -ms-grid-column: 1;
        -ms-grid-row: 2;
        padding: 0
    }
}

div[data-component=footer-v2] .footer-v2__text p {
    font-size: .75rem;
    line-height: 1.25rem;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

div[data-component=footer-v2] .footer-v2__social-nav-container {
    display: grid;
    grid-template-columns: 115px repeat(auto-fit, minmax(70px, 1fr));
    display: -ms-grid;
    -ms-grid-columns: 115px 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr
}

div[data-component=footer-v2] .footer-v2__social-links {
    display: inline-block;
    list-style: none;
    padding-left: 0;
    grid-column: span 5;
    justify-self: start;
    -ms-grid-column: 2;
    -ms-grid-column-span: 5
}

@media(max-width:1023px) {
    div[data-component=footer-v2] .footer-v2__social-links {
        -ms-grid-column-span: 11
    }
}

@media(max-width:640px) {
    div[data-component=footer-v2] .footer-v2__social-links {
        margin-top: 0;
        grid-row: 2;
        grid-column: span 6;
        -ms-grid-row: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 12;
        -ms-grid-column-align: start
    }
}

div[data-component=footer-v2] .footer-v2__social-links-label {
    display: inline-block;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light";
    padding-right: 8px;
    grid-column: span 1;
    -ms-grid-column: 1
}

@media(max-width:640px) {
    div[data-component=footer-v2] .footer-v2__social-links-label {
        grid-column: span 2;
        -ms-grid-column-span: 12
    }
}

div[data-component=footer-v2] .footer-v2__social-links-item {
    display: inline-block;
    list-style: none;
    padding: 8px 40px 4px 0
}

@media(max-width:640px) {
    div[data-component=footer-v2] .footer-v2__social-links-item {
        padding-right: 30px
    }
}

div[data-component=footer-v2] .footer-v2__social-links-item a {
    text-decoration: none;
    color: #fff
}

div[data-component=footer-v2] .footer-v2__social-links-item a:focus-visible {
    outline-offset: 2px;
    outline: 2px dashed #fff
}

div[data-component=footer-v2] .footer-v2__social-links-item:last-child {
    padding-right: 0
}

div[data-component=footer-v2] .footer-v2__social-nav--border-top {
    border-top: 1px solid #333
}

div[data-component=footer-v2] .footer-v2__social-nav--border-bottom {
    border-bottom: 1px solid #333
}

div[data-component=footer-v2] .footer-v2__nav-links {
    padding-left: 0;
    padding-inline-start: 0;
    grid-column: span 6;
    justify-self: end;
    -ms-grid-column: 7;
    -ms-grid-column-span: 6;
    -ms-grid-column-align: end
}

@media(max-width:1023px) {
    div[data-component=footer-v2] .footer-v2__nav-links {
        justify-self: start;
        -ms-grid-column: 1;
        -ms-grid-row: 2;
        -ms-grid-column-span: 12;
        -ms-grid-column-align: start
    }
}

@media(max-width:640px) {
    div[data-component=footer-v2] .footer-v2__nav-links {
        grid-row: 3;
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 12;
        -ms-grid-column-align: start
    }
}

div[data-component=footer-v2] .footer-v2__nav-links-item {
    display: inline-block;
    margin: 0 48px 0 0;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

@media(max-width:640px) {
    div[data-component=footer-v2] .footer-v2__nav-links-item {
        white-space: nowrap;
        margin-bottom: 16px;
        display: block
    }
}

div[data-component=footer-v2] .footer-v2__nav-links-item a {
    text-decoration: none;
    color: #fff
}

div[data-component=footer-v2] .footer-v2__nav-links-item a:hover {
    text-decoration: underline
}

div[data-component=footer-v2] .footer-v2__nav-links-item a:focus-visible {
    outline-offset: 2px;
    outline: 2px dashed #fff
}

div[data-component=footer-v2] .footer-v2__nav-links-item:last-child {
    margin: 0
}

div[data-component=footer-v2] .footer-v2__copyright {
    grid-column: span 1;
    font-size: .75rem;
    line-height: .75rem;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light";
    letter-spacing: .6px;
    margin: 16px 0 0 0
}

div[data-component=footer-v2] .footer-v2__sub-nav-container {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 268px repeat(auto-fit, minmax(50px, 1fr));
    display: -ms-grid;
    -ms-grid-columns: 268px 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr
}

@media(max-width:640px) {
    div[data-component=footer-v2] .footer-v2__sub-nav-container {
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 10px
    }
}

div[data-component=footer-v2] .footer-v2__sub-nav-container>* {
    align-text: center
}

div[data-component=footer-v2] .footer-v2__sub-nav-links {
    grid-column: span 11;
    justify-self: end;
    font-size: .75rem;
    line-height: .75rem;
    padding-inline-start: 0;
    padding-left: 0;
    -ms-grid-column: 2;
    -ms-grid-column-span: 11;
    -ms-grid-column-align: end
}

@media(max-width:1023px) {
    div[data-component=footer-v2] .footer-v2__sub-nav-links {
        justify-self: start
    }
}

@media(max-width:640px) {
    div[data-component=footer-v2] .footer-v2__sub-nav-links {
        justify-self: start;
        display: block;
        -ms-grid-row: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 12;
        -ms-grid-column-align: start
    }
}

div[data-component=footer-v2] .footer-v2__sub-nav-links-item {
    display: inline-block;
    margin: 16px 12px 0 12px;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light";
    letter-spacing: .6px
}

@media(max-width:1023px) {
    div[data-component=footer-v2] .footer-v2__sub-nav-links-item {
        white-space: nowrap;
        margin-left: 0
    }
}

@media(max-width:640px) {
    div[data-component=footer-v2] .footer-v2__sub-nav-links-item {
        display: block
    }
}

div[data-component=footer-v2] .footer-v2__sub-nav-links-item a {
    text-decoration: none;
    color: #fff
}

div[data-component=footer-v2] .footer-v2__sub-nav-links-item a:hover {
    text-decoration: underline
}

div[data-component=footer-v2] .footer-v2__sub-nav-links-item a:focus-visible {
    outline-offset: 2px;
    outline: 2px dashed #fff
}

div[data-component=footer-v2] .footer-v2__sub-nav-links-item:last-child {
    margin: 16px 0 0 12px
}

@media(max-width:1023px) {
    div[data-component=footer-v2] .footer-v2__sub-nav-links-item:last-child {
        margin-left: 0
    }
}

div[data-component=footer-v2] .footer-v2__manage-cookies {
    display: none
}

div[data-component=footer-v2] .cmp-text a {
    color: #fff
}

div[data-component=footer-v2] .cmp-text a:focus-visible {
    outline: 1px dashed #fff;
    outline-offset: 1px
}

div[data-component=footer-v2] .container {
    margin: auto;
    max-width: 1440px
}

div[data-component=footer-v2] ul.footer-v2__sub-nav-links {
    margin-bottom: 0;
    margin-top: 0
}

table {
    border: 0;
    border-collapse: collapse
}

.table {
    border: 0;
    border-collapse: collapse
}

.table-gesture-container {
    display: inline-flex;
    align-items: center;
    display: none
}

.table .icon-swipe-gesture {
    font-size: 24px;
    transform: translate3d(0, 0, 0);
    margin-right: 16px;
    display: inline-block
}

.table .icon-swipe-gesture.animate {
    animation: swipe-gesture 2s infinite ease
}

.table .table-container {
    padding: 0
}

@media(max-width:1024px) {
    .table .table-container {
        overflow: auto
    }
}

.table .table-container th {
    padding: 24px 8px 24px 8px;
    border: 0;
    font-weight: bold
}

.table .table-container tr {
    border-bottom: 1px solid #bbb;
    border-collapse: collapse
}

.table .table-container tr:last-child {
    border: 0
}

.table .table-container td {
    padding: 24px 8px 24px 8px;
    border: 0
}

.table .table-container.light-text th {
    color: #ccc
}

.table .table-container.light-text tr {
    border-bottom: 1px solid rgba(255, 255, 255, .3)
}

.table .table-container.dark-text th {
    color: #686868
}

.table .table-container.dark-text tr {
    border-bottom: 1px solid rgba(0, 0, 0, .3)
}

.table .table-container.table-stripes.light-text tr:nth-child(even) {
    background-color: rgba(255, 255, 255, .2)
}

.table .table-container.table-stripes.dark-text th {
    color: #555
}

.table .table-container.table-stripes.dark-text tr:nth-child(even) {
    background-color: rgba(0, 0, 0, .2)
}

.table .table-heading-1 th {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 2.5rem;
    line-height: 3.625rem;
    font-weight: normal;
    letter-spacing: 1px;
    margin-left: 0
}

.table .table-heading-1 th:lang(ja) {
    font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
}

.table .table-heading-1 th:lang(zh-cn) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.table .table-heading-1 th:lang(zh-tw) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.table .table-heading-1 th:lang(ko) {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
}

@media(max-width:1023px) {
    .table .table-heading-1 th {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.5rem;
        line-height: 2.25rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .table .table-heading-1 th:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    .table .table-heading-1 th:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .table .table-heading-1 th:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .table .table-heading-1 th:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

.table .table-heading-2 th {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 2rem;
    line-height: 3rem;
    font-weight: normal;
    letter-spacing: 1px;
    margin-left: 0
}

.table .table-heading-2 th:lang(ja) {
    font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
}

.table .table-heading-2 th:lang(zh-cn) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.table .table-heading-2 th:lang(zh-tw) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.table .table-heading-2 th:lang(ko) {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
}

@media(max-width:1023px) {
    .table .table-heading-2 th {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.375rem;
        line-height: 2rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .table .table-heading-2 th:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    .table .table-heading-2 th:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .table .table-heading-2 th:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .table .table-heading-2 th:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

.table .table-heading-3 th {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: normal;
    letter-spacing: 1px;
    margin-left: 0
}

.table .table-heading-3 th:lang(ja) {
    font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
}

.table .table-heading-3 th:lang(zh-cn) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.table .table-heading-3 th:lang(zh-tw) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.table .table-heading-3 th:lang(ko) {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
}

@media(max-width:1023px) {
    .table .table-heading-3 th {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.125rem;
        line-height: 1.75rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .table .table-heading-3 th:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    .table .table-heading-3 th:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .table .table-heading-3 th:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .table .table-heading-3 th:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

.table .table-heading-infrastructure.dark-text th {
    color: #7526e5
}

.table .table-heading-agriculture.dark-text th {
    color: #00bf8c
}

.table .table-heading-renewables.dark-text th {
    color: #0f7ac7
}

.table .table-heading-real-estate.dark-text th {
    color: #cf2938
}

.table .table-heading-insurance-services.dark-text th {
    color: #f27305
}

@keyframes swipe-gesture {
    10%,
    90% {
        transform: translate3d(-4px, 0, 0)
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0)
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0)
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0)
    }
}

.cmp-news-tile {
    width: 100%;
    border: 1px solid #eee;
    background-color: #fff;
    margin: 24px 0
}

.cmp-news-tile a:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.light-text .cmp-news-tile a:focus-visible {
    outline-color: #fff
}

.cmp-news-tile__link-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    text-decoration: none;
    color: #000
}

.cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-white-white[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-black-black[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-grey-grey[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-grey-1-grey-1[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-dark-grey-dark-grey[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-blue-blue[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-blue-7-blue-7[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-yellow-yellow[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-green-green[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-green-7-green-7[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-dark-green-dark-green[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-dark-orange-dark-orange[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-light-orange-light-orange[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-red-red[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-purple-purple[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-sand-sand[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-sand-7-sand-7[data-component=true] .cmp-news-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.light-text .cmp-news-tile__link-container {
    color: #000
}

.cmp-news-tile__link-container .image-container {
    overflow: hidden
}

.cmp-news-tile__link-container .image-container .cmp-image__image {
    margin: 0;
    transition: all .5s ease-in-out;
    -o-object-fit: cover;
    object-fit: cover
}

.cmp-news-tile__link-container .content-block {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-basis: auto;
    justify-content: space-between;
    padding: 0 30px 10px
}

.cmp-news-tile__link-container .content-block h4 {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    margin: 24px 0 16px 0
}

.cmp-news-tile__link-container .content-block h4 sup {
    top: -0.9em;
    left: .2em;
    font-size: 50%
}

.cmp-news-tile a:focus .cmp-image__image,
.cmp-news-tile:hover .cmp-image__image {
    transform: scale(1.1)
}

.cmp-news-tile__category-name {
    margin: 24px 0 0;
    font-size: 1em;
    color: #333
}

.cmp-news-tile__publish-date {
    color: #767676
}

.cmp-news-tile__cta-link {
    font-size: 1.125rem;
    text-decoration: underline
}

.cmp-article-tile {
    width: 100%;
    border: 1px solid #eee;
    background-color: #fff;
    margin: 24px 0
}

.cmp-article-tile a:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.light-text .cmp-article-tile a:focus-visible {
    outline-color: #fff
}

.cmp-article-tile__link-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    text-decoration: none;
    color: #000
}

.cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-white-white[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-black-black[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-grey-grey[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-grey-1-grey-1[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-dark-grey-dark-grey[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-blue-blue[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-blue-7-blue-7[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-yellow-yellow[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-green-green[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-green-7-green-7[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-dark-green-dark-green[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-dark-orange-dark-orange[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-light-orange-light-orange[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-red-red[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-purple-purple[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-sand-sand[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-sand-7-sand-7[data-component=true] .cmp-article-tile__link-container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.light-text .cmp-article-tile__link-container {
    color: #000
}

.cmp-article-tile__link-container .image-container {
    overflow: hidden
}

.cmp-article-tile__link-container .image-container .cmp-image__image {
    margin: 0;
    transition: all .5s ease-in-out;
    -o-object-fit: cover;
    object-fit: cover
}

.cmp-article-tile__link-container .content-block {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-basis: auto;
    justify-content: space-between;
    padding: 0 30px 10px
}

.cmp-article-tile__link-container .content-block h4 {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    margin: 24px 0 16px 0
}

.cmp-article-tile__link-container .content-block h4 sup {
    top: -0.9em;
    left: .2em;
    font-size: 50%
}

.cmp-article-tile a:focus .cmp-image__image,
.cmp-article-tile:hover .cmp-image__image {
    transform: scale(1.1)
}

.cmp-article-tile__category-name {
    margin: 24px 0 0;
    font-size: 1em;
    color: #333
}

.cmp-article-tile__publish-date {
    color: #767676
}

.cmp-article-tile__cta-link {
    font-size: 1.125rem;
    text-decoration: underline
}

.cmp-article-tile__link-container .content-block {
    padding-bottom: 27px
}

.cmp-article-tile__link-container .content-block__top {
    flex: 1 1 auto
}

.cmp-article-tile__link-container .content-block__bottom {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.cmp-article-tile__link-container .content-block__bottom .labels {
    margin-top: 24px;
    margin-bottom: 18px
}

.cmp-article-tile__link-container .content-block__bottom .labels>* {
    line-height: 20px;
    font-size: 14px
}

.cmp-article-tile__link-container .content-block__bottom .labels__separator {
    color: rgba(0, 0, 0, .5)
}

.cmp-article-tile__description {
    margin-top: 24px
}

.cmp-tile-lib {
    width: 100%
}

@media(min-width:641px) {
    .cmp-tile-lib {
        margin: 24px 0
    }
}

.cmp-tile-lib__link {
    color: #fff;
    display: block;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    text-decoration: none
}

.cmp-tile-lib__link:focus,
.cmp-tile-lib__link:active {
    outline-color: rgba(0, 0, 0, 0)
}

.cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-white-white[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-black-black[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-grey-grey[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-grey-1-grey-1[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-dark-grey-dark-grey[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-blue-blue[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-blue-7-blue-7[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-yellow-yellow[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-green-green[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-green-7-green-7[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.colour-block-dark-green-dark-green[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-dark-orange-dark-orange[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-light-orange-light-orange[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-red-red[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-purple-purple[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-sand-sand[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 4px
}

.colour-block-sand-7-sand-7[data-component=true] .cmp-tile-lib__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 4px
}

.library-full-dark .cmp-tile-lib__link:focus-visible {
    outline-color: #fff
}

.light-text .cmp-tile-lib__link {
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.cmp-tile-lib__link:focus img,
.cmp-tile-lib__link:hover img {
    transform: scale(1.1)
}

.cmp-tile-lib__category {
    font-family: inherit;
    margin: 0;
    padding-bottom: 8px
}

@media(min-width:1025px) {
    .cmp-tile-lib__category {
        padding-bottom: 16px
    }
}

.cmp-tile-lib__heading {
    font-family: inherit;
    margin: 0;
    width: 100%
}

@media(min-width:768px) {
    .cmp-tile-lib__heading--square,
    .cmp-tile-lib__heading--landscape {
        font-size: 32px;
        letter-spacing: 1px;
        line-height: 3rem;
        width: 80%
    }
    .cmp-tile-lib__heading--landscape {
        width: 70%
    }
}

.cmp-tile-lib__container {
    height: 384px;
    position: relative
}

@media(min-width:1025px) {
    .cmp-tile-lib__container {
        height: 554px
    }
}

.cmp-tile-lib__image {
    height: 384px;
    overflow: hidden
}

@media(max-width:767px) {
    .cmp-tile-lib__image--desktop {
        display: none
    }
}

@media(min-width:1025px) {
    .cmp-tile-lib__image {
        height: 554px
    }
}

@media(min-width:768px) {
    .cmp-tile-lib__image {
        display: block
    }
}

@media(max-width:767px) {
    .cmp-tile-lib__image--mobile {
        display: block
    }
}

@media(min-width:768px) {
    .cmp-tile-lib__image--mobile {
        display: none
    }
}

.cmp-tile-lib__image-gradient:after {
    background: radial-gradient(circle at bottom left, rgba(2, 0, 36, 0.7) 0, rgba(0, 0, 0, 0.5) 30%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.cmp-tile-lib__image img {
    height: 384px;
    margin: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    transition: all .5s ease-in-out;
    width: 100%
}

@media(min-width:1025px) {
    .cmp-tile-lib__image img {
        height: 554px
    }
}

.cmp-tile-lib__content {
    bottom: 0;
    left: 0;
    padding: 24px;
    position: absolute;
    right: 0
}

.cmp-tile-lib__container:hover .cmp-tile-lib__content {
    opacity: 1
}

@media(min-width:1025px) {
    .cmp-tile-lib__content {
        padding: 32px
    }
}

.cmp-tile-lib .icon-external-link {
    font-size: .625rem;
    margin-left: 4px
}

.cmp-tile-news-list {
    width: 100%;
    padding: 16px 0 22px;
    border-bottom: 1px solid #ccc
}

@media(min-width:1024px) {
    .cmp-tile-news-list {
        padding: 48px 0
    }
}

.cmp-tile-news-list__link {
    display: inline-block;
    text-decoration: none
}

.cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.news-list-full-dark .cmp-tile-news-list__link {
    outline-color: #fff
}

.colour-block-white-white[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-black-black[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-grey-grey[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-grey-1-grey-1[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-dark-grey-dark-grey[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-blue-blue[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-blue-7-blue-7[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-yellow-yellow[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-green-green[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-green-7-green-7[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-dark-green-dark-green[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-dark-orange-dark-orange[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-light-orange-light-orange[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-red-red[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-purple-purple[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-sand-sand[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-sand-7-sand-7[data-component=true] .cmp-tile-news-list__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.cmp-tile-news-list__link sup {
    top: -0.9em;
    left: .2em;
    margin-right: .2em;
    font-size: 50%
}

.cmp-tile-news-list__link--white {
    color: #fff
}

.cmp-tile-news-list__link:hover {
    text-decoration: underline
}

@media(min-width:1024px) {
    .newsListTile.news-list-full-dark .cmp-tile-news-list__link {
        color: #fff
    }
}

.cmp-tile-news-list__heading {
    color: #000;
    text-decoration: none;
    margin: 0;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
}

.cmp-tile-news-list__author {
    color: #000;
    text-decoration: none;
    margin: 0;
    padding-top: 16px
}

@media(min-width:1024px) {
    .cmp-tile-news-list__author {
        padding-top: 24px
    }
    .newsListTile.news-list-full-dark .cmp-tile-news-list__author {
        color: #fff
    }
}

.cmp-tile-news-list__sub-text {
    color: #999;
    display: flex;
    align-items: center;
    margin: 0;
    padding-top: 16px
}

@media(min-width:1024px) {
    .cmp-tile-news-list__sub-text {
        padding-top: 24px
    }
    .newsListTile.news-list-full-dark .cmp-tile-news-list__sub-text {
        color: #fff
    }
}

.cmp-tile-news-list__bullet-divider {
    height: 5px;
    width: 5px;
    margin: 0 16px;
    border-radius: 50%;
    background-color: #999
}

.light-text .cmp-tile-news-list__link,
.light-text .cmp-tile-news-list__author {
    color: #fff;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.light-text .cmp-tile-news-list__sub-text {
    font-family: "MCQGlobal-Regular-DarkBG", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular"
}

.cmp-tile-fact {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 24px
}

.cmp-tile-fact .cmp-image__image {
    width: auto;
    margin-top: 0;
    height: 56px;
    margin-bottom: 0
}

.cmp-tile-fact .content-block {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex: 1 1 auto
}

.cmp-tile-fact .content-block__text {
    flex: 1 1 auto
}

.cmp-tile-fact__heading {
    color: #000;
    font-size: 24px;
    line-height: 36px;
    margin-top: 8px;
    margin-bottom: 32px;
    display: flex;
    align-items: center
}

.cmp-tile-fact__heading sup {
    font-size: 14px;
    top: -0.7em
}

.cmp-tile-fact__heading-text {
    padding-right: 2px
}

.cmp-tile-fact__description p {
    margin-top: 0;
    color: #333
}

.cmp-tile-fact__breakline {
    border-top: 1px solid #ccc
}

.cmp-tile-fact__cta p {
    margin: 0;
    font-size: 18px
}

.light-text .cmp-tile-fact__heading {
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.light-text .cmp-tile-fact__description {
    font-family: "MCQGlobal-Regular-DarkBG", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular"
}

.light-text .cmp-tile-fact__description p,
.light-text .cmp-tile-fact__description .p1,
.light-text .cmp-tile-fact__description .p2,
.light-text .cmp-tile-fact__description .p3 {
    font-family: "MCQGlobal-Regular-DarkBG", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular"
}

.light-text .cmp-tile-fact__heading,
.light-text .cmp-tile-fact__description p,
.light-text .cmp-tile-fact__cta p {
    color: #fff
}

.light-text .cmp-tile-fact__breakline {
    border-top: 1px solid #333
}

@media(min-width:641px) {
    .cmp-tile-fact {
        margin: 24px 0
    }
    .cmp-tile-fact__text--large .cmp-tile-fact__heading {
        font-size: 40px;
        line-height: 58px;
        margin-top: 51px;
        margin-bottom: 43px
    }
    .cmp-tile-fact__text--large .cmp-tile-fact__heading sup {
        top: -1em
    }
    .cmp-tile-fact__image .cmp-tile-fact__heading {
        margin-top: 24px;
        margin-bottom: 24px
    }
}

.cmp-tile-doc {
    width: 100%;
    border-bottom: 1px solid #ccc;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 16px;
    line-height: 28px
}

.light-text .cmp-tile-doc {
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.light-text .cmp-tile-doc__title {
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.light-text .cmp-tile-doc__date {
    color: #fff
}

.cmp-tile-doc__link {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 16px 0 24px 0
}

.cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-white-white[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-black-black[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-grey-grey[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-grey-1-grey-1[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-dark-grey-dark-grey[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-blue-blue[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-blue-7-blue-7[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-yellow-yellow[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-green-green[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-green-7-green-7[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-dark-green-dark-green[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-dark-orange-dark-orange[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-light-orange-light-orange[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-red-red[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-purple-purple[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-sand-sand[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-sand-7-sand-7[data-component=true] .cmp-tile-doc__link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

@media(min-width:641px) {
    .cmp-tile-doc__link {
        display: flex;
        align-items: flex-start;
        padding: 32px 0
    }
}

.cmp-tile-doc__link:hover .cmp-tile-doc__title {
    text-decoration: underline
}

.cmp-tile-doc__date {
    min-width: 192px;
    color: #666
}

.cmp-tile-doc__title {
    flex: 1;
    margin: 0;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 18px;
    line-height: 28px
}

.cmp-tile-doc__info {
    display: flex;
    min-width: 192px;
    justify-content: center
}

.cmp-tile-doc__info span {
    flex: 1
}

.cmp-tile-doc__info span:first-child {
    border-right: 1px solid #666;
    text-align: right;
    padding-right: 40px
}

.cmp-tile-doc__info span:last-child {
    padding-left: 40px
}

@media(max-width:639px) {
    .cmp-tile-doc__info {
        display: block
    }
}

@media(max-width:767px) {
    .cmp-tile-doc__info {
        padding: 5px 0;
        line-height: 18px
    }
    .cmp-tile-doc__info span:first-child {
        padding-right: 24px
    }
    .cmp-tile-doc__info span:last-child {
        padding-left: 24px
    }
}

.cmp-tile-doc__synthetic-asset {
    display: flex;
    justify-content: center;
    align-items: baseline;
    min-width: 192px
}

@media(max-width:639px) {
    .cmp-tile-doc__synthetic-asset {
        justify-content: flex-start
    }
}

.cmp-tile-doc__synthetic-asset-text {
    margin-right: 8px
}

.cmp-tile-doc__synthetic-asset .hidden {
    display: none
}

.cmp-image {
    height: 100%
}

.cmp-image__container {
    height: 100%
}

.cmp-image__link:focus-visible {
    outline: 0
}

.cmp-image__link:focus-visible img {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-white-white[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-white-white[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-black-black[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-black-black[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-grey-grey[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-grey-grey[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-grey-1-grey-1[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-grey-1-grey-1[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-dark-grey-dark-grey[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-dark-grey-dark-grey[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-blue-blue[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-blue-blue[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-blue-7-blue-7[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-blue-7-blue-7[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-yellow-yellow[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-yellow-yellow[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-green-green[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-green-green[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-green-7-green-7[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-green-7-green-7[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-dark-green-dark-green[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-dark-green-dark-green[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-dark-orange-dark-orange[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-dark-orange-dark-orange[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-light-orange-light-orange[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-light-orange-light-orange[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-red-red[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-red-red[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-purple-purple[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-purple-purple[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-sand-sand[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-sand-sand[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-sand-7-sand-7[data-component=true] .cmp-image__link:focus-visible {
    outline: 0
}

.colour-block-sand-7-sand-7[data-component=true] .cmp-image__link:focus-visible img {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.cmp-general-hero {
    position: relative;
    overflow: hidden
}

.xfpage .cmp-general-hero.cmp-general-hero--author {
    max-height: 480px
}

.cmp-general-hero--light {
    background: #fff
}

.cmp-general-hero--dark {
    background: #000
}

.cmp-general-hero--short.cmp-general-hero--image {
    height: 384px
}

@media(min-width:768px) {
    .cmp-general-hero--short.cmp-general-hero--image {
        min-height: 320px;
        max-height: 400px
    }
}

.cmp-general-hero--short.cmp-general-hero--image .cmp-image__image,
.cmp-general-hero--short.cmp-general-hero--image .cmp-general-hero__image,
.cmp-general-hero--short.cmp-general-hero--image .cmp-general-hero__image-mobile {
    height: 384px
}

@media(min-width:768px) {
    .cmp-general-hero--short.cmp-general-hero--image .cmp-image__image,
    .cmp-general-hero--short.cmp-general-hero--image .cmp-general-hero__image,
    .cmp-general-hero--short.cmp-general-hero--image .cmp-general-hero__image-mobile {
        min-height: 320px;
        max-height: 400px
    }
}

.cmp-general-hero--tall.cmp-general-hero--image {
    height: 384px
}

@media(min-width:768px) {
    .cmp-general-hero--tall.cmp-general-hero--image {
        height: 640px
    }
}

.cmp-general-hero--tall.cmp-general-hero--image .cmp-image__image,
.cmp-general-hero--tall.cmp-general-hero--image .cmp-general-hero__image,
.cmp-general-hero--tall.cmp-general-hero--image .cmp-general-hero__image-mobile {
    height: 384px
}

@media(min-width:768px) {
    .cmp-general-hero--tall.cmp-general-hero--image .cmp-image__image,
    .cmp-general-hero--tall.cmp-general-hero--image .cmp-general-hero__image,
    .cmp-general-hero--tall.cmp-general-hero--image .cmp-general-hero__image-mobile {
        height: 640px
    }
}

.cmp-general-hero--background {
    height: auto;
    min-height: auto;
    max-height: none
}

.cmp-general-hero img {
    margin: 0;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: top
}

.cmp-general-hero__text--light {
    color: #fff
}

.cmp-general-hero__text--dark {
    color: #000
}

.cmp-general-hero__image {
    width: 100%
}

.cmp-general-hero__image--gradient:after {
    background: radial-gradient(circle at bottom left, rgba(2, 0, 36, 0.7) 0, rgba(0, 0, 0, 0.5) 30%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

@media(max-width:767px) {
    .cmp-general-hero__image {
        display: none
    }
}

@media(min-width:768px) {
    .cmp-general-hero__image {
        display: block
    }
}

@media(max-width:767px) {
    .cmp-general-hero__image-mobile {
        display: block
    }
}

@media(min-width:768px) {
    .cmp-general-hero__image-mobile {
        display: none
    }
}

.cmp-general-hero__content {
    padding: 0 16px 24px 16px;
    box-sizing: border-box;
    width: 100%
}

@media(min-width:768px) {
    .cmp-general-hero__content {
        padding: 0 48px 56px 48px
    }
}

@media(min-width:768px) {
    .cmp-general-hero__content {
        width: 70%;
        padding-right: 0
    }
}

.cmp-general-hero--image .cmp-general-hero__content-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%
}

.cmp-general-hero--background .cmp-general-hero__content {
    position: static;
    padding-top: 62px
}

@media(min-width:768px) {
    .cmp-general-hero--background .cmp-general-hero__content {
        padding-top: 140px
    }
}

.cmp-general-hero__category {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    margin: 0;
    padding-bottom: 8px
}

@media(min-width:768px) {
    .cmp-general-hero__category {
        padding-bottom: 16px
    }
}

.cmp-general-hero__link {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    display: inline-block;
    margin-top: 8px;
    color: inherit;
    text-decoration: none
}

@media(min-width:768px) {
    .cmp-general-hero__link {
        margin-top: 16px
    }
}

.cmp-general-hero__link.disabled {
    pointer-events: none;
    cursor: default;
    color: #afafaf
}

.cmp-general-hero__link.dark {
    color: #666
}

.cmp-general-hero__link.primary {
    border: 1px solid #666;
    height: 40px;
    line-height: 40px;
    padding: 0 16px
}

@media(min-width:1024px) {
    .cmp-general-hero__link.primary {
        height: 48px;
        line-height: 48px;
        padding: 0 24px
    }
}

.cmp-general-hero__link.primary.light {
    border-color: #fff;
    color: #fff
}

.cmp-general-hero__link.primary.light:hover,
.cmp-general-hero__link.primary.light:focus {
    background-color: #000;
    color: #fff
}

.cmp-general-hero__link.primary.light.disabled {
    pointer-events: none;
    cursor: default;
    background-color: #262626
}

.cmp-general-hero__link.primary.dark {
    border-color: #666;
    color: #666
}

.cmp-general-hero__link.primary.dark:hover,
.cmp-general-hero__link.primary.dark:focus {
    background-color: #fff;
    color: #000
}

.cmp-general-hero__link.primary.dark.disabled {
    pointer-events: none;
    cursor: default;
    background-color: #262626;
    color: #afafaf;
    border-color: #afafaf
}

.cmp-general-hero__heading {
    margin-top: 0;
    margin-bottom: 0
}

.cmp-general-hero__container {
    width: 100%;
    height: 100%
}

.cmp-cta {
    border: 1px solid;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    margin-top: 24px;
    padding: 12px 0;
    text-align: center;
    text-decoration: none;
    width: 100%
}

@media(min-width:1024px) {
    .cmp-cta {
        margin-top: 40px;
        padding: 14px 0;
        width: 300px
    }
    .cmp-cta--short {
        width: 200px
    }
}

.cmp-cta--primary {
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.cmp-cta--primary.yellow {
    background: #0f7ac7;
    color: #000;
    border-color: #0f7ac7
}

.cmp-cta--primary.blue {
    background: #0f7ac7;
    color: #fff;
    border-color: #0f7ac7
}

.cmp-cta--primary.green {
    background: #007859;
    color: #fff;
    border-color: #007859
}

.cmp-cta--primary.light:focus-visible {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    outline-offset: 2px;
    outline: 2px dashed #000
}

.cmp-cta--primary.light:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transition: background .3s ease-out, border .3s ease-out
}

.cmp-cta--primary.dark:focus-visible {
    outline-offset: 2px;
    outline: 2px dashed #fff
}

.cmp-cta--primary.dark:hover {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    background: #fff;
    color: #000;
    border-color: #fff;
    transition: background .3s ease-out, border .3s ease-out
}

.cmp-cta--secondary {
    background: rgba(0, 0, 0, 0)
}

.cmp-cta--secondary.light {
    color: #000;
    border-color: #000
}

.cmp-cta--secondary.light:focus-visible {
    outline-offset: 2px;
    outline: 2px dashed #000
}

.cmp-cta--secondary.light:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transition: background .3s ease-out, border .3s ease-out;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.cmp-cta--secondary.dark {
    color: #fff;
    border-color: #fff;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.cmp-cta--secondary.dark:focus-visible {
    outline-offset: 2px;
    outline: 2px dashed #fff
}

.cmp-cta--secondary.dark:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transition: background .3s ease-out, border .3s ease-out;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
}

.cmp-cta--tertiary {
    border: 0;
    padding: 0;
    text-align: left;
    width: auto;
    align-items: baseline;
    line-height: initial;
    display: inline-block
}

.cmp-cta--tertiary .cmp-cta__text {
    margin-left: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0)
}

.cmp-cta--tertiary.light {
    color: #000
}

.cmp-cta--tertiary.light:focus-visible {
    margin-left: -0.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    outline-offset: 2px;
    outline: 2px dashed #000
}

.cmp-cta--tertiary.light:hover {
    color: #000
}

.cmp-cta--tertiary.light:hover .cmp-cta__text {
    border-bottom: 1px solid #000
}

.cmp-cta--tertiary.dark {
    color: #fff;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.cmp-cta--tertiary.dark:focus-visible {
    margin-left: -0.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    outline-offset: 2px;
    outline: 2px dashed #fff
}

.cmp-cta--tertiary.dark:hover {
    color: #fff
}

.cmp-cta--tertiary.dark:hover .cmp-cta__text {
    border-bottom: 1px solid #fff
}

.cmp-cta.disabled {
    pointer-events: none;
    cursor: default;
    color: #767676;
    border-color: #767676
}

.cmp-cta.disabled.light {
    background-color: #fff
}

.cmp-cta.disabled.dark {
    background-color: #000
}

.cmp-video {
    position: relative;
    margin: 24px 0
}

.cmp-video__container {
    position: relative
}

.cmp-video__container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-white-white[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-black-black[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-grey-grey[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-grey-1-grey-1[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-dark-grey-dark-grey[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-blue-blue[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-blue-7-blue-7[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-yellow-yellow[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-green-green[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-green-7-green-7[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-dark-green-dark-green[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-dark-orange-dark-orange[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-light-orange-light-orange[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-red-red[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-purple-purple[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-sand-sand[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-sand-7-sand-7[data-component=true] .cmp-video__container:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.cmp-video__poster {
    position: relative;
    z-index: 2;
    cursor: pointer
}

.cmp-video__poster .cmp-image__image {
    margin: 0
}

.cmp-video__poster .cmp-video__play {
    cursor: pointer;
    color: #fff;
    text-shadow: 0 0 4px #000;
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@media(max-width:1023px) {
    .cmp-video__poster .cmp-video__play {
        font-size: 40px
    }
}

.cmp-video__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.cmp-video__title {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    margin: 24px 0 0
}

@media(min-width:641px) {
    .cmp-video__title {
        margin: 32px 0 0
    }
}

.cmp-video__info {
    margin-top: 16px;
    color: #999
}

@media(min-width:641px) {
    .cmp-video__info {
        margin-top: 24px
    }
}

.cmp-video__info span:nth-child(1) {
    padding-right: 24px
}

.cmp-video__info span:nth-child(2) {
    border-left: 1px solid #999;
    padding-left: 24px
}

.cmp-video__youtube {
    display: none;
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 98.8%;
    background-color: rgba(0, 0, 0, 0)
}

.cmp-video__youtube--active {
    display: block
}

.cmp-video--active {
    opacity: 0;
    transition-delay: 0, 800ms
}

div[data-component=link-stack] .cmp-link-stack {
    padding: 64px 0
}

@media(min-width:1024px) {
    div[data-component=link-stack] .cmp-link-stack {
        padding: 104px 0
    }
}

div[data-component=link-stack] .cmp-link-stack__heading {
    margin: 0;
    margin-bottom: 24px;
    color: #999;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
}

@media(min-width:1024px) {
    div[data-component=link-stack] .cmp-link-stack__heading {
        margin-bottom: 40px
    }
}

div[data-component=link-stack] .cmp-link-stack__heading .eyebrow:after {
    background: #999
}

div[data-component=link-stack] .cmp-link-stack__label {
    margin: 0 24px 0 0
}

div[data-component=link-stack] .cmp-link-stack__link {
    color: inherit;
    padding: 16px 0;
    text-decoration: none;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between
}

div[data-component=link-stack] .cmp-link-stack__link:focus-visible {
    outline-offset: 2px;
    outline: 2px dashed #000
}

.light-text div[data-component=link-stack] .cmp-link-stack__link:focus-visible {
    outline: 2px dashed #fff
}

@media(min-width:1024px) {
    div[data-component=link-stack] .cmp-link-stack__link {
        padding: 24px 0
    }
}

div[data-component=link-stack] .cmp-link-stack__icon {
    font-size: 24px
}

.dark-text div[data-component=link-stack] .cmp-link-stack__heading {
    color: #666
}

.dark-text div[data-component=link-stack] .cmp-link-stack__heading .eyebrow:after {
    background: #666
}

.dark-text div[data-component=link-stack] .cmp-link-stack__link {
    border-bottom: 1px solid #ccc
}

div[data-component=accordion] .cmp-accordion__item {
    border-bottom: 1px solid gray
}

div[data-component=accordion] .cmp-accordion__button {
    color: #000;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    padding: 32px 0;
    cursor: pointer
}

@media(max-width:640px) {
    div[data-component=accordion] .cmp-accordion__button {
        padding: 16px 0
    }
}

div[data-component=accordion] .cmp-accordion__button:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

div[data-component=accordion] .cmp-accordion__button .cmp-accordion__icon:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border-style: solid;
    border-color: #000;
    border-width: 0 3px 3px 0;
    position: relative;
    bottom: 4px;
    transform: rotate(45deg)
}

div[data-component=accordion] .cmp-accordion__button--expanded[aria-expanded=true] .cmp-accordion__icon:after {
    transform: rotate(225deg);
    bottom: 0
}

div[data-component=accordion] .cmp-accordion__button .cmp-accordion__icon {
    justify-self: end;
    -ms-grid-column-align: end;
    -ms-grid-row-align: center;
    -ms-grid-column: 2;
    padding-right: 4px
}

div[data-component=accordion] .cmp-accordion__button .cmp-accordion__icon:after {
    width: 12px;
    height: 12px;
    margin-left: 0
}

@media(max-width:640px) {
    div[data-component=accordion] .cmp-accordion__button .cmp-accordion__icon:after {
        width: 11.314px;
        height: 11.314px;
        box-sizing: border-box
    }
}

div[data-component=accordion] .cmp-accordion__title {
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin: 0;
    -ms-grid-column: 1;
    -ms-grid-row-align: center
}

@media(max-width:640px) {
    div[data-component=accordion] .cmp-accordion__title {
        font-size: 1.2rem;
        line-height: 2rem
    }
}

div[data-component=accordion] .cmp-accordion__title-container {
    -ms-grid-row-align: center
}

div[data-component=accordion] .cmp-accordion__subTitle {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin: 0;
    -ms-grid-row: 2
}

div[data-component=accordion] .cmp-accordion__header-content {
    display: grid;
    grid-template-columns: 95% 5%;
    align-items: center;
    display: -ms-grid;
    -ms-grid-columns: 95% 5%
}

@media(max-width:640px) {
    div[data-component=accordion] .cmp-accordion__header-content {
        grid-template-columns: 93% 7%;
        -ms-grid-columns: 93% 7%
    }
}

div[data-component=accordion] .cmp-accordion__arrow-container {
    justify-self: end;
    -ms-grid-row-align: center;
    padding-right: 4px
}

div[data-component=accordion] .cmp-accordion__panel--expanded {
    padding-bottom: 24px
}

@media(max-width:640px) {
    div[data-component=accordion] .cmp-accordion__panel--expanded {
        padding-bottom: 16px
    }
}

div[data-component=accordion] div[data-component=accordionItem]>.accordionItem>.aem-Grid {
    margin: 0 -48px
}

@media(max-width:640px) {
    div[data-component=accordion] div[data-component=accordionItem]>.accordionItem>.aem-Grid {
        margin: 0 -16px
    }
}

div[data-component=multimedia-hero] .multimedia-hero {
    position: relative;
    height: 720px
}

@media(max-width:767px) {
    div[data-component=multimedia-hero] .multimedia-hero {
        height: 480px
    }
}

div[data-component=multimedia-hero] .multimedia-hero--author {
    padding-bottom: 100px
}

div[data-component=multimedia-hero] .multimedia-hero--author .multimedia-hero__image--gradient:after {
    bottom: 100px
}

div[data-component=multimedia-hero] .multimedia-hero__content {
    width: 100%;
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2
}

@media(max-width:767px) {
    div[data-component=multimedia-hero] .multimedia-hero__content {
        top: 60px
    }
}

div[data-component=multimedia-hero] .multimedia-hero__content-container {
    padding-left: 48px;
    box-sizing: border-box;
    width: 70%
}

@media(max-width:639px) {
    div[data-component=multimedia-hero] .multimedia-hero__content-container {
        padding: 0 16px;
        width: 100%
    }
}

div[data-component=multimedia-hero] .multimedia-hero__content.dark {
    color: #000
}

div[data-component=multimedia-hero] .multimedia-hero__category {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
}

div[data-component=multimedia-hero] .multimedia-hero__heading {
    padding: 16px 0 32px;
    margin: 0
}

@media(max-width:767px) {
    div[data-component=multimedia-hero] .multimedia-hero__heading {
        padding: 8px 0 24px
    }
}

div[data-component=multimedia-hero] .multimedia-hero__image--desktop {
    display: block;
    height: 720px
}

@media(max-width:768px) {
    div[data-component=multimedia-hero] .multimedia-hero__image--desktop {
        display: none
    }
}

div[data-component=multimedia-hero] .multimedia-hero__image--mobile {
    display: block;
    height: 480px
}

@media(min-width:769px) {
    div[data-component=multimedia-hero] .multimedia-hero__image--mobile {
        display: none
    }
}

div[data-component=multimedia-hero] .multimedia-hero__image--gradient {
    position: relative;
    height: 100%
}

div[data-component=multimedia-hero] .multimedia-hero__image--gradient:after {
    background: radial-gradient(circle at bottom left, rgba(2, 0, 36, 0.7) 0, rgba(0, 0, 0, 0.5) 30%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    content: "";
    height: 720px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

@media(max-width:767px) {
    div[data-component=multimedia-hero] .multimedia-hero__image--gradient:after {
        height: 480px
    }
}

div[data-component=multimedia-hero] .multimedia-hero .cmp-cta {
    margin: 0
}

div[data-component=multimedia-hero] .multimedia-hero__video,
div[data-component=multimedia-hero] .multimedia-hero__background {
    width: 100%;
    height: 100%;
    overflow: hidden
}

div[data-component=multimedia-hero] .multimedia-hero__video {
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    height: 720px
}

@media(max-width:767px) {
    div[data-component=multimedia-hero] .multimedia-hero__video {
        height: 480px
    }
}

div[data-component=multimedia-hero] .multimedia-hero__video--gradient {
    position: relative;
    height: 100%
}

div[data-component=multimedia-hero] .multimedia-hero__video--gradient:after {
    background: radial-gradient(circle at bottom left, rgba(2, 0, 36, 0.7) 0, rgba(0, 0, 0, 0.5) 30%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    content: "";
    height: 720px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

@media(max-width:767px) {
    div[data-component=multimedia-hero] .multimedia-hero__video--gradient:after {
        height: 480px
    }
}

div[data-component=multimedia-hero] .multimedia-hero .cmp-image {
    height: 720px
}

@media(max-width:767px) {
    div[data-component=multimedia-hero] .multimedia-hero .cmp-image {
        height: 480px
    }
}

div[data-component=multimedia-hero] .multimedia-hero .cmp-image__image {
    margin: 0;
    height: 720px;
    -o-object-fit: cover;
    object-fit: cover
}

@media(max-width:767px) {
    div[data-component=multimedia-hero] .multimedia-hero .cmp-image__image {
        height: 480px
    }
}

.cmp-search-results .results__query {
    margin-bottom: 16px
}

.cmp-search-results .results__total {
    display: block;
    margin-bottom: 48px;
    font-size: 20px;
    line-height: 32px;
    color: #333
}

.cmp-search-results .results .ms-ChoiceField-wrapper {
    height: 100%
}

.cmp-search-results .results__list-item {
    border-bottom: 1px solid #ccc
}

.cmp-search-results .results__list-item a {
    display: block;
    color: #000;
    text-decoration: none;
    margin: 24px 0 16px 0
}

.cmp-search-results .results__list-item a:focus h3 span {
    -webkit-text-decoration-style: dashed;
    text-decoration-style: dashed
}

.cmp-search-results .results__list-item a:visited h3 span {
    color: #400099
}

.cmp-search-results .results__list-item a h3 {
    display: inline;
    margin: 0
}

.cmp-search-results .results__list-item a h3 sup {
    font-size: 18px;
    line-height: 28px;
    margin-right: 8px
}

@media(max-width:1023px) {
    .cmp-search-results .results__list-item a h3 sup {
        font-size: 16px;
        line-height: 26px;
        top: -0.3em
    }
}

.cmp-search-results .results__list-item a h3 span {
    text-decoration: underline
}

.cmp-search-results .results__list-item a h3 i {
    font-size: 16px;
    margin-left: 8px;
    vertical-align: text-top
}

.cmp-search-results .results__list-item p {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 40px 0;
    max-height: 84px;
    overflow: hidden
}

@media(max-width:1023px) {
    .cmp-search-results .results__list-item p {
        margin-bottom: 24px
    }
}

.cmp-search-results .results__list-item .meta {
    font-size: 16px;
    margin-bottom: 8px
}

.cmp-search-results .results__list-item em {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
    font-style: normal;
    font-weight: 700
}

.cmp-search-results .results__list-asset {
    border-bottom: 1px solid #ccc;
    display: flex
}

.cmp-search-results .results__list-asset a {
    display: block;
    color: #000;
    text-decoration: none;
    margin: 24px 0 16px 0
}

.cmp-search-results .results__list-asset a:focus h3 span {
    -webkit-text-decoration-style: dashed;
    text-decoration-style: dashed
}

.cmp-search-results .results__list-asset a:visited h3 span {
    color: #400099
}

.cmp-search-results .results__list-asset a h3 {
    display: inline;
    margin: 0
}

.cmp-search-results .results__list-asset a h3 sup {
    font-size: 18px;
    line-height: 28px;
    margin-right: 8px
}

@media(max-width:1023px) {
    .cmp-search-results .results__list-asset a h3 sup {
        font-size: 16px;
        line-height: 26px;
        top: -0.3em
    }
}

.cmp-search-results .results__list-asset a h3 span {
    text-decoration: underline
}

.cmp-search-results .results__list-asset a h3 i {
    font-size: 16px;
    margin-left: 8px;
    vertical-align: text-top
}

.cmp-search-results .results__list-asset p {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 40px 0;
    max-height: 84px;
    overflow: hidden
}

@media(max-width:1023px) {
    .cmp-search-results .results__list-asset p {
        margin-bottom: 24px
    }
}

.cmp-search-results .results__list-asset em {
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
    font-style: normal;
    font-weight: 700
}

.cmp-search-results .results__list-asset-wrapper {
    margin-right: 24px;
    width: 100%
}

.cmp-search-results .results__list-asset-wrapper .asset-heading {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 22px;
    line-height: 28px;
    padding-bottom: 5px
}

.cmp-search-results .results__list-asset-wrapper .asset-heading span {
    padding: 0 5px 0 5px
}

.cmp-search-results .results__list-asset img {
    width: 260px;
    height: 100%;
    margin-top: 24px
}

@media(max-width:767px) {
    .cmp-search-results .results__list-asset img {
        display: none
    }
    .cmp-search-results .results__list-asset-wrapper {
        width: 100%
    }
}

.cmp-search-results .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    font-size: 18px;
    line-height: 28px
}

.filter-dark .cmp-search-results .pagination {
    background-color: #000;
    color: #fff
}

.filter-dark .cmp-search-results .pagination .select-wrapper:after {
    border-color: #fff
}

.filter-dark .cmp-search-results .pagination__control {
    background: 0;
    color: #fff
}

.filter-dark .cmp-search-results .pagination__control:focus {
    border-bottom: 1px dashed #fff
}

.filter-dark .cmp-search-results .pagination__control--prev:focus {
    border-top: 1px dashed #fff;
    border-bottom: 0
}

.filter-dark .cmp-search-results .pagination select {
    background-color: rgba(0, 0, 0, 0);
    color: #fff
}

.filter-dark .cmp-search-results .pagination select option {
    color: #000
}

.cmp-search-results .pagination__selector {
    margin: 0 24px;
    display: flex;
    align-items: center
}

@media(min-width:640px) {
    .cmp-search-results .pagination__selector {
        margin: 0 116px
    }
}

.cmp-search-results .pagination__selector .select-wrapper {
    position: relative
}

.cmp-search-results .pagination__selector .select-wrapper:after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 48px;
    top: calc(50% - 7px);
    width: 7px;
    height: 7px;
    border-style: solid;
    border-color: #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    pointer-events: none
}

.cmp-search-results .pagination__selector select {
    background-color: #fff;
    padding: 16px 48px 16px 24px;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    margin: 0 24px;
    border: 1px solid #666
}

.cmp-search-results .pagination__selector select::-ms-expand {
    display: none
}

.cmp-search-results .pagination__control {
    cursor: pointer;
    border: 0;
    background-color: rgba(0, 0, 0, 0)
}

.cmp-search-results .pagination__control:focus {
    border-bottom: 1px dashed #000
}

.cmp-search-results .pagination__control--prev {
    display: inline-flex;
    transform: rotate(180deg)
}

.cmp-search-results .pagination__control--prev:focus {
    border-top: 1px dashed #000;
    border-bottom: 0
}

.cmp-search-results .pagination__total {
    margin-left: 16px
}

.cmp-search-results .error-message {
    display: none
}

.cmp-search-results .error-message .cmp-text {
    overflow: hidden
}

.cmp-search-results .error-message .cmp-text p {
    margin: 32px 0
}

.cmp-search-results .error-message__title {
    display: none
}

.filter-tabs-container {
    overflow: hidden
}

.filter-tabs {
    border-bottom: 1px solid #666
}

@media(max-width:1023px) {
    .filter-tabs {
        border-bottom: 0
    }
}

@media(min-width:1024px) {
    .filter-dark .filter-tabs {
        color: #fff;
        background: #000
    }
    .filter-dark .filter-tabs__tab-item {
        font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
    }
}

.filter-tabs--disabled {
    display: none
}

.filter-tabs__container {
    display: flex;
    align-items: center
}

@media(max-width:1023px) {
    .filter-tabs__container {
        display: block
    }
}

.filter-tabs__container.expanded {
    position: fixed;
    height: calc(100vh - 300px);
    width: 100vw;
    background: #fff;
    overflow: auto;
    padding-bottom: 300px;
    z-index: 4
}

@media(min-width:640px) {
    .filter-tabs__container.expanded {
        top: 130px
    }
}

@media(min-width:1024px) {
    .filter-dark .filter-tabs__container.expanded {
        background: #000
    }
}

.filter-tabs__dropdown {
    display: flex
}

@media(max-width:1023px) {
    .filter-tabs__dropdown {
        display: none
    }
    .filter-tabs__dropdown.expanded {
        display: block
    }
}

.filter-tabs__filter-button {
    display: none;
    padding: 0;
    margin: 0;
    border: 0;
    background: rgba(0, 0, 0, 0);
    cursor: pointer
}

.filter-tabs__filter-button:focus-visible {
    outline: 2px dashed #000;
    outline-offset: -4px
}

@media(max-width:1023px) {
    .filter-tabs__filter-button {
        display: block
    }
}

.filter-tabs__filter-button .icon-funnel {
    display: block
}

.filter-tabs__filter-button .icon-close {
    display: none
}

.filter-tabs__filter-button.expanded .icon-funnel {
    display: none
}

.filter-tabs__filter-button.expanded .icon-close {
    display: block
}

@media(max-width:1023px) {
    .filter-tabs__icon-funnel {
        border-left: 1px solid #666;
        border-top: 1px solid #666;
        padding: 20px;
        color: #000
    }
}

.filter-tabs__tab-item {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    margin: 0;
    padding: 20px 48px;
    white-space: nowrap;
    position: relative;
    flex: 1 auto
}

@media(max-width:1023px) {
    .filter-tabs__tab-item {
        white-space: initial;
        border: 0;
        border-bottom: 1px solid #666;
        width: 100%;
        box-sizing: border-box
    }
}

.filter-tabs__tab-item-heading {
    border: 1px solid #666;
    border-bottom: 0;
    border-right: 0;
    padding: 0
}

@media(max-width:1023px) {
    .filter-tabs__tab-item-heading {
        border: 0;
        border-bottom: 1px solid #666
    }
}

.filter-tabs__tab-item-reset {
    border-left: 1px solid #666
}

@media(max-width:1023px) {
    .filter-tabs__tab-item-reset {
        border: 0;
        width: auto;
        padding: 0
    }
}

@media(max-width:1023px) {
    .filter-tabs__tab-item-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        padding-left: 48px
    }
}

@media(max-width:639px) {
    .filter-tabs__tab-item-title {
        padding-left: 16px
    }
}

@media(max-width:1023px) {
    .expanded .filter-tabs__tab-item-title {
        position: fixed;
        z-index: 4;
        background: #fff
    }
}

.filter-tabs__tab-item-title--desktop {
    display: none
}

@media(min-width:1024px) {
    .filter-tabs__tab-item-title--desktop {
        display: block
    }
}

.filter-tabs__tab-item-title--mobile {
    display: none
}

@media(max-width:1023px) {
    .filter-tabs__tab-item-title--mobile {
        display: flex
    }
    .filter-tabs__tab-item-title--mobile span:first-child {
        flex: 1 1
    }
    .filter-tabs__tab-item-title--mobile button {
        margin-left: 16px
    }
}

.filter-tabs__tab-item--desktop {
    display: inline-block
}

@media(max-width:1023px) {
    .filter-tabs__tab-item--desktop {
        display: none
    }
}

.filter-tabs__tab-item--mobile {
    display: none
}

@media(max-width:1023px) {
    .filter-tabs__tab-item--mobile {
        display: inline-block;
        flex: initial
    }
}

@media(min-width:1024px) {
    .filter-tabs__tab-item.active {
        background: #000;
        box-shadow: 0 1px 0 #000;
        color: #fff;
        font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
    }
    .filter-dark .filter-tabs__tab-item.active {
        background: #fff;
        box-shadow: 0 1px 0 #fff;
        color: #000;
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
    }
}

.filter-tabs__tab-link {
    text-decoration: none;
    color: #000;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 48px
}

@media(min-width:1024px) {
    .filter-dark .filter-tabs__tab-link {
        color: #fff
    }
}

@media(max-width:1023px) {
    .filter-tabs__tab-link {
        border: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 16px
    }
}

@media(max-width:639px) {
    .filter-tabs__tab-link {
        padding: 16px
    }
}

.filter-tabs__tab-link:after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 48px;
    top: 26px;
    width: 7px;
    height: 7px;
    border-style: solid;
    border-color: #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

@media(min-width:1024px) {
    .filter-dark .filter-tabs__tab-link:after {
        border-color: #fff
    }
}

@media(max-width:1023px) {
    .filter-tabs__tab-link:after {
        position: static;
        margin-right: 8px
    }
}

.filter-tabs__tab-link.active:after {
    transform: rotate(225deg);
    top: 32px
}

@media(min-width:1024px) {
    .filter-tabs__tab-link.active {
        background: #000;
        color: #fff
    }
    .filter-dark .filter-tabs__tab-link.active {
        box-shadow: 0 1px 0 #fff;
        background: #fff;
        color: #000
    }
    .filter-tabs__tab-link.active:after {
        border-color: #fff
    }
    .filter-dark .filter-tabs__tab-link.active:after {
        border-color: #000
    }
}

.filter-tabs__tab-link-reset {
    text-decoration: none;
    color: #000
}

.filter-tabs__tab-link-reset.disabled {
    color: #999;
    pointer-events: none
}

.filter-tabs__tab-link:focus-visible {
    outline: 2px dashed #000;
    outline-offset: -4px
}

@media(min-width:1024px) {
    .filter-tabs__tab-link:focus-visible.active {
        outline-color: #fff
    }
    .filter-dark .filter-tabs__tab-link:focus-visible {
        outline-color: #fff
    }
    .filter-dark .filter-tabs__tab-link:focus-visible.active {
        outline-color: #000
    }
}

.filter-tabs__reset-button {
    text-decoration: none;
    color: #000;
    border: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, 0)
}

@media(max-width:1023px) {
    .filter-tabs__reset-button {
        color: #000
    }
}

@media(min-width:1024px) {
    .filter-dark .filter-tabs__reset-button {
        color: #fff
    }
}

.filter-tabs__reset-button:disabled {
    color: #999;
    cursor: auto
}

.filter-tabs__reset-button:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.filter-dark .filter-tabs__reset-button:focus-visible {
    outline-color: #fff
}

.filter-tabs__reset-button .icon-reset {
    padding-right: 12px;
    font-size: .875rem
}

@media(min-width:1024px) {
    .filter-tabs__reset-button .icon-reset {
        padding-right: 16px
    }
}

.filter-overlay {
    display: none
}

@media(min-width:1024px) {
    .filter-overlay {
        background: #000;
        color: #fff
    }
    .filter-dark .filter-overlay {
        background: #fff;
        color: #000
    }
}

.filter-overlay.expanded {
    display: block
}

@media(min-width:1024px) {
    .filter-dark .filter-overlay.expanded {
        background: #fff;
        color: #000
    }
}

.filter-overlay__container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 336px;
    padding: 32px 0;
    margin: 0 48px;
    border-bottom: 1px solid #666
}

@media(max-width:1023px) {
    .filter-overlay__container {
        padding: 0;
        flex-wrap: nowrap;
        height: auto;
        border-bottom: 0;
        padding-bottom: 16px
    }
}

@media(max-width:639px) {
    .filter-overlay__container {
        margin: 0 16px
    }
}

.filter-overlay__item {
    margin: 0
}

.filter-overlay__item-container {
    display: flex;
    align-items: center;
    padding: 16px 44px 8px 0
}

@media(max-width:1023px) {
    .filter-overlay__item-container {
        padding: 12px 0
    }
}

.filter-overlay__actions {
    display: none
}

@media(min-width:1024px) {
    .filter-overlay__actions.expanded {
        display: block;
        background: #fff
    }
    .filter-light .filter-overlay__actions.expanded {
        background: #000
    }
}

@media(max-width:1023px) {
    .filter-overlay__actions.expanded {
        display: block
    }
}

.filter-overlay__actions-container {
    width: 100vw;
    box-sizing: border-box
}

@media(max-width:1023px) {
    .filter-overlay__actions-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        width: 100vw;
        border-top: 1px solid #666;
        background: #fff;
        padding: 0 16px 0 48px;
        z-index: 4
    }
}

@media(max-width:639px) {
    .filter-overlay__actions-container {
        padding: 0 16px
    }
}

.filter-overlay__view-button {
    padding: 16px 48px;
    margin: 24px 48px;
    text-decoration: none;
    color: #000;
    display: inline-block;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
}

.theme-yellow .filter-overlay__view-button {
    background-color: #0f7ac7;
    border: 1px solid #0f7ac7;
    color: #fff;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.theme-blue .filter-overlay__view-button {
    background-color: #0f7ac7;
    border: 1px solid #0f7ac7;
    color: #fff;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.theme-green .filter-overlay__view-button {
    background-color: #007859;
    border: 1px solid #007859;
    color: #fff;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

@media(max-width:1023px) {
    .filter-overlay__view-button {
        padding: 10px 24px;
        margin: 16px 0
    }
}

.filter-overlay__view-button:active,
.filter-overlay__view-button:visited {
    color: #000
}

.theme-green .filter-overlay__view-button:active,
.theme-green .filter-overlay__view-button:visited {
    color: #fff
}

.filter-overlay__view-button:focus-visible:not(.disabled) {
    outline: 2px dashed #000;
    outline-offset: 2px
}

@media(min-width:1024px) {
    .filter-light .filter-overlay__view-button:focus-visible:not(.disabled) {
        outline-color: #fff
    }
}

.filter-overlay__view-button.disabled {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #666;
    color: #666;
    pointer-events: none;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
}

.filter-light .filter-overlay__view-button.disabled {
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

.filter-overlay__filter-list {
    list-style: none;
    -moz-columns: 4;
    columns: 4
}

.filter-overlay__filter-item {
    padding: 0
}

.filter-overlay__checkbox {
    position: absolute;
    opacity: 0
}

.filter-overlay__checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light";
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0)
}

.filter-dark .filter-overlay__checkbox+label {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
}

.filter-overlay__checkbox+label:before {
    content: "";
    margin-right: 22px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #000
}

@media(min-width:1025px) {
    .filter-overlay__checkbox+label:before {
        margin-right: 28px;
        background: #000;
        border: 1px solid #fff
    }
    .filter-dark .filter-overlay__checkbox+label:before {
        background: #fff;
        border: 1px solid #000
    }
}

@media(min-width:1025px) {
    .filter-overlay__checkbox:hover+label:before {
        background: #fff
    }
    .filter-dark .filter-overlay__checkbox:hover+label:before {
        background: #000
    }
}

.filter-overlay__checkbox:focus-visible+label {
    outline: 2px dashed #000;
    outline-offset: 2px
}

@media(min-width:1024px) {
    .filter-light .filter-overlay__checkbox:focus-visible+label {
        outline-color: #fff
    }
}

.theme-yellow .filter-overlay__checkbox:checked+label:before {
    background-color: #0f7ac7;
    border: 1px solid #0f7ac7
}

.theme-blue .filter-overlay__checkbox:checked+label:before {
    background-color: #0f7ac7;
    border: 1px solid #0f7ac7
}

.theme-green .filter-overlay__checkbox:checked+label:before {
    background-color: #007859;
    border: 1px solid #007859
}

.filter-overlay__checkbox:checked+label {
    font-weight: 600
}

.filter-overlay__checkbox:disabled+label {
    color: #b8b8b8;
    cursor: auto
}

.filter-overlay__checkbox:disabled+label:before {
    box-shadow: none;
    background: #ddd
}

.result-view {
    padding: 32px 0
}

@media(max-width:767px) {
    .result-view {
        padding: 24px
    }
}

@media(max-width:639px) {
    .result-view {
        padding: 24px 0
    }
}

@media(min-width:1024px) {
    .libraryTile.library-full-dark .result-view,
    .newsListTile.news-list-full-dark .result-view {
        background: #000;
        color: #fff
    }
}

.result-view__articles {
    display: flex;
    flex-wrap: wrap;
    padding: 8px 24px
}

@media(max-width:767px) {
    .result-view__articles {
        padding: 0
    }
}

.result-view__article-count {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    padding: 0 44px;
    margin: 0
}

@media(max-width:767px) {
    .result-view__article-count {
        padding: 0 24px
    }
}

@media(max-width:1023px) {
    .result-view__article-count {
        display: none
    }
}

@media(max-width:639px) {
    .result-view__article-count {
        padding: 0 16px
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 40px 0;
    font-size: 18px;
    line-height: 28px
}

.filter-dark .pagination {
    background-color: #000;
    color: #fff
}

.filter-dark .pagination .select-wrapper:after {
    border-color: #fff
}

.filter-dark .pagination__control {
    background: 0;
    color: #fff
}

.filter-dark .pagination__control:focus-visible {
    outline-color: #fff
}

.filter-dark .pagination select {
    background-color: rgba(0, 0, 0, 0);
    color: #fff
}

.filter-dark .pagination select:focus-visible {
    outline-color: #fff
}

.filter-dark .pagination select option {
    color: #000
}

.pagination__selector {
    margin: 0 24px;
    display: flex;
    align-items: center
}

@media(min-width:640px) {
    .pagination__selector {
        margin: 0 116px
    }
}

.pagination__selector .select-wrapper {
    position: relative
}

.pagination__selector .select-wrapper:after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 48px;
    top: calc(50% - 7px);
    width: 7px;
    height: 7px;
    border-style: solid;
    border-color: #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    pointer-events: none
}

.pagination__selector select {
    background-color: #fff;
    padding: 16px 48px 16px 24px;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    margin: 0 24px;
    border: 1px solid #666
}

.pagination__selector select:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.pagination__selector select::-ms-expand {
    display: none
}

.pagination__control {
    cursor: pointer;
    border: 0;
    background-color: rgba(0, 0, 0, 0)
}

.pagination__control:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.pagination__control--prev {
    transform: rotate(180deg)
}

.pagination__total {
    margin-left: 16px
}

.cmp-filter__heading-text {
    padding: 42px 48px;
    margin: 0
}

@media(max-width:639px) {
    .cmp-filter__heading-text {
        padding: 24px 16px
    }
}

.cmp-filter.filter-dark .cmp-filter__heading {
    background-color: #000;
    color: #fff
}

.cmp-filter.filter-dark .cmp-filter__heading h2 {
    font-family: "MCQGlobal-Light-DarkBG", "NotoSansKR-light", "NotoSansSC-light", "NotoSansJP-light"
}

@media(max-width:1023px) {
    .cmp-filter.filter-dark .cmp-filter__heading {
        background-color: #fff;
        color: #000
    }
}

.cmp-filter .cmp-tile-news-list {
    width: 100%;
    border-bottom: 1px solid #ccc
}

.cmp-filter .cmp-tile-2 {
    width: 100%
}

.cmp-filter .cmp-tile-2 .cmp-image__image {
    height: 312px;
    -o-object-fit: cover;
    object-fit: cover
}

.cmp-filter .filter-container__error {
    text-align: center
}

.cmp-filter .error-message {
    display: none
}

.cmp-filter .error-message .cmp-text {
    overflow: hidden
}

.cmp-filter .error-message .cmp-text p {
    margin: 32px 0
}

.cmp-filter .error-message__title {
    display: none
}

.cmp-filter .xf-content-height {
    margin: 0
}

.error-messages {
    background-color: #f2f2f2;
    margin: 0 auto;
    width: 100%
}

.error-messages .error-message {
    display: none
}

.error-messages .error-message .cmp-text {
    overflow: hidden
}

.error-messages .error-message .cmp-text p {
    margin: 32px 0
}

.error-messages .error-message__title {
    display: none
}

.cmp-etr .table {
    text-align: left;
    table-layout: fixed
}

.cmp-etr .table a {
    color: #000
}

.cmp-etr .table__header-content {
    display: flex;
    align-items: center
}

.cmp-etr .table__sort {
    margin-left: 8px;
    cursor: pointer
}

.cmp-etr .table__sort:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.cmp-etr .table__sort.icon-sort-default {
    color: #666
}

.cmp-etr .table thead tr {
    border-bottom: 2px solid #666;
    white-space: nowrap
}

.cmp-etr .table thead tr th {
    font-weight: bold;
    width: 150px
}

@media(max-width:768px) {
    .cmp-etr .table thead tr th {
        width: 130px;
        font-size: 16px;
        line-height: 28px;
        display: none
    }
    .cmp-etr .table thead tr th:nth-of-type(1) {
        width: 110px
    }
    .cmp-etr .table thead tr th:nth-of-type(2),
    .cmp-etr .table thead tr th:nth-of-type(3) {
        width: 160px
    }
}

.cmp-etr .table tbody tr {
    position: relative;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    height: 114px
}

.cmp-etr .table tbody tr:hover {
    background-color: rgba(155, 155, 155, .1)
}

.cmp-etr .table tbody tr:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.cmp-etr .table tbody tr td {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    padding: 16px;
    padding-left: 0
}

@media(max-width:767px) {
    .cmp-etr .table tbody tr td {
        font-size: 14px;
        line-height: 28px
    }
}

.cmp-etr .table tbody tr td .header__label,
.cmp-etr .table tbody tr td .link-container {
    display: flex;
    align-items: center
}

.cmp-etr .table tbody tr td .header__label .icon,
.cmp-etr .table tbody tr td .link-container .icon {
    font-size: 20px;
    margin-left: 8px
}

@media(max-width:768px) {
    .cmp-etr .table tbody tr {
        pointer-events: none;
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 8px 0;
        border-bottom: 1px solid #666
    }
    .cmp-etr .table tbody tr:hover {
        background-color: rgba(0, 0, 0, 0)
    }
    .cmp-etr .table tbody tr td {
        display: flex;
        padding: 2px 16px;
        font-size: 16px;
        align-items: start;
        line-height: 22px;
        width: 80%
    }
    .cmp-etr .table tbody tr td:last-child {
        display: block;
        cursor: pointer;
        pointer-events: all
    }
}

@media(min-width:1366px) {
    .cmp-etr {
        display: flex;
        flex-direction: row
    }
    .cmp-etr>[data-habitat] {
        flex: 0 0 100%
    }
}

.cmp-etr__results {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    justify-content: start
}

.cmp-etr__results--no-results {
    justify-content: center
}

@media(max-width:1365px) {
    .cmp-etr {
        flex-direction: column
    }
}

@media(max-width:1365px) {
    .cmp-etr__filters.opened {
        top: 73px;
        left: 0;
        position: fixed;
        height: calc(100vh - 300px);
        width: 100vw;
        background: #fff;
        overflow: auto;
        padding-bottom: 300px;
        z-index: 2
    }
}

@media(max-width:767px) {
    .cmp-etr__filters.opened {
        top: 73px
    }
}

@media(max-width:639px) {
    .cmp-etr__filters.opened {
        top: 56px
    }
}

@keyframes spinner {
    to {
        transform: rotate(360deg)
    }
}

.etr-search__spinner:after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    width: 32px;
    height: 32px;
    margin-top: -6px;
    margin-left: -24px;
    border-radius: 50%;
    border: 1px solid #ccc;
    border-top-color: #000;
    animation: spinner .6s linear infinite
}

@media(max-width:1365px) {
    .etr-search__spinner:after {
        width: 28px;
        height: 28px;
        margin-top: -5px;
        margin-left: -24px
    }
}

.etr-search__icon-search {
    cursor: pointer;
    font-size: 20px
}

.expanded .etr-search__icon-search--nav {
    display: none
}

.etr-search__icon-search--overlay {
    border: 0;
    background: rgba(0, 0, 0, 0);
    padding: 0
}

.etr-search__input {
    border: 0;
    font-size: 1.5rem;
    color: #000;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    line-height: 36px;
    width: 100%;
    margin-right: 8px
}

.etr-search__input:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

@media(max-width:1365px) {
    .etr-search__input {
        font-size: 1.125rem;
        line-height: 1.75rem
    }
}

@media(max-width:640px) {
    .etr-search__input {
        font-size: 1rem;
        line-height: 1.125rem
    }
}

.etr-search__fields {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #999
}

@media(max-width:639px) {
    .etr-search__fields {
        margin: 24px 0 40px 0
    }
}

.etr-search__fields--has-results {
    margin-bottom: 0
}

.etr-search__fields--has-results span {
    display: block
}

.etr-searchbox {
    width: 100%
}

.etr-cmp .results {
    flex: 1;
    padding-left: 35px
}

@media(max-width:1365px) {
    .etr-cmp .results {
        padding-left: 16px
    }
}

@media(max-width:767px) {
    .etr-cmp .results {
        padding-left: 0
    }
}

.cmp-etr .table {
    width: 100%;
    font-size: 18px
}

@media(min-width:769px) {
    .cmp-etr .table .hide-desktop {
        display: none !important
    }
}

@media(min-width:641px)and (max-width:768px) {
    .cmp-etr .table .hide-tablet {
        display: none !important
    }
}

@media(max-width:640px) {
    .cmp-etr .table .hide-mobile {
        display: none !important
    }
}

.cmp-etr .table th {
    line-height: 100px
}

.cmp-etr .table a {
    color: #000
}

.cmp-etr .table .status {
    display: flex;
    justify-content: left
}

@media(max-width:768px) {
    .cmp-etr .table .status {
        position: absolute;
        top: 8px;
        right: 8px
    }
}

.cmp-etr .table .status__icon {
    margin-right: 8px
}

.cmp-etr .table .status__icon.icon-star-o {
    color: #e5aa18
}

.cmp-etr .table .status__icon.icon-check-o {
    color: #008a0a
}

.cmp-filters {
    min-width: 350px;
    max-width: 350px;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-weight: 100;
    display: flex;
    flex-direction: column
}

.cmp-filters__accordion {
    display: block
}

@media(min-width:1366px) {
    .cmp-filters__accordion {
        display: block;
        padding-right: 32px
    }
}

@media(max-width:1365px) {
    .cmp-filters {
        max-width: 100%
    }
    .cmp-filters__accordion {
        display: none
    }
    .cmp-filters__accordion.opened {
        display: block
    }
}

.filter-control {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    position: relative;
    padding: .8rem 1rem .8rem 2.4rem;
    z-index: 3
}

.filter-control__total {
    padding: 34px 0 60px 0;
    margin-left: -40px;
    flex: 0 1 100%;
    font-size: 18px
}

.filter-control__total span.count {
    font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", "NotoSansSC-Medium", "NotoSansJP-Medium"
}

.filter-control__menu {
    display: none
}

.filter-control__menu__button {
    padding: 0;
    margin: 0;
    border: 0;
    background: rgba(0, 0, 0, 0);
    cursor: pointer
}

.filter-control__menu__button:focus-visible {
    outline: 2px dashed #000;
    outline-offset: -4px
}

.filter-control__menu__button__icon-funnel {
    display: none
}

.filter-control__title {
    font-size: 1.125rem
}

.filter-control__actions {
    display: inline;
    background: #fff
}

.filter-control__view-results {
    display: none;
    background-color: #fff;
    padding: 12px 16px;
    border: 1px solid #000;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
}

.filter-control__view-results:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.filter-control__view-results.disabled {
    border: 1px solid #f7f7f7;
    cursor: not-allowed;
    color: #999;
    outline: 0
}

.filter-control__reset {
    position: absolute;
    right: 12px;
    height: auto;
    cursor: pointer;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 1.125rem;
    background-color: rgba(0, 0, 0, 0);
    margin-right: .75rem;
    border: 0
}

.filter-control__reset:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.filter-control__reset.disabled {
    cursor: not-allowed;
    color: #999;
    outline: 0
}

.filter-control__reset>.icon-reset::before {
    font-size: .875rem;
    margin-right: .75rem
}

.filter-control__secondary {
    margin-top: 1.5625rem;
    margin-bottom: 1.5625rem
}

@media(max-width:1365px) {
    .filter-control {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #999;
        padding: 0
    }
    .filter-control__title {
        padding-left: 1rem
    }
    .filter-control__total {
        padding: 0;
        margin-left: 0;
        font-size: 18px;
        order: 3;
        display: flex;
        align-content: center;
        margin-right: 1rem;
        margin-left: 2rem;
        flex-basis: auto
    }
    .filter-control__total span.count {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
    }
    .filter-control.opened .filter-control__actions {
        position: fixed;
        height: 34px;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.25rem;
        border-top: 0
    }
    .filter-control__reset,
    .filter-control__view-results {
        display: none
    }
    .filter-control.opened .filter-control__view-results,
    .filter-control.opened .filter-control__reset {
        height: 40px;
        display: block
    }
    .filter-control__secondary {
        margin-top: 0;
        margin-bottom: 0;
        order: 1;
        flex: 1;
        display: flex;
        justify-content: flex-end
    }
    .filter-control__menu {
        display: block;
        order: 4
    }
    .filter-control__menu__button {
        display: block
    }
    .filter-control__menu__button__icon-funnel {
        display: block;
        border-left: 1px solid #666;
        border-top: 1px solid #666;
        border-right: 1px solid #666;
        padding: 22px;
        color: #000
    }
}

@media(max-width:768px) {
    .filter-control {
        flex-wrap: wrap;
        border-top: 1px solid #999
    }
    .filter-control.opened {
        border-bottom: 0
    }
    .filter-control__secondary {
        display: flex;
        justify-content: flex-start;
        padding: 1rem
    }
    .filter-control__total {
        order: 3
    }
    .filter-control__title {
        display: flex;
        align-items: center;
        border-left: 1px solid #999;
        flex: 1;
        min-height: 60px;
        line-height: 60px
    }
    .filter-control__secondary {
        margin-top: 0;
        margin-bottom: 0;
        flex: 0 1 100%;
        order: 5;
        border-top: 1px solid #999
    }
    .filter-control__menu {
        justify-content: flex-end;
        order: 4
    }
    .filter-control__menu__button__icon-funnel {
        border-top: 0
    }
}

.accordion-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
    max-width: 100%;
    border-radius: 0;
    border: 1px solid #d3d3d3;
    margin-bottom: 1rem
}

@media(max-width:1365px) {
    .accordion-list {
        max-width: unset
    }
}

.accordion-list__item {
    outline: 0;
    min-width: 200px
}

.accordion-list__item+.accordion-list__item {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.accordion-list__item:focus-visible .accordion-item__line {
    outline: 2px dashed #000;
    outline-offset: 2px
}

@media(max-width:1365px) {
    .accordion-list__item:focus-visible .accordion-item__line {
        outline-offset: -4px
    }
}

.accordion-item--opened .accordion-item__icon {
    transform: rotate(180deg)
}

.accordion-item--opened .accordion-item__inner {
    max-height: 20rem;
    transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition-duration: .5s;
    transition-property: max-height
}

.accordion-item--opened .accordion-item__content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    transition-property: opacity, transform
}

.accordion-item:focus-within .accordion-item__icon {
    transform: rotate(180deg)
}

.accordion-item:focus-within .accordion-item__inner {
    max-height: 20rem;
    transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition-duration: .5s;
    transition-property: max-height
}

.accordion-item:focus-within .accordion-item__content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    transition-property: opacity, transform
}

.accordion-item__line {
    display: block;
    padding: .8rem 1rem .8rem 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    z-index: 2;
    position: relative;
    margin-bottom: 3px
}

.accordion-item__title {
    text-transform: capitalize;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
    color: #121212
}

.accordion-item__icon {
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    transition: transform .3s ease-in-out;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAQAAABIkb+zAAABGklEQVR4Ae3RAcZCQRiF4buDfwshBGi+2UQgcIGAVtpSIuS/KyilG+UTcbk6zIH3GQBm3mM6AAAAAAAAAACA+eqf/yZBXcV/2XeCVPYx1FXj/FjGUMd45AQp/1HHGGLZNL+e61jHnKDmv8652YT1IvPfE2LX/Sh27/ycsF60yT/lk58JYn6eU4MJccjnlAmZ/33i0OAH4jg9Qcw/5g9YJpS+m6n0xvzpCfVe+nn59S7kGyYo+YYJWz3fO+E2PaFs9XzPhMy/6fmWCXq+YUJs9HzrhLh+JsQmrnq+bYKeb52g53snXPR88wQ93z9Bz/dP0PP9E/R89wQ93zpBz7dO0POtE/R86wQ93zpBzzdP+MoHAAAAAAAAAADAExTnTW20AtjhAAAAAElFTkSuQmCC)
}

.accordion-item__inner {
    max-height: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    text-transform: cubic-bezier(0.95, 0.05, 0.795, 0.035);
    transition-duration: .5s;
    transition-property: max-height;
    z-index: 1;
    position: relative
}

.accordion-item__container {
    display: flex;
    align-items: center;
    padding: .6rem 1.6rem;
    margin-left: 12px
}

@media(min-width:1366px) {
    .accordion-item--opened .cmp-checkbox label {
        width: 265px
    }
}

@media(max-width:1365px) {
    .accordion-item__line {
        padding: .8rem 1rem .8rem 1rem
    }
    .accordion-item__container {
        padding: .6rem .3rem
    }
}

.cmp-checkbox {
    margin-right: 16px
}

.cmp-checkbox__input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    z-index: 1
}

.cmp-checkbox__input+label {
    padding: 0;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 1rem;
    line-height: 1rem;
    font-weight: normal;
    letter-spacing: .2px;
    margin-left: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0)
}

.cmp-checkbox__input+label:lang(ja) {
    font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
}

.cmp-checkbox__input+label:lang(zh-cn) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.cmp-checkbox__input+label:lang(zh-tw) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.cmp-checkbox__input+label:lang(ko) {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
}

.cmp-checkbox__input+label:before {
    content: "";
    margin-right: 18px;
    display: inline-block;
    min-width: 14px;
    min-height: 14px;
    background: #fff;
    border: 1px solid #000
}

@media(min-width:1025px) {
    .cmp-checkbox__input+label:before {
        background: #fff;
        border: 1px solid #000
    }
}

@media(max-width:767px) {
    .cmp-checkbox__input+label:before {
        margin-right: 10px
    }
}

.cmp-checkbox__input:hover+label:before {
    background: #000;
    border: 1px solid #000
}

@media(max-width:1365px) {
    .cmp-checkbox__input:hover+label:before {
        background: rgba(0, 0, 0, 0)
    }
}

.cmp-checkbox__input:focus-visible+label {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.cmp-checkbox__input:checked+label:before {
    background-color: #0f7ac7;
    border: 1px solid #0f7ac7
}

.cmp-checkbox__input:checked+label {
    font-weight: bold
}

.cmp-checkbox__input:disabled+label {
    color: #b8b8b8;
    cursor: auto
}

.cmp-checkbox__input:disabled+label:before {
    box-shadow: none;
    background: #ddd
}

.cmp-checkbox__label {
    margin: 0;
    font-size: 1rem;
    color: #333;
    font-weight: 300;
    line-height: 1.3
}

.cmp-checkbox__label__title {
    position: relative;
    top: 1px
}

.cmp-checkbox__label__icon {
    margin-right: 4px
}

@keyframes slide-in {
    0 {
        transform: translateX(100%)
    }
    100% {
        transform: translateX(0)
    }
}

@keyframes slide-out {
    0 {
        transform: translateX(-100%)
    }
    100% {
        transform: translateX(0)
    }
}

.slideshow .cmp-carousel {
    max-width: 1440px;
    margin: auto
}

.slideshow .cmp-carousel__content {
    height: 732px
}

@media(min-width:768px) {
    .slideshow .cmp-carousel__content {
        height: 533px
    }
}

@media(min-width:1024px) {
    .slideshow .cmp-carousel__content {
        height: 868px
    }
}

.slideshow .cmp-carousel__item {
    padding-top: 112px
}

@media(min-width:768px) {
    .slideshow .cmp-carousel__item {
        padding-top: 80px
    }
}

@media(min-width:1024px) {
    .slideshow .cmp-carousel__item {
        padding-top: 104px
    }
}

.slideshow .cmp-carousel__item--active.publish {
    animation: slide-in .5s forwards
}

.slideshow .cmp-carousel__item--active.publish.slide-out {
    animation: slide-out .5s forwards
}

.slideshow .cmp-carousel__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    left: 0;
    bottom: 74px;
    z-index: 4;
    margin-left: 0
}

@media(min-width:768px) {
    .slideshow .cmp-carousel__actions {
        justify-content: center;
        bottom: 48px
    }
}

@media(min-width:1024px) {
    .slideshow .cmp-carousel__actions {
        bottom: 40px
    }
}

.slideshow .cmp-carousel__indicators {
    display: none
}

.slideshow .cmp-carousel__action {
    background: 0;
    border: 0;
    color: #666;
    font-size: 18px;
    padding: 0;
    cursor: pointer
}

@media(min-width:768px) {
    .slideshow .cmp-carousel__action {
        font-size: 20px
    }
}

@media(min-width:1024px) {
    .slideshow .cmp-carousel__action {
        font-size: 22px
    }
}

.slideshow .cmp-carousel__pagination {
    font-size: 18px;
    color: #666
}

@media(min-width:768px) {
    .slideshow .cmp-carousel__pagination {
        font-size: 20px
    }
}

@media(min-width:1024px) {
    .slideshow .cmp-carousel__pagination {
        font-size: 22px
    }
}

.slideshow .cmp-carousel__current-slide {
    color: #000
}

.colour-block.light-text .slideshow .cmp-carousel__current-slide {
    color: #fff
}

.slideshow .cmp-carousel__action--previous,
.slideshow .cmp-carousel__action--next {
    display: inline-flex
}

.slideshow .cmp-carousel__action--previous:focus-visible,
.slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.slideshow .cmp-carousel__action--previous:focus-visible span,
.slideshow .cmp-carousel__action--next:focus-visible span {
    outline: 0
}

.colour-block-white-white[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-white-white[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-black-black[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-black-black[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-grey-grey[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-grey-grey[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-grey-1-grey-1[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-grey-1-grey-1[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-dark-grey-dark-grey[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-dark-grey-dark-grey[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-blue-blue[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-blue-blue[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-blue-7-blue-7[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-blue-7-blue-7[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-yellow-yellow[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-yellow-yellow[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-green-green[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-green-green[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-green-7-green-7[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-green-7-green-7[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.colour-block-dark-green-dark-green[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-dark-green-dark-green[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-dark-orange-dark-orange[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-dark-orange-dark-orange[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-light-orange-light-orange[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-light-orange-light-orange[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-red-red[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-red-red[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-purple-purple[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-purple-purple[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-sand-sand[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-sand-sand[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.colour-block-sand-7-sand-7[data-component=true] .slideshow .cmp-carousel__action--previous:focus-visible,
.colour-block-sand-7-sand-7[data-component=true] .slideshow .cmp-carousel__action--next:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.slideshow .cmp-carousel__action--previous {
    transform: rotate(180deg)
}

@media(min-width:768px) {
    .slideshow .cmp-carousel__action--previous {
        margin-right: 80px
    }
}

@media(min-width:768px) {
    .slideshow .cmp-carousel__action--next {
        margin-left: 80px
    }
}

.cmp-slide {
    width: 100%;
    box-sizing: border-box
}

@media(min-width:768px) {
    .cmp-slide {
        display: grid;
        display: -ms-grid;
        -ms-grid-columns: 35% 60%;
        -ms-grid-rows: 50% 50%;
        grid-template-columns: 35% 5% 60%;
        grid-template-rows: 50% 50%
    }
}

@media(min-width:1024px) {
    .cmp-slide {
        grid-template-columns: 23% 17% 60%;
        -ms-grid-columns: 23% 17% 60%
    }
}

.cmp-slide__heading {
    margin: 0;
    margin-bottom: 40px;
    grid-row: 1/2;
    -ms-grid-row: 1
}

@media(min-width:768px) {
    .cmp-slide__heading {
        font-size: 24px;
        line-height: 36px;
        margin: 0
    }
}

@media(min-width:1024px) {
    .cmp-slide__heading {
        margin-top: 44px
    }
}

.cmp-slide__image {
    grid-column-start: 3;
    grid-row: 1/3;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    margin-bottom: 18px;
    height: 220px
}

@media(min-width:768px) {
    .cmp-slide__image {
        height: 334px;
        margin-bottom: 0
    }
}

@media(min-width:1024px) {
    .cmp-slide__image {
        height: 660px
    }
}

.cmp-slide__image * {
    height: 220px
}

@media(min-width:768px) {
    .cmp-slide__image * {
        height: 334px
    }
}

@media(min-width:1024px) {
    .cmp-slide__image * {
        height: 660px
    }
}

.cmp-slide__image.portrait .cmp-image {
    margin: auto
}

@media(min-width:768px) {
    .cmp-slide__image.portrait .cmp-image {
        width: 40%
    }
}

@media(min-width:1024px) {
    .cmp-slide__image.portrait .cmp-image {
        width: 40%
    }
}

.cmp-slide__image img {
    margin: 0;
    -o-object-fit: cover;
    object-fit: cover
}

@media(min-width:768px) {
    .cmp-slide__image img {
        margin-bottom: 0
    }
}

.cmp-slide__video {
    grid-row: 1/3;
    grid-column-start: 3;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    height: 220px;
    margin-bottom: 18px
}

@media(min-width:768px) {
    .cmp-slide__video {
        height: 334px;
        margin-bottom: 0
    }
}

@media(min-width:1024px) {
    .cmp-slide__video {
        height: 660px
    }
}

.cmp-slide__video * {
    height: 220px
}

@media(min-width:768px) {
    .cmp-slide__video * {
        height: 334px
    }
}

@media(min-width:1024px) {
    .cmp-slide__video * {
        height: 660px
    }
}

.cmp-slide__video .cmp-video {
    margin: 0
}

.cmp-slide__video .cmp-video__play {
    height: auto
}

.cmp-slide__video img {
    margin: 0;
    margin-bottom: 18px;
    -o-object-fit: cover;
    object-fit: cover
}

@media(min-width:768px) {
    .cmp-slide__video img {
        margin-bottom: 0
    }
}

.cmp-slide__caption {
    align-self: end;
    -ms-grid-row-align: end
}

@media(min-width:768px) {
    .cmp-slide__caption {
        grid-row: 2/3
    }
}

@media(min-width:1024px) {
    .cmp-slide__caption {
        padding-bottom: 100px
    }
}

.cmp-slide__caption * {
    font-size: 14px;
    line-height: 24px;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    margin: 0
}

@media(min-width:768px) {
    .cmp-slide__caption * {
        font-size: 16px;
        line-height: 28px
    }
}

div[data-component=permissions-overlay] .permissions-overlay__container {
    display: none
}

div[data-component=permissions-overlay] .permissions-overlay__container:before {
    content: "";
    position: absolute;
    background: #000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2
}

div[data-component=permissions-overlay] .permissions-overlay__modal {
    position: fixed;
    background: #fff;
    width: 100%;
    max-width: 1080px;
    max-height: 75%;
    overflow: auto;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: 3
}

@media(min-width:768px) {
    div[data-component=permissions-overlay] .permissions-overlay__modal {
        width: 75%;
        max-height: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }
}

div[data-component=permissions-overlay] .permissions-overlay--author {
    padding: 50px;
    margin: auto;
    background: #000;
    display: flex;
    justify-content: center
}

div[data-component=permissions-overlay] .permissions-overlay--author.permissions-overlay__container:before {
    display: none
}

div[data-component=permissions-overlay] .permissions-overlay--author .permissions-overlay__modal {
    position: static;
    transform: none
}

div[data-component=permissions-overlay] .permissions-overlay__header {
    display: flex;
    padding: 20px 16px;
    justify-content: space-between
}

div[data-component=permissions-overlay] .permissions-overlay__header--breakline {
    border-bottom: 1px solid #999
}

@media(min-width:768px) {
    div[data-component=permissions-overlay] .permissions-overlay__header {
        padding: 24px 32px
    }
}

div[data-component=permissions-overlay] .permissions-overlay__header-heading {
    margin: 0
}

div[data-component=permissions-overlay] .permissions-overlay__header-close {
    cursor: pointer;
    margin-left: 12px;
    margin-top: 4px
}

@media(min-width:1024px) {
    div[data-component=permissions-overlay] .permissions-overlay__header-close {
        margin-top: 10px
    }
}

div[data-component=permissions-overlay] .permissions-overlay__content {
    padding: 32px 16px
}

@media(min-width:768px) {
    div[data-component=permissions-overlay] .permissions-overlay__content {
        padding: 40px 32px 48px
    }
}

div[data-component=permissions-overlay] .permissions-overlay__content-subheading {
    padding-bottom: 16px;
    font-family: "MCQGlobal-Medium", "NotoSansKR-Medium", "NotoSansSC-Medium", "NotoSansJP-Medium";
    margin: 0
}

div[data-component=permissions-overlay] .permissions-overlay__content-description * {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    margin: 0
}

div[data-component=permissions-overlay] .permissions-overlay__footer {
    padding: 0 16px 56px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

@media(min-width:768px) {
    div[data-component=permissions-overlay] .permissions-overlay__footer {
        padding: 0 32px 32px;
        flex-direction: row;
        justify-content: flex-start
    }
}

div[data-component=permissions-overlay] .permissions-overlay__footer-cta {
    width: 100%;
    margin-bottom: 30px
}

div[data-component=permissions-overlay] .permissions-overlay__footer-cta--right {
    margin-bottom: 0
}

@media(min-width:768px) {
    div[data-component=permissions-overlay] .permissions-overlay__footer-cta {
        width: auto;
        margin-bottom: 0
    }
    div[data-component=permissions-overlay] .permissions-overlay__footer-cta--right {
        margin-left: 32px
    }
}

div[data-component=permissions-overlay] .permissions-overlay__footer .cmp-cta {
    width: 100%;
    margin: 0;
    padding: 16px
}

@media(min-width:768px) {
    div[data-component=permissions-overlay] .permissions-overlay__footer .cmp-cta {
        padding: 14px 40px
    }
}

div[data-component=permissions-overlay] .permissions-overlay__footer .cmp-cta--tertiary {
    padding: 0
}

div[data-component=permissions-overlay] .permissions-overlay__disclaimer {
    padding: 0 16px;
    padding-bottom: 40px
}

@media(min-width:768px) {
    div[data-component=permissions-overlay] .permissions-overlay__disclaimer {
        padding: 0 32px 56px
    }
}

div[data-component=permissions-overlay] .permissions-overlay__disclaimer * {
    font-size: 12px;
    line-height: 20px;
    color: #666;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    margin: 0
}

div[data-component=cmp-alert-banner] .cmp-alert-list {
    list-style: none;
    margin: 0;
    padding: 0
}

div[data-component=cmp-alert-banner] .cmp-alert-item__text p {
    color: #fff;
    font-family: "MCQGlobal-Regular-DarkBG", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
    font-size: 1rem;
    display: inline-block
}

div[data-component=cmp-alert-banner] .cmp-alert-item__text p a {
    color: #fff
}

div[data-component=cmp-alert-banner] .cmp-alert-item__text p a:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 1px
}

div[data-component=cmp-alert-banner] .cmp-alert-item__container {
    padding: 0 48px;
    display: flex;
    align-items: center
}

@media(max-width:1366px) {
    div[data-component=cmp-alert-banner] .cmp-alert-item__container {
        padding-right: 0
    }
}

@media(max-width:640px) {
    div[data-component=cmp-alert-banner] .cmp-alert-item__container {
        padding: 0 16px
    }
}

div[data-component=cmp-alert-banner] .cmp-alert-item__icon {
    color: #fff;
    margin-right: 16px;
    align-self: flex-start;
    margin-top: 16px;
    line-height: 2rem
}

div[data-component=cmp-alert-banner] .cmp-alert-item__icon.icon-none {
    display: none
}

div[data-component=cmp-alert-banner] .cmp-alert-item__close-button {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    margin-left: auto;
    padding: 0 24px;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 16px;
    line-height: 2rem
}

@media(max-width:640px) {
    div[data-component=cmp-alert-banner] .cmp-alert-item__close-button {
        padding: 0
    }
}

div[data-component=cmp-alert-banner] .cmp-alert-item__close-button:focus-visible .icon-close {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

div[data-component=cmp-alert-banner] .cmp-alert-item__close-button:focus:active .icon-close {
    outline: 0
}

div[data-component=cmp-alert-banner] .cmp-alert-item__close-text {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden
}

.cmp-data-table .valueChange {
    display: block;
    font-size: 1rem;
    padding: 4px
}

.cmp-data-table .valueChange::before {
    content: "";
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    position: relative;
    left: -4px
}

@media(max-width:1199px) {
    .cmp-data-table .valueChange {
        font-size: 1rem
    }
}

.cmp-data-table .valueChangePositive {
    color: #429a44
}

.cmp-data-table .valueChangePositive::before {
    border: solid #429a44;
    border-width: 3px 0 0 3px;
    top: 3px
}

.cmp-data-table .valueChangeNegative {
    color: #cf2938
}

.cmp-data-table .valueChangeNegative::before {
    border: solid #cf2938;
    border-width: 0 3px 3px 0;
    top: -2px
}

.cmp-data-table .table-gesture-container {
    display: inline-flex;
    align-items: center;
    display: none
}

.cmp-data-table .icon-swipe-gesture {
    font-size: 24px;
    transform: translate3d(0, 0, 0);
    margin-right: 16px;
    display: inline-block
}

.cmp-data-table .icon-swipe-gesture.animate {
    animation: swipe-gesture 2s infinite ease
}

.cmp-data-table table {
    table-layout: fixed;
    text-align: left;
    width: 100%;
    min-width: 500px;
    border: 0;
    border-collapse: collapse
}

.cmp-data-table .table-stripes tr:nth-child(even) {
    background-color: #f5f5f5
}

.cmp-data-table .table-container {
    padding: 0
}

.cmp-data-table .table-container__header {
    display: none
}

@media(max-width:1024px) {
    .cmp-data-table .table-container {
        overflow: auto
    }
}

.cmp-data-table .table-container th {
    padding: 24px 8px 24px 8px;
    border: 0;
    text-align: left;
    font-weight: bold
}

.cmp-data-table .table-container tr {
    border-bottom: 1px solid #bbb;
    border-collapse: collapse
}

.cmp-data-table .table-container tr:last-child {
    border: 0
}

.cmp-data-table .table-container td {
    padding: 32px 8px 32px 8px;
    border: 0
}

@keyframes swipe-gesture {
    10%,
    90% {
        transform: translate3d(-4px, 0, 0)
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0)
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0)
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0)
    }
}

.cmp-data-table--compact .table-container {
    display: block;
    width: 100%;
    overflow-x: auto
}

.cmp-data-table--compact .table-container__header {
    display: block;
    margin: 0 0 64px 0
}

@media(max-width:1199px) {
    .cmp-data-table--compact .table-container__header {
        margin: 0 0 44px 0
    }
}

.cmp-data-table--compact .table-container table {
    table-layout: unset;
    min-width: auto
}

.cmp-data-table--compact .table-container table tr:first-child {
    border-bottom: 2px solid #000
}

.cmp-data-table--compact .table-container table tr td,
.cmp-data-table--compact .table-container table tr th {
    padding: 12px 8px;
    text-align: right
}

.cmp-data-table--compact .table-container table tr td:nth-child(1),
.cmp-data-table--compact .table-container table tr th:nth-child(1) {
    text-align: left
}

.cmp-data-table--compact .table-container table tr:last-child {
    border-bottom: 1px solid #bbb
}

.text__custom-list {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-weight: normal;
    margin-left: 0;
    letter-spacing: 1px
}

.text__custom-list--h3 ul li {
    font-size: 2rem;
    line-height: 3rem
}

.text__custom-list--h4 ul li {
    font-size: 1.5rem;
    line-height: 2.25rem
}

@media(max-width:1023px) {
    .text h2 {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.75rem;
        line-height: 2.25rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .text h2:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    .text h2:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .text h2:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .text h2:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

@media(max-width:1023px) {
    .text h3 {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
        font-size: 1.375rem;
        line-height: 2rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .text h3:lang(ja) {
        font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
    }
    .text h3:lang(zh-cn) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .text h3:lang(zh-tw) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .text h3:lang(ko) {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
    }
}

@media(max-width:1023px) {
    .text h4 {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
        font-size: 1.125rem;
        line-height: 1.75rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .text h4:lang(ja) {
        font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
    }
    .text h4:lang(zh-cn) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .text h4:lang(zh-tw) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .text h4:lang(ko) {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
    }
}

@media(max-width:639px) {
    .text h4 {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
        font-size: 1.375rem;
        line-height: 1.875rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .text h4:lang(ja) {
        font-family: "MCQGlobal-Regular", "NotoSansJP-Regular", Arial, sans-serif
    }
    .text h4:lang(zh-cn) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .text h4:lang(zh-tw) {
        font-family: "MCQGlobal-Regular", "NotoSansSC-Regular", Arial, sans-serif
    }
    .text h4:lang(ko) {
        font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", Arial, sans-serif
    }
}

div[data-component=common-form-text] .cmp-form-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px
}

@media(min-width:768px) {
    div[data-component=common-form-text] .cmp-form-text {
        margin-bottom: 40px
    }
}

div[data-component=common-form-text] .cmp-form-text__container {
    position: relative
}

div[data-component=common-form-text] .cmp-form-text__container .cmp-form-text__required-indicator {
    position: absolute;
    top: 0;
    right: -16px
}

div[data-component=common-form-text] .cmp-form-text__required-indicator {
    color: #000;
    font-size: 1.25rem;
    margin-left: -3px
}

div[data-component=common-form-text] .cmp-form-text__constraint-message {
    position: absolute;
    opacity: 0;
    left: 0;
    bottom: -28px;
    font-size: 16px;
    line-height: 28px;
    color: #e02935
}

div[data-component=common-form-text] .cmp-form-text__indicator {
    font-size: 16px;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 16px;
    opacity: 0
}

div[data-component=common-form-text] .cmp-form-text__indicator--valid {
    color: #007859
}

div[data-component=common-form-text] .cmp-form-text__indicator--invalid {
    color: #e02935
}

div[data-component=common-form-text] .cmp-form-text label {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 16px;
    color: #333;
    align-self: flex-start
}

div[data-component=common-form-text] .cmp-form-text__text,
div[data-component=common-form-text] .cmp-form-text__textarea {
    width: 100%;
    height: 56px;
    padding: 14px 32px;
    border: 1px solid #666;
    border-radius: 0;
    font-size: 18px;
    box-sizing: border-box
}

div[data-component=common-form-text] .cmp-form-text__text.has-value:invalid:not(:focus),
div[data-component=common-form-text] .cmp-form-text__textarea.has-value:invalid:not(:focus) {
    border: 1px solid red
}

div[data-component=common-form-text] .cmp-form-text__text.has-value:invalid:not(:focus)~.cmp-form-text__indicator--invalid,
div[data-component=common-form-text] .cmp-form-text__text.has-value:invalid:not(:focus)~.cmp-form-text__constraint-message,
div[data-component=common-form-text] .cmp-form-text__textarea.has-value:invalid:not(:focus)~.cmp-form-text__indicator--invalid,
div[data-component=common-form-text] .cmp-form-text__textarea.has-value:invalid:not(:focus)~.cmp-form-text__constraint-message {
    opacity: 1
}

div[data-component=common-form-text] .cmp-form-text__text.has-value:valid:not(:focus)~.cmp-form-text__indicator--valid,
div[data-component=common-form-text] .cmp-form-text__textarea.has-value:valid:not(:focus)~.cmp-form-text__indicator--valid {
    opacity: 1
}

div[data-component=common-form-text] .cmp-form-text__text:focus-visible:not(.has-focus),
div[data-component=common-form-text] .cmp-form-text__textarea:focus-visible:not(.has-focus) {
    outline: 2px dashed #000;
    outline-offset: 2px
}

div[data-component=common-form-text] .cmp-form-text__text[type=number]::-webkit-inner-spin-button,
div[data-component=common-form-text] .cmp-form-text__text[type=number]::-webkit-outer-spin-button,
div[data-component=common-form-text] .cmp-form-text__textarea[type=number]::-webkit-inner-spin-button,
div[data-component=common-form-text] .cmp-form-text__textarea[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

div[data-component=common-form-text] .cmp-form-text__textarea {
    min-height: 56px;
    height: auto;
    resize: none
}

.light-text div[data-component=common-form-text] .cmp-form-text label {
    color: #fff
}

.light-text div[data-component=common-form-text] .cmp-form-text__text,
.light-text div[data-component=common-form-text] .cmp-form-text__textarea {
    color: #fff;
    border-color: #fff;
    background-color: #000
}

.light-text div[data-component=common-form-text] .cmp-form-text__text:focus-visible:not(.has-focus),
.light-text div[data-component=common-form-text] .cmp-form-text__textarea:focus-visible:not(.has-focus) {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.light-text div[data-component=common-form-text] .cmp-form-text__required-indicator {
    color: #fff
}

.cmp-form--submit div[data-component=common-form-text] .cmp-form-text__text:required:invalid:not(:focus),
.cmp-form--submit div[data-component=common-form-text] .cmp-form-text__textarea:required:invalid:not(:focus) {
    border: 1px solid #e02935;
    box-shadow: none
}

div[data-component=common-form-options] .accessibility-hidden {
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap
}

div[data-component=common-form-options] .cmp-form-options {
    display: flex;
    flex-direction: column;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    border: 0
}

div[data-component=common-form-options] .cmp-form-options--drop-down {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0
}

div[data-component=common-form-options] .cmp-form-options__label {
    font-size: 1.25rem;
    line-height: 2rem;
    margin-bottom: 16px;
    color: #333
}

div[data-component=common-form-options] .cmp-form-options__select {
    position: relative
}

div[data-component=common-form-options] .cmp-form-options__select select {
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    border-color: #666;
    padding: 16px 24px;
    outline: 0;
    -webkit-appearance: none
}

div[data-component=common-form-options] .cmp-form-options__select select::-ms-expand {
    display: none
}

div[data-component=common-form-options] .cmp-form-options__select select::-ms-value {
    background: 0;
    color: #000
}

div[data-component=common-form-options] .cmp-form-options__select select:focus-visible:not(.has-focus) {
    outline: 2px dashed #000;
    outline-offset: 2px
}

div[data-component=common-form-options] .cmp-form-options__select select :invalid {
    border: 1px solid #dc3832
}

div[data-component=common-form-options] .cmp-form-options__select .cmp-form-options__required-indicator {
    position: absolute;
    top: 0;
    right: -16px
}

div[data-component=common-form-options] .cmp-form-options__select:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: calc(50% - 7px);
    right: 24px;
    width: 7px;
    height: 7px;
    border-style: solid;
    border-color: #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    pointer-events: none
}

div[data-component=common-form-options] .cmp-form-options__required-indicator {
    color: #000;
    font-size: 24px;
    margin-left: -3px
}

div[data-component=common-form-options] .cmp-form-options__field-label {
    display: flex;
    align-items: center;
    list-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
    width: -moz-fit-content;
    width: fit-content
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=checkbox],
div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio] {
    position: absolute;
    z-index: 1;
    width: 16px;
    height: 16px;
    opacity: 0;
    box-sizing: border-box
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=checkbox]+label,
div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio]+label {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 0;
    font-size: 1.125rem;
    line-height: 1.75rem
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=checkbox]+label:before,
div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio]+label:before {
    content: "";
    margin-top: 4px;
    margin-right: 16px;
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: #fff;
    border: 1px solid #666
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=checkbox]:checked+label:before,
div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio]:checked+label:before {
    background: #3587dc;
    border: 1px solid #3587dc
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=checkbox]:disabled+label,
div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio]:disabled+label {
    color: #b8b8b8;
    cursor: auto
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=checkbox]:disabled+label:before,
div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio]:disabled+label:before {
    box-shadow: none;
    border: 1px solid #e3e3e3
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=checkbox]:not(:disabled),
div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio]:not(:disabled) {
    cursor: pointer
}

.light-text div[data-component=common-form-options] .cmp-form-options__field-label input[type=checkbox]:disabled+label:before,
.light-text div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio]:disabled+label:before {
    border: 1px solid #444;
    background-color: #444
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio]+label:before {
    border-radius: 50%
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio]:checked+label:after {
    content: "";
    position: absolute;
    top: 11px;
    left: 6px;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=radio]:focus-visible+label:before {
    outline: 2px dashed #000;
    outline-offset: 2px
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=checkbox]:checked+label:after {
    position: absolute;
    left: 6px;
    top: 5px;
    content: "";
    background-color: rgba(0, 0, 0, 0);
    width: 5px;
    height: 11px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg)
}

div[data-component=common-form-options] .cmp-form-options__field-label input[type=checkbox]:focus-visible:not(.has-focus)+label:before {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.light-text div[data-component=common-form-options] .cmp-form-options__label {
    color: #fff
}

.light-text div[data-component=common-form-options] .cmp-form-options__select select {
    color: #fff;
    border-color: #fff;
    background: rgba(0, 0, 0, .8) !important
}

.light-text div[data-component=common-form-options] .cmp-form-options__select select::-ms-value {
    background: 0;
    color: #fff
}

.light-text div[data-component=common-form-options] .cmp-form-options__select select:focus-visible:not(.has-focus) {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

.light-text div[data-component=common-form-options] .cmp-form-options__select:after {
    border-color: #fff
}

.light-text div[data-component=common-form-options] .cmp-form-options input[type=radio]:focus-visible:not(.has-focus)+label:before,
.light-text div[data-component=common-form-options] .cmp-form-options input[type=checkbox]:focus-visible:not(.has-focus)+label:before {
    outline: 2px dashed #fff
}

.light-text div[data-component=common-form-options] .cmp-form-options__required-indicator {
    color: #fff
}

.cmp-form--submit div[data-component=common-form-options] input[type=checkbox]:required:invalid:not(:focus),
.cmp-form--submit div[data-component=common-form-options] input[type=radio]:required:invalid:not(:focus),
.cmp-form--submit div[data-component=common-form-options] select:required:invalid:not(:focus) {
    border: 1px solid #dc3832
}

.cmp-form--submit div[data-component=common-form-options] input[type=checkbox]:required:invalid:not(:focus)+label:before,
.cmp-form--submit div[data-component=common-form-options] input[type=radio]:required:invalid:not(:focus)+label:before,
.cmp-form--submit div[data-component=common-form-options] select:required:invalid:not(:focus)+label:before {
    border: 1px solid #dc3832
}

.cmp-form--submit div[data-component=common-form-options] input[type=checkbox]::-ms-value,
.cmp-form--submit div[data-component=common-form-options] input[type=radio]::-ms-value,
.cmp-form--submit div[data-component=common-form-options] select::-ms-value {
    color: #fff
}

div[data-component=common-form-button] .cmp-form-button {
    border: 1px solid;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    margin-top: 24px;
    padding: 12px 0;
    text-align: center;
    text-decoration: none;
    width: 100%
}

@media(min-width:768px) {
    div[data-component=common-form-button] .cmp-form-button {
        padding: 14px 0;
        width: 300px
    }
}

div[data-component=common-form-button] .cmp-form-button.yellow {
    background: #0f7ac7;
    color: #000;
    border-color: #0f7ac7
}

div[data-component=common-form-button] .cmp-form-button.blue {
    background: #0f7ac7;
    color: #fff;
    border-color: #0f7ac7
}

div[data-component=common-form-button] .cmp-form-button.green {
    background: #007859;
    color: #fff;
    border-color: #007859
}

div[data-component=common-form-button] .cmp-form-button.light:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

div[data-component=common-form-button] .cmp-form-button.light:hover,
div[data-component=common-form-button] .cmp-form-button.light:active {
    background: #000;
    color: #fff;
    border-color: #000;
    transition: background .3s ease-out, border .3s ease-out
}

div[data-component=common-form-button] .cmp-form-button.dark:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: 2px
}

div[data-component=common-form-button] .cmp-form-button.dark:hover,
div[data-component=common-form-button] .cmp-form-button.dark:active {
    background: #fff;
    color: #000;
    border-color: #fff;
    transition: background .3s ease-out, border .3s ease-out
}

.sitemap__container {
    padding: 0 48px
}

@media(max-width:1199px) {
    .sitemap__container {
        padding: 0 24px
    }
}

.sitemap__group hr {
    margin: 48px 0;
    border-top: 1px solid #f7f7f7
}

@media(max-width:1199px) {
    .sitemap__group hr {
        margin: 32px -24px
    }
}

.sitemap__group__link {
    text-decoration: none;
    color: #000;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

.sitemap__group__link:focus {
    border-bottom: 1px dashed #000
}

.sitemap__group__link:hover {
    border-bottom: 1px solid #000
}

.sitemap__group__link:lang(ja) {
    font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
}

.sitemap__group__link:lang(zh-cn) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.sitemap__group__link:lang(zh-tw) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.sitemap__group__link:lang(ko) {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
}

@media(max-width:1199px) {
    .sitemap__group__link {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1rem;
        line-height: 1.625rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .sitemap__group__link:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    .sitemap__group__link:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .sitemap__group__link:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .sitemap__group__link:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

.sitemap__group__header {
    margin: 12px 0;
    outline: 0
}

.sitemap__group__header.sitemap__group__header--1 a {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 2.25rem;
    line-height: 3rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

.sitemap__group__header.sitemap__group__header--1 a:lang(ja) {
    font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
}

.sitemap__group__header.sitemap__group__header--1 a:lang(zh-cn) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.sitemap__group__header.sitemap__group__header--1 a:lang(zh-tw) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.sitemap__group__header.sitemap__group__header--1 a:lang(ko) {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
}

.sitemap__group__header.sitemap__group__header--2 a {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 0
}

.sitemap__group__header.sitemap__group__header--2 a:lang(ja) {
    font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
}

.sitemap__group__header.sitemap__group__header--2 a:lang(zh-cn) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.sitemap__group__header.sitemap__group__header--2 a:lang(zh-tw) {
    font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
}

.sitemap__group__header.sitemap__group__header--2 a:lang(ko) {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
}

@media(max-width:1199px) {
    .sitemap__group__header.sitemap__group__header--1 a {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.5rem;
        line-height: 1.75rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .sitemap__group__header.sitemap__group__header--1 a:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    .sitemap__group__header.sitemap__group__header--1 a:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .sitemap__group__header.sitemap__group__header--1 a:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .sitemap__group__header.sitemap__group__header--1 a:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
    .sitemap__group__header.sitemap__group__header--2 {
        margin-bottom: 16px
    }
    .sitemap__group__header.sitemap__group__header--2 a {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
        font-size: 1.125rem;
        line-height: 1.75rem;
        font-weight: normal;
        letter-spacing: 0;
        margin-left: 0
    }
    .sitemap__group__header.sitemap__group__header--2 a:lang(ja) {
        font-family: "MCQGlobal-Light", "NotoSansJP-Light", Arial, sans-serif
    }
    .sitemap__group__header.sitemap__group__header--2 a:lang(zh-cn) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .sitemap__group__header.sitemap__group__header--2 a:lang(zh-tw) {
        font-family: "MCQGlobal-Light", "NotoSansSC-Light", Arial, sans-serif
    }
    .sitemap__group__header.sitemap__group__header--2 a:lang(ko) {
        font-family: "MCQGlobal-Light", "NotoSansKR-Light", Arial, sans-serif
    }
}

.sitemap__group__list {
    outline: 0;
    -moz-column-count: 3;
    column-count: 3;
    list-style: none;
    padding-left: 0
}

.sitemap__group--sub .sitemap__group__list {
    -moz-column-count: 1;
    column-count: 1;
    margin-bottom: 16px
}

@media(max-width:1199px) {
    .sitemap__group__list {
        -moz-column-count: 1;
        column-count: 1
    }
    .sitemap__group--sub .sitemap__group__list {
        -moz-column-count: 1;
        column-count: 1
    }
}

.sitemap__group__list--empty {
    visibility: hidden;
    display: inline
}

.sitemap__group__list--empty::after {
    display: inline-block;
    content: ""
}

@media(max-width:1199px) {
    .sitemap__group__list--empty {
        display: none
    }
}

.sitemap__group--sub {
    display: inline-block
}

div[data-component=social-share-macq] .cmp-social-share {
    text-align: right;
    position: relative
}

div[data-component=social-share-macq] .cmp-social-share.left {
    text-align: left
}

div[data-component=social-share-macq] .cmp-social-share.left .cmp-social-share__list-container {
    left: 0;
    right: auto
}

div[data-component=social-share-macq] .cmp-social-share.left .cmp-social-share__copy-tooltip-content {
    left: 64px;
    right: auto
}

div[data-component=social-share-macq] .cmp-social-share.upwards .cmp-social-share__list-container {
    bottom: 56px;
    top: auto
}

div[data-component=social-share-macq] .cmp-social-share.upwards .cmp-social-share__list {
    flex-direction: column-reverse
}

div[data-component=social-share-macq] .cmp-social-share.upwards .cmp-social-share__list-item-link {
    border-top: 0;
    border-bottom: 1px solid #fff
}

div[data-component=social-share-macq] .cmp-social-share.dark .cmp-social-share__list-item-link:hover {
    background: #fff;
    color: #000
}

div[data-component=social-share-macq] .cmp-social-share__share {
    border: 0;
    padding: 0;
    color: #fff;
    display: inline-block;
    padding: 20px;
    background: #0f7ac7;
    cursor: pointer
}

div[data-component=social-share-macq] .cmp-social-share__share.expanded {
    background: #f7f7f7;
    color: #000
}

div[data-component=social-share-macq] .cmp-social-share__share.expanded .cmp-social-share__share-icon {
    display: none
}

div[data-component=social-share-macq] .cmp-social-share__share.expanded .cmp-social-share__close-icon {
    display: inline-block
}

div[data-component=social-share-macq] .cmp-social-share__share.expanded:focus-visible {
    outline-offset: -4px;
    outline: 2px dashed #000
}

div[data-component=social-share-macq] .cmp-social-share__share:focus-visible {
    outline-offset: -4px;
    outline: 2px dashed #fff
}

div[data-component=social-share-macq] .cmp-social-share__close-icon {
    display: none
}

div[data-component=social-share-macq] .cmp-social-share__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column
}

div[data-component=social-share-macq] .cmp-social-share__list-container {
    display: none;
    position: absolute;
    right: 0;
    top: 56px;
    z-index: 4
}

div[data-component=social-share-macq] .cmp-social-share__list-item-link {
    background: #0f7ac7;
    border-top: 1px solid #fff;
    color: #fff;
    padding: 20px;
    display: inline-block;
    text-decoration: none;
    position: relative
}

div[data-component=social-share-macq] .cmp-social-share__list-item-link:focus-visible {
    outline-offset: -4px;
    outline: 2px dashed #fff
}

div[data-component=social-share-macq] .cmp-social-share__list-item-link:hover {
    background: #000;
    color: #fff
}

div[data-component=social-share-macq] .cmp-social-share__list-item-icon {
    display: inline-block;
    width: 16px;
    height: 16px
}

div[data-component=social-share-macq] .cmp-social-share__copy-tooltip {
    display: none
}

div[data-component=social-share-macq] .cmp-social-share__copy-tooltip-content {
    position: absolute;
    top: 0;
    background: #fff;
    border: 1px solid #999;
    color: #000;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    pointer-events: none;
    z-index: 3;
    padding: 10px;
    right: 64px
}

.horizontal-rule {
    overflow: hidden
}

.horizontal-rule .cmp-horizontal-rule {
    height: 1px;
    border: 0;
    background: #999;
    margin: 0;
    padding: 0;
    width: 100%
}

.horizontal-rule .cmp-horizontal-rule--author {
    margin: 32px 0
}

.horizontal-rule .cmp-horizontal-rule--publish.margin8.top {
    margin-top: 8px
}

.horizontal-rule .cmp-horizontal-rule--publish.margin8.bottom {
    margin-bottom: 8px
}

.horizontal-rule .cmp-horizontal-rule--publish.margin16.top {
    margin-top: 16px
}

.horizontal-rule .cmp-horizontal-rule--publish.margin16.bottom {
    margin-bottom: 16px
}

.horizontal-rule .cmp-horizontal-rule--publish.margin32.top {
    margin-top: 32px
}

.horizontal-rule .cmp-horizontal-rule--publish.margin32.bottom {
    margin-bottom: 32px
}

.horizontal-rule .cmp-horizontal-rule.darkGrey {
    background: #666
}

div[data-component=kpi] {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    color: #000
}

div[data-component=kpi] a {
    color: #000
}

div[data-component=kpi].theme--dark {
    color: #fff
}

div[data-component=kpi].theme--dark a {
    color: #fff
}

div[data-component=kpi].theme--dark .kpi__item {
    color: #fff !important
}

div[data-component=kpi].size--large.has-image {
    min-height: 300px
}

div[data-component=kpi].size--large .kpi__title {
    margin-bottom: 32px
}

div[data-component=kpi].size--large .kpi__item-primary {
    font-size: 6.25rem;
    line-height: 6.25rem
}

div[data-component=kpi].size--large .kpi__item-secondary {
    margin-top: 32px
}

div[data-component=kpi].size--small.has-image {
    min-height: 220px
}

div[data-component=kpi].size--small .kpi__title {
    margin-bottom: 16px
}

div[data-component=kpi].size--small .kpi__item-primary {
    font-size: 4.6875rem;
    line-height: 4.6875rem
}

div[data-component=kpi].size--small .kpi__item-secondary {
    margin-top: 16px
}

@media(max-width:1200px) {
    div[data-component=kpi].size--small .kpi__item-primary,
    div[data-component=kpi].size--large .kpi__item-primary {
        font-size: 3rem;
        line-height: 3rem
    }
}

@media(max-width:768px) {
    div[data-component=kpi].size--small .kpi__title,
    div[data-component=kpi].size--large .kpi__title {
        font-size: 1.125rem;
        line-height: 1.5rem
    }
    div[data-component=kpi].size--small .kpi__item-primary,
    div[data-component=kpi].size--large .kpi__item-primary {
        font-size: 3rem;
        line-height: 3rem
    }
    div[data-component=kpi].size--small .kpi__item-secondary,
    div[data-component=kpi].size--large .kpi__item-secondary {
        font-size: 1.125rem;
        line-height: 1.125rem
    }
}

@media(max-width:640px) {
    div[data-component=kpi].size--small .kpi__title,
    div[data-component=kpi].size--large .kpi__title {
        margin-bottom: 8px
    }
    div[data-component=kpi].size--small .kpi__item-primary,
    div[data-component=kpi].size--large .kpi__item-primary {
        font-size: 2.75rem;
        line-height: 2.75rem
    }
    div[data-component=kpi].size--small .kpi__item-secondary,
    div[data-component=kpi].size--large .kpi__item-secondary {
        margin-top: 8px
    }
}

div[data-component=kpi].text--green .kpi__item {
    color: #007859
}

@media(max-width:640px) {
    div[data-component=kpi].has-image img {
        max-width: 100%
    }
}

div[data-component=kpi].has-image.image-align--left {
    justify-content: flex-start
}

div[data-component=kpi].has-image.image-align--center {
    justify-content: center
}

div[data-component=kpi].has-image.image-align--right {
    justify-content: flex-end
}

div[data-component=kpi].has-image .kpi__container {
    position: absolute
}

div[data-component=kpi] .kpi__container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0
}

div[data-component=kpi] .kpi__container--left {
    justify-content: flex-start;
    left: 0
}

div[data-component=kpi] .kpi__container--center {
    justify-content: center;
    left: 0
}

div[data-component=kpi] .kpi__container--right {
    justify-content: flex-end;
    right: 0
}

div[data-component=kpi] .kpi__content-wrapper {
    max-width: calc(99% + 4px)
}

div[data-component=kpi] .kpi__title {
    display: inline-block;
    font-size: 1.5625rem
}

div[data-component=kpi] .kpi__title sup {
    top: -0.8em;
    font-size: 14px
}

div[data-component=kpi] .kpi__item-primary {
    font-weight: 600;
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
    margin: 0
}

div[data-component=kpi] .kpi__item-secondary {
    display: inline-block;
    color: #000;
    font-size: 1.5625rem
}

div[data-component=kpi] .kpi__movement {
    display: inline-block;
    margin-right: 16px
}

@media(max-width:640px) {
    div[data-component=kpi] .kpi__movement {
        margin-right: 0
    }
}

div[data-component=kpi] .kpi__movement--up {
    transform: rotate(-90deg)
}

div[data-component=kpi] .kpi__movement--down {
    transform: rotate(90deg)
}

div[data-component=kpi] .kpi__movement--no-change {
    font-size: 1.25rem
}

.cmp-chart {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0
}

.cmp-chart--activity span.highcharts-title {
    position: absolute;
    font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
    font-size: 24px;
    white-space: normal !important;
    color: #fff;
    display: block;
    width: 150px !important;
    text-align: center
}

.cmp-chart .legend-square {
    min-width: 16px;
    min-height: 16px;
    content: " ";
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle
}

.cmp-chart--activity .highcharts-data-labels.highcharts-solidgauge-series.highcharts-tracker {
    position: relative
}

.cmp-chart--activity .highcharts-data-labels.highcharts-solidgauge-series.highcharts-tracker>div {
    top: 0 !important;
    position: relative;
    opacity: 1 !important
}

.cmp-chart--activity .highcharts-data-labels.highcharts-solidgauge-series.highcharts-tracker:nth-of-type(1) span {
    top: 15px !important
}

.cmp-chart--activity .highcharts-data-labels.highcharts-solidgauge-series.highcharts-tracker:nth-of-type(2) span {
    top: 39px !important
}

.cmp-chart--activity .highcharts-data-labels.highcharts-solidgauge-series.highcharts-tracker:nth-of-type(3) span {
    top: 63px !important
}

.cmp-chart--activity .highcharts-data-labels.highcharts-solidgauge-series.highcharts-tracker:nth-of-type(4) span {
    top: 87px !important
}

div[data-component=region-map] .map-label h2 {
    margin: 0 0 8px 0;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 1.3125rem;
    font-family: "MCQGlobal-Reg-Cond", "NotoSansKR-Reg-Cond", "NotoSansSC-Reg-Cond", "NotoSansJP-Reg-Cond"
}

div[data-component=region-map] .map-label p {
    font-size: 3.4375rem;
    font-family: "MCQGlobal-Regular", "NotoSansKR-Regular", "NotoSansSC-Regular", "NotoSansJP-Regular";
    margin: 0
}

div[data-component=region-map] .map-label p span {
    font-size: 3rem
}

@media(max-width:1199px) {
    div[data-component=region-map] .map-label p {
        font-size: 3.25rem
    }
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {
    div[data-component=region-map] .map-label p {
        font-family: "MCQGlobal-Reg-Cond", "NotoSansKR-Reg-Cond", "NotoSansSC-Reg-Cond", "NotoSansJP-Reg-Cond"
    }
}

div[data-component=region-map] .map-container {
    width: 100%;
    height: 700px
}

@media(max-width:767px) {
    div[data-component=region-map] .map-container {
        height: 160px
    }
    div[data-component=region-map] .map-container .map-label {
        display: none
    }
}

@media(min-width:768px) {
    div[data-component=region-map] .map-container--mobile {
        display: none
    }
}

div[data-component=region-map] .map-container--mobile .map-label {
    border-bottom: 1px solid #979797;
    padding: 16px 0
}

div[data-component=region-map] .map-container--mobile .map-label h2 {
    margin-bottom: 16px
}

.aem-mode--author div[data-component=region-map] .map-container--mobile {
    display: none
}

.map-container-author {
    width: 100%;
    height: 800px
}

.map-container-publish {
    width: 100%;
    height: 70vh
}

.map-container {
    position: relative
}

.map-container .highcharts-legend {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light"
}

.map-container .highcharts-tooltip>span {
    background-color: #fff;
    min-width: 200px;
    min-height: 100px;
    padding: 16px
}

.map-container .highcharts-data-labels h3 {
    font-family: "MCQGlobal-Light", "NotoSansKR-Light", "NotoSansSC-Light", "NotoSansJP-Light";
    font-size: 20px;
    color: #000;
    margin: 0
}

.map-container table {
    border: 0;
    border-collapse: separate;
    border-spacing: 0 5px;
    width: 100%
}

.map-container thead tr th {
    padding-bottom: 16px
}

.map-container thead tr th:last-child {
    width: 45px
}

.map-container thead tr td:first-child {
    padding-right: 24px
}

.map-container tbody tr td {
    padding: 8px 0;
    border-top: 1px solid #ccc
}

.map-container .legend__item--infrastructure {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #7526e5;
    margin-right: 8px;
    border-radius: 4px
}

.map-container .legend__item--agriculture {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00bf8c;
    margin-right: 8px;
    border-radius: 4px
}

.map-container .legend__item--renewables {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #0f7ac7;
    margin-right: 8px;
    border-radius: 4px
}

.map-container .legend__item--real-estate {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #cf2938;
    margin-right: 8px;
    border-radius: 4px
}

.map-container .legend__item--insurance-services {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #f27305;
    margin-right: 8px;
    border-radius: 4px
}

.map-container .highcharts-legend-item image {
    height: 18px;
    width: 12px
}

.asset-map__button {
    display: none
}

.asset-map__button--active {
    display: block;
    position: absolute;
    top: 75px;
    cursor: pointer;
    right: 0;
    width: 48px;
    height: 48px;
    background-color: #333;
    border: 0;
    border-left: 1px solid #666
}

.asset-map__button--active span {
    display: block;
    height: 2px;
    width: 32px;
    overflow: hidden;
    color: #fff;
    background: #fff;
    margin: auto;
    margin-bottom: 8px
}

.asset-map__button--active span:nth-child(1) {
    transform: rotate3d(0, 0, 1, 45deg);
    top: 24px;
    left: 7px;
    position: absolute
}

.asset-map__button--active span:nth-child(2) {
    opacity: 0
}

.asset-map__button--active span:nth-child(3) {
    transform: rotate3d(0, 0, 1, -45deg);
    top: 24px;
    left: 7px;
    position: absolute
}

.asset-map__sector--infrastructure .highcharts-point:not(.highcharts-null-point) {
    fill: #7526e5
}

.asset-map__sector--agriculture .highcharts-point:not(.highcharts-null-point) {
    fill: #00bf8c
}

.asset-map__sector--renewables .highcharts-point:not(.highcharts-null-point) {
    fill: #0f7ac7
}

.asset-map__sector--real-estate .highcharts-point:not(.highcharts-null-point) {
    fill: #cf2938
}

.asset-map__sector--insurance-services .highcharts-point:not(.highcharts-null-point) {
    fill: #f27305
}

.asset-details {
    position: absolute;
    flex-direction: column;
    top: 16px;
    left: 16px;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    width: 300px;
    display: none;
    z-index: 10;
    overflow: hidden
}

@media screen and (max-height:600px) {
    .asset-details {
        height: 93%
    }
}

.asset-details__heading {
    line-height: 2rem;
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-top: 16px
}

.asset-details__description {
    line-height: 1.25rem
}

.asset-details-img-container {
    width: 300px;
    height: 180px
}

.asset-details-img-container__img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.asset-details-content__container {
    overflow: auto;
    max-height: 300px;
    padding: 24px;
    flex: 1 1 auto
}

@media screen and (max-height:900px) {
    .asset-details-content__container {
        max-height: 260px
    }
}

@media screen and (max-height:836px) {
    .asset-details-content__container {
        max-height: 200px
    }
}

.asset-details__category {
    color: #666;
    line-height: 1.25rem
}

.asset-details__case-studies {
    line-height: 1rem
}

.asset-details__case-studies-link {
    line-height: 1rem;
    margin-left: 8px;
    color: #000
}

.asset-details_close {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 2rem;
    background-color: #333;
    border: 0;
    cursor: pointer;
    width: 48px;
    height: 48px
}

.asset-details_close span {
    display: block;
    height: 2px;
    width: 32px;
    overflow: hidden;
    color: #fff;
    background: #fff;
    margin: auto;
    margin-bottom: 8px
}

.asset-details_close span:first-child {
    transform: rotate3d(0, 0, 1, 45deg);
    top: 24px;
    left: 8px;
    position: absolute
}

.asset-details_close span:nth-child(2) {
    opacity: 0
}

.asset-details_close span:last-child {
    transform: rotate3d(0, 0, 1, -45deg);
    top: 24px;
    left: 8px;
    position: absolute
}

.back-to-top {
    height: 100%;
    position: relative
}

div[data-component=back-to-top] {
    position: fixed;
    bottom: 0;
    height: auto;
    width: auto;
    right: 0;
    margin-bottom: 32px;
    z-index: 999
}

div[data-component=back-to-top] .back-to-top__button {
    height: 56px;
    width: 56px;
    background: rgba(15, 122, 199, .5);
    margin-left: auto;
    border: 0 solid #0c629f;
    opacity: 0;
    display: block
}

@media(min-width:1200px) {
    div[data-component=back-to-top] .back-to-top__button {
        margin-right: 48px
    }
}

@media(max-width:1439px) {
    div[data-component=back-to-top] .back-to-top__button {
        margin-right: 48px
    }
}

@media(max-width:1023px) {
    div[data-component=back-to-top] .back-to-top__button {
        margin-right: 24px
    }
}

div[data-component=back-to-top] .back-to-top__button-icon {
    color: #fff;
    text-align: center;
    transform: rotate(-90deg);
    display: block;
    font-size: 150%
}

div[data-component=back-to-top] .back-to-top__button:focus {
    outline: 0
}

div[data-component=back-to-top] .back-to-top__button:hover {
    cursor: pointer
}

div[data-component=back-to-top] .back-to-top__button:focus-visible,
div[data-component=back-to-top] .back-to-top__button:hover {
    background: #0c629f
}

div[data-component=back-to-top] .back-to-top__button:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: -4px;
    border-color: #0c629f
}

.cmp-pageanchors-container .sticky {
    z-index: 1000
}

.cmp-pageanchors-container .page-anchor-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto
}

@media(max-width:640px) {
    .cmp-pageanchors-container .page-anchor-container {
        padding-left: 16px
    }
}

@media(min-width:641px)and (max-width:1399px) {
    .cmp-pageanchors-container .page-anchor-container {
        padding-left: 48px
    }
}

@media(min-width:1400px) {
    .cmp-pageanchors-container .page-anchor-container>div {
        padding-left: 48px
    }
}

.cmp-pageanchors-container .ms-Fabric--isFocusVisible button[tabindex="0"]:focus-visible {
    outline: 2px dashed #000;
    outline-offset: -2px
}

.tabbed-module {
    line-height: 22px
}

.tabbed-module__header.container-none {
    padding-left: 0;
    padding-right: 0
}

.tabbed-module__tablist {
    display: none;
    margin-bottom: 0;
    background: #fff;
    padding: 0
}

@media(min-width:768px) {
    .tabbed-module__tablist {
        display: flex;
        flex-direction: row;
        list-style: none;
        justify-content: center;
        margin-bottom: 48px
    }
}

.tabbed-module__tablist li {
    display: table
}

.tabbed-module__tablist .tabbed-module__tab {
    flex: 1 1 0;
    height: auto;
    white-space: normal;
    text-align: center;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center
}

.tabbed-module__tablist .tabbed-module__tab span {
    display: table-cell;
    vertical-align: middle
}

.tabbed-module__tablist .tabbed-module__tab:focus-visible {
    outline: 2px dashed #000;
    outline-offset: -4px
}

.tabbed-module__tablist .tabbed-module__tab:not(.tabbed-module__tab__active):hover {
    background: #000;
    color: #fff
}

.tabbed-module__tablist .tabbed-module__tab__active {
    color: #fff
}

.tabbed-module__tablist .tabbed-module__tab__active:focus-visible {
    outline: 2px dashed #fff;
    outline-offset: -4px
}

.tabbed-module__tablist .tabbed-module__tab__blue {
    background: #0f7ac7;
    border: 1px solid #0f7ac7
}

.tabbed-module__tablist .tabbed-module__tab__green {
    background: #007859;
    border: 1px solid #007859
}

.tabbed-module__tablist .tabbed-module__tab__black {
    background: #000;
    border: 1px solid #000
}

.tabbed-module__tablist .tabbed-module__tab.btn {
    margin-right: 0;
    min-width: auto;
    padding: 8px 16px
}

@media(min-width:1200px) {
    .tabbed-module__tablist .tabbed-module__tab.btn {
        padding: 8px 24px
    }
}

.tabbed-module__tablist .tabbed-module__tab:not(:first-child) {
    border-left: 1px solid #000
}

.tabbed-module__tablist .tabbed-module__tab:not(:first-child):not(:last-child) {
    border-right: 0;
    border-radius: 0
}

.tabbed-module__tablist .tabbed-module__tab:not(:first-child):not(:last-child):hover {
    border-right: 0
}

.tabbed-module__tablist .tabbed-module__tab:first-child {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.tabbed-module__tablist .tabbed-module__tab:first-child:hover {
    border-right: 0
}

.tabbed-module__tablist .tabbed-module__tab:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.tabbed-module__tablist .tabbed-module__tab--active+.tabbed-module__tab {
    border-left: 0
}

.tabbed-module__mobile-select {
    margin-bottom: 16px
}

.tabbed-module__mobile-select select {
    height: 40px;
    width: 100%
}

.tabbed-module__mobile-select select:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 2px
}

.tabbed-module__mobile-select--bg {
    padding: 8px 8px 16px;
    margin: 8px 8px 0
}

.tabbed-module__mobile-select--bg * {
    margin: 0
}

.tabbed-module__mobile-select--bg.container-none {
    margin: 0 8px;
    padding: 8px 0 16px
}

@media(min-width:768px) {
    .tabbed-module__mobile-select {
        display: none
    }
}

.tabbed-module__mobile-select .input-field {
    padding-top: 0
}

.tabbed-module__tab-panel-container {
    position: relative
}

.tabbed-module__tab-panel-container--edit-mode {
    height: 100% !important
}

.tabbed-module__tab-panel-container--edit-mode .benefits-module__section--text {
    opacity: 1 !important
}

.tabbed-module__tab-panel-container--edit-mode .benefits-module__image-container {
    animation: none
}

.tabbed-module__tab-panel {
    display: flex;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    flex-direction: column;
    width: 100%;
    opacity: 0
}

@media(min-width:768px) {
    .tabbed-module__tab-panel {
        padding-bottom: 64px;
        opacity: 1
    }
}

.tabbed-module__tab-panel--active {
    position: relative;
    z-index: 99;
    opacity: 1
}

.tabbed-module__tab-panel--active .benefits-module__cta:not(.benefits-module__cta--edit-mode) {
    display: block
}

.tabbed-module__tab-panel--hidden:not(.tabbed-module__tab-panel--edit-mode) {
    visibility: hidden;
    transform: translate(-10000px, -10000px)
}

.tabbed-module__tab-panel--edit-mode {
    display: block;
    visibility: visible;
    position: relative
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0
}