body {
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
    --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
    --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

:where(.is-layout-flex) {
    gap: 0.5em;
}

:where(.is-layout-grid) {
    gap: 0.5em;
}

body .is-layout-flow>.alignleft {
    float: left;
    margin-inline-start: 0;
    margin-inline-end: 2em;
}

body .is-layout-flow>.alignright {
    float: right;
    margin-inline-start: 2em;
    margin-inline-end: 0;
}

body .is-layout-flow>.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

body .is-layout-constrained>.alignleft {
    float: left;
    margin-inline-start: 0;
    margin-inline-end: 2em;
}

body .is-layout-constrained>.alignright {
    float: right;
    margin-inline-start: 2em;
    margin-inline-end: 0;
}

body .is-layout-constrained>.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

body .is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: var(--wp--style--global--content-size);
    margin-left: auto !important;
    margin-right: auto !important;
}

body .is-layout-constrained>.alignwide {
    max-width: var(--wp--style--global--wide-size);
}

body .is-layout-flex {
    display: flex;
}

body .is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}

body .is-layout-flex>* {
    margin: 0;
}

body .is-layout-grid {
    display: grid;
}

body .is-layout-grid>* {
    margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

.wp-block-navigation a:where(:not(.wp-element-button)) {
    color: inherit;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

.wp-block-pullquote {
    font-size: 1.5em;
    line-height: 1.6;
}

html:root {
    --tp-theme-1: #0071c5
}

html:root {
    --tp-theme-2: #008080
}

html:root {
    --tp-theme-3: #0071c5
}

html:root {
    --tp-theme-4: #AB6C56
}

html:root {
    --tp-theme-5: #4353FF
}

html:root {
    --tp-theme-6: #3661FC
}

html:root {
    --tp-theme-7: #2CAE76
}

html:root {
    --tp-theme-8: #FF5A1B
}

html:root {
    --tp-theme-9: #03041C
}

html:root {
    --tp-theme-10: #ED212C
}

html .back-to-top-btn {
    background-color: #03041C
}

div#n2-ss-2 .n2-ss-slider-1 {
    display: grid;
    position: relative;
}

div#n2-ss-2 .n2-ss-slider-2 {
    display: grid;
    position: relative;
    overflow: hidden;
    padding: 0px 0px 0px 0px;
    border: 0px solid RGBA(62, 62, 62, 1);
    border-radius: 0px;
    background-clip: padding-box;
    background-repeat: repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: scroll;
    z-index: 1;
}

div#n2-ss-2:not(.n2-ss-loaded) .n2-ss-slider-2 {
    background-image: none !important;
}

div#n2-ss-2 .n2-ss-slider-3 {
    display: grid;
    grid-template-areas: 'cover';
    position: relative;
    overflow: hidden;
    z-index: 10;
}

div#n2-ss-2 .n2-ss-slider-3>* {
    grid-area: cover;
}

div#n2-ss-2 .n2-ss-slide-backgrounds,
div#n2-ss-2 .n2-ss-slider-3>.n2-ss-divider {
    position: relative;
}

div#n2-ss-2 .n2-ss-slide-backgrounds {
    z-index: 10;
}

div#n2-ss-2 .n2-ss-slide-backgrounds>* {
    overflow: hidden;
}

div#n2-ss-2 .n2-ss-slide-background {
    transform: translateX(-100000px);
}

div#n2-ss-2 .n2-ss-slider-4 {
    place-self: center;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: grid;
    grid-template-areas: 'slide';
}

div#n2-ss-2 .n2-ss-slider-4>* {
    grid-area: slide;
}

div#n2-ss-2.n2-ss-full-page--constrain-ratio .n2-ss-slider-4 {
    height: auto;
}

div#n2-ss-2 .n2-ss-slide {
    display: grid;
    place-items: center;
    grid-auto-columns: 100%;
    position: relative;
    z-index: 20;
    -webkit-backface-visibility: hidden;
    transform: translateX(-100000px);
}

div#n2-ss-2 .n2-ss-slide {
    perspective: 1500px;
}

div#n2-ss-2 .n2-ss-slide-active {
    z-index: 21;
}

.n2-ss-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

div#n2-ss-2 .n2-font-7072b39a1ceee533125c8a9d4f7c93b6-hover {
    font-family: 'Poppins';
    color: #000000;
    font-size: 206.25%;
    text-shadow: none;
    line-height: 1.4;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 600;
}

div#n2-ss-2 .n2-style-6638226a6a76b5c3bc1b3613c1746375-heading {
    background: RGBA(255, 255, 255, 0);
    opacity: 1;
    padding: 0px 8px 0px 8px;
    box-shadow: none;
    border: 0px solid RGBA(0, 0, 0, 1);
    border-radius: 0px;
}

div#n2-ss-2 .n-uc-16645f85717a4-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-16645f85717a4-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-112b657266f9c-inner {
    border-radius: 5px;
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-112b657266f9c-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n2-font-13eb7485cfbff955aa18f24b43e30e99-hover {
    font-family: 'Roboto', 'Arial';
    color: #ffffff;
    font-size: 93.75%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 400;
}

div#n2-ss-2 .n-uc-1d0736cc2c080-inner {
    border-radius: 5px;
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-1d0736cc2c080-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-1513b324b914e-inner {
    border-radius: 5px;
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-1513b324b914e-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n2-font-007b6207815e909bb3eb21d6536c78a4-paragraph {
    font-family: 'Poppins';
    color: RGBA(0, 0, 0, 0.8);
    font-size: 112.5%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 400;
}

div#n2-ss-2 .n2-font-007b6207815e909bb3eb21d6536c78a4-paragraph a,
div#n2-ss-2 .n2-font-007b6207815e909bb3eb21d6536c78a4-paragraph a:FOCUS {
    font-family: 'Poppins';
    color: #1890d7;
    font-size: 100%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 400;
}

div#n2-ss-2 .n2-font-007b6207815e909bb3eb21d6536c78a4-paragraph a:HOVER,
div#n2-ss-2 .n2-font-007b6207815e909bb3eb21d6536c78a4-paragraph a:ACTIVE {
    font-family: 'Poppins';
    color: #1890d7;
    font-size: 100%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 400;
}

div#n2-ss-2 .n2-font-4ab2a3259f8b1da8c1108d4d1abf68da-hover {
    font-family: 'Poppins';
    color: #000000;
    font-size: 106.25%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 600;
}

div#n2-ss-2 .n2-style-40c81928b2e3324085d48d1038bd4c8d-heading {
    background: RGBA(255, 255, 255, 0);
    opacity: 1;
    padding: 0px 9px 0px 9px;
    box-shadow: none;
    border: 0px solid RGBA(0, 0, 0, 1);
    border-radius: 0px;
}

div#n2-ss-2 .n-uc-fSGxyF24pEvD-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-fSGxyF24pEvD-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-GrJWp7pKswRl-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-GrJWp7pKswRl-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-ZlemjldGUHqO-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-ZlemjldGUHqO-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-FqQuVMiFovxB-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-FqQuVMiFovxB-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-gy7LUfzMtZQO-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-gy7LUfzMtZQO-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-ydZ13TIZUYFB-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-ydZ13TIZUYFB-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-agoyzovyVjmb-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-agoyzovyVjmb-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-hH4dosJ9ws7d-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-hH4dosJ9ws7d-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-vO0TalFsNiFe-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-vO0TalFsNiFe-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-ZeLCDCWHufND-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-ZeLCDCWHufND-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-lYU6mvgDr5dZ-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-lYU6mvgDr5dZ-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-Z7AAn935Va0z-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-Z7AAn935Va0z-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-JZL2lSfRQMFH-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-JZL2lSfRQMFH-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-1JNSsRXRgn46-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-1JNSsRXRgn46-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-NSsw2R36CjbZ-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-NSsw2R36CjbZ-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-GKHEFQdUkxij-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-GKHEFQdUkxij-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n2-font-63c7506e7698c85674ccbf6e26a88357-hover {
    font-family: 'Poppins';
    color: #000000;
    font-size: 200%;
    text-shadow: none;
    line-height: 1.4;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 600;
}

div#n2-ss-2 .n-uc-qItS3sa62zQl-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-qItS3sa62zQl-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-Of8pTKm9iEiv-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-Of8pTKm9iEiv-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-EX7SJkRbeYZv-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-EX7SJkRbeYZv-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-zcYaoUG4MUKk-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-zcYaoUG4MUKk-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-nGD6eMoubu44-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-nGD6eMoubu44-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-ezy6D4bOvc2y-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-ezy6D4bOvc2y-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-m9WsIchMC2dq-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-m9WsIchMC2dq-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-IQOCM0qsAYJi-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-IQOCM0qsAYJi-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-4StzQ4xy4r4R-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-4StzQ4xy4r4R-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-zmX4SOJbZhwY-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-zmX4SOJbZhwY-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-btvyzLXDPWkc-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-btvyzLXDPWkc-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-1494c5c16b5af-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-1494c5c16b5af-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-c0KcQQAAPvc9-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-c0KcQQAAPvc9-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-TTJLbeKK2JRq-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-TTJLbeKK2JRq-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-t4ziRN6jcSp4-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-t4ziRN6jcSp4-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-mN3rmNgpiSou-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-mN3rmNgpiSou-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-JntMRVeaBRm5-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n-uc-JntMRVeaBRm5-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-2 .n2-ss-slide-limiter {
    max-width: 1920px;
}

div#n2-ss-2 .n-uc-j0cYZg6uGcf4 {
    padding: 55px 0px 55px 120px
}

div#n2-ss-2 .n-uc-19001ef738de1-inner {
    padding: 10px 0px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-180f0b0bfd71d-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-2 .n-uc-180f0b0bfd71d-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-2 .n-uc-180f0b0bfd71d-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-1ee0db941a48b-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-1ee0db941a48b {
    max-width: 870px;
    width: 45%
}

div#n2-ss-2 .n-uc-y2FHthx5iaHn {
    --margin-top: 25px;
    --margin-bottom: 25px;
    max-width: 735px
}

div#n2-ss-2 .n-uc-16645f85717a4-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-2 .n-uc-16645f85717a4-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-2 .n-uc-16645f85717a4-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-16645f85717a4 {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-2 .n-uc-112b657266f9c-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-112b657266f9c {
    width: auto
}

div#n2-ss-2 .n-uc-1d0736cc2c080-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-1d0736cc2c080 {
    width: auto
}

div#n2-ss-2 .n-uc-1513b324b914e-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-1513b324b914e {
    width: auto
}

div#n2-ss-2 .n-uc-ItxdfBtEVVue {
    --margin-bottom: 55px;
    max-width: 610px
}

div#n2-ss-2 .n-uc-13116e89e3503-inner {
    padding: 0px 0px 0px 5px;
    text-align: right;
    --ssselfalign: var(--ss-fe);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-13116e89e3503 {
    width: 55%
}

div#n2-ss-2 .n-uc-vmTRzG9kshx1 {
    --margin-right: -30px;
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-2 .n-uc-Ok3T5SBgeWFB {
    padding: 55px 0px 55px 120px
}

div#n2-ss-2 .n-uc-JOcXqkaifthT-inner {
    padding: 10px 0px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-rBfdTDffvqnh-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-2 .n-uc-rBfdTDffvqnh-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-2 .n-uc-rBfdTDffvqnh-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-bsnfFlqcUfJx-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-bsnfFlqcUfJx {
    max-width: 865px;
    width: 45%
}

div#n2-ss-2 .n-uc-CGsr30tNmoHx {
    --margin-left: -7px
}

div#n2-ss-2 .n-uc-m7s1E3AfO0dL {
    --margin-top: 25px;
    --margin-bottom: 25px;
    max-width: 755px
}

div#n2-ss-2 .n-uc-fSGxyF24pEvD-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-2 .n-uc-fSGxyF24pEvD-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-2 .n-uc-fSGxyF24pEvD-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-fSGxyF24pEvD {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-2 .n-uc-GrJWp7pKswRl-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-GrJWp7pKswRl {
    width: auto
}

div#n2-ss-2 .n-uc-ZlemjldGUHqO-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-ZlemjldGUHqO {
    width: auto
}

div#n2-ss-2 .n-uc-FqQuVMiFovxB-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-FqQuVMiFovxB {
    width: auto
}

div#n2-ss-2 .n-uc-rgl2AYrLeJkK {
    --margin-bottom: 55px;
    max-width: 490px
}

div#n2-ss-2 .n-uc-zsf1eOPg2nSt-inner {
    padding: 0px 0px 0px 0px;
    text-align: right;
    --ssselfalign: var(--ss-fe);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-zsf1eOPg2nSt {
    width: 55%
}

div#n2-ss-2 .n-uc-LWDj2oEtib4R {
    --margin-right: -30px;
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-2 .n-uc-GbbO2RZir8AQ {
    padding: 55px 0px 55px 120px
}

div#n2-ss-2 .n-uc-Q0DW13cDY2j0-inner {
    padding: 10px 10px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-jyailelqbaHZ-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-2 .n-uc-jyailelqbaHZ-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-2 .n-uc-jyailelqbaHZ-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-VfCzjEFtVnFr-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-VfCzjEFtVnFr {
    max-width: 800px;
    width: 45%
}

div#n2-ss-2 .n-uc-rgQ0croiaNLT {
    --margin-top: 25px;
    --margin-bottom: 25px;
    max-width: 745px
}

div#n2-ss-2 .n-uc-gy7LUfzMtZQO-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-2 .n-uc-gy7LUfzMtZQO-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-2 .n-uc-gy7LUfzMtZQO-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-gy7LUfzMtZQO {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-2 .n-uc-ydZ13TIZUYFB-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-ydZ13TIZUYFB {
    max-width: 70px;
    width: auto
}

div#n2-ss-2 .n-uc-agoyzovyVjmb-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-agoyzovyVjmb {
    width: auto
}

div#n2-ss-2 .n-uc-hH4dosJ9ws7d-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-hH4dosJ9ws7d {
    width: auto
}

div#n2-ss-2 .n-uc-h9X0QanQBbQv {
    --margin-bottom: 55px;
    max-width: 490px
}

div#n2-ss-2 .n-uc-l1QOO8SezRoC-inner {
    padding: 0px 0px 0px 0px;
    text-align: right;
    --ssselfalign: var(--ss-fe);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-l1QOO8SezRoC {
    width: 55%
}

div#n2-ss-2 .n-uc-UW2mroboiqQX {
    --margin-right: -30px;
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-2 .n-uc-7tP9yXz4KVxO {
    padding: 55px 0px 55px 120px
}

div#n2-ss-2 .n-uc-NQQxcPf3OPzD-inner {
    padding: 10px 10px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-NQQxcPf3OPzD {
    max-width: 1790px
}

div#n2-ss-2 .n-uc-3NmL4hEzjcCz-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-2 .n-uc-3NmL4hEzjcCz-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-2 .n-uc-3NmL4hEzjcCz-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-StV4lQ5aIBac-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-StV4lQ5aIBac {
    max-width: 815px;
    width: 45%
}

div#n2-ss-2 .n-uc-PxXMBdFtOSng {
    --margin-top: 25px;
    --margin-bottom: 25px
}

div#n2-ss-2 .n-uc-vO0TalFsNiFe-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-2 .n-uc-vO0TalFsNiFe-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-2 .n-uc-vO0TalFsNiFe-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-vO0TalFsNiFe {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-2 .n-uc-ZeLCDCWHufND-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-ZeLCDCWHufND {
    width: auto
}

div#n2-ss-2 .n-uc-lYU6mvgDr5dZ-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-lYU6mvgDr5dZ {
    width: auto
}

div#n2-ss-2 .n-uc-Z7AAn935Va0z-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-Z7AAn935Va0z {
    width: auto
}

div#n2-ss-2 .n-uc-QYsb92CPxssf {
    --margin-bottom: 55px;
    max-width: 530px
}

div#n2-ss-2 .n-uc-uqXrQnsACGRE-inner {
    padding: 0px 0px 0px 0px;
    text-align: right;
    --ssselfalign: var(--ss-fe);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-uqXrQnsACGRE {
    width: 55%
}

div#n2-ss-2 .n-uc-7bA6iyKhz9CW {
    --margin-right: -30px;
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-2 .n-uc-sK26AVQlRq3r {
    padding: 55px 0px 55px 120px
}

div#n2-ss-2 .n-uc-w9IJX7clSENP-inner {
    padding: 10px 10px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-w9IJX7clSENP {
    max-width: 1790px
}

div#n2-ss-2 .n-uc-IR5ajmTi0AQT-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-2 .n-uc-IR5ajmTi0AQT-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-2 .n-uc-IR5ajmTi0AQT-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-9RFyLxcdKti4-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-9RFyLxcdKti4 {
    max-width: 815px;
    width: 45%
}

div#n2-ss-2 .n-uc-7Vc2QJ2jIf13 {
    --margin-top: 25px;
    --margin-bottom: 25px
}

div#n2-ss-2 .n-uc-JZL2lSfRQMFH-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-2 .n-uc-JZL2lSfRQMFH-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-2 .n-uc-JZL2lSfRQMFH-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-JZL2lSfRQMFH {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-2 .n-uc-1JNSsRXRgn46-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-1JNSsRXRgn46 {
    width: auto
}

div#n2-ss-2 .n-uc-NSsw2R36CjbZ-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-NSsw2R36CjbZ {
    width: auto
}

div#n2-ss-2 .n-uc-GKHEFQdUkxij-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-GKHEFQdUkxij {
    width: auto
}

div#n2-ss-2 .n-uc-qVVmuMFObc1g {
    --margin-bottom: 55px;
    max-width: 530px
}

div#n2-ss-2 .n-uc-mJ02OzUW2ApF-inner {
    padding: 0px 0px 0px 0px;
    text-align: right;
    --ssselfalign: var(--ss-fe);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-mJ02OzUW2ApF {
    width: 55%
}

div#n2-ss-2 .n-uc-uotsumZfjSde {
    --margin-right: -30px;
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-2 .n-uc-eZiWw1JKsHDt {
    padding: 55px 0px 55px 120px
}

div#n2-ss-2 .n-uc-07amfQLdDJX0-inner {
    padding: 10px 10px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-07amfQLdDJX0 {
    max-width: 1790px
}

div#n2-ss-2 .n-uc-kdPQdSWtKImW-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-2 .n-uc-kdPQdSWtKImW-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-2 .n-uc-kdPQdSWtKImW-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-6XAj5xvscrNI-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-6XAj5xvscrNI {
    max-width: 815px;
    width: 45%
}

div#n2-ss-2 .n-uc-dhGIKlNq3x59 {
    --margin-top: 25px;
    --margin-bottom: 25px
}

div#n2-ss-2 .n-uc-qItS3sa62zQl-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-2 .n-uc-qItS3sa62zQl-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-2 .n-uc-qItS3sa62zQl-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-qItS3sa62zQl {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-2 .n-uc-Of8pTKm9iEiv-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-Of8pTKm9iEiv {
    width: auto
}

div#n2-ss-2 .n-uc-EX7SJkRbeYZv-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-EX7SJkRbeYZv {
    width: auto
}

div#n2-ss-2 .n-uc-zcYaoUG4MUKk-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-zcYaoUG4MUKk {
    width: auto
}

div#n2-ss-2 .n-uc-JuIlFx7ywvSu {
    --margin-bottom: 55px;
    max-width: 530px
}

div#n2-ss-2 .n-uc-A3xhTA1xAVFv-inner {
    padding: 0px 0px 0px 0px;
    text-align: right;
    --ssselfalign: var(--ss-fe);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-A3xhTA1xAVFv {
    width: 55%
}

div#n2-ss-2 .n-uc-l03OF6XD1B4C {
    --margin-right: -30px;
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-2 .n-uc-6qb6autTwJJR {
    padding: 55px 0px 55px 120px
}

div#n2-ss-2 .n-uc-YUKPzzvAfa9N-inner {
    padding: 10px 0px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-YUKPzzvAfa9N {
    max-width: 1790px
}

div#n2-ss-2 .n-uc-6v1aXCVmKTFc-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-2 .n-uc-6v1aXCVmKTFc-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-2 .n-uc-6v1aXCVmKTFc-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-G1f22EPGA6hE-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-G1f22EPGA6hE {
    max-width: 815px;
    width: 45%
}

div#n2-ss-2 .n-uc-Ckw4cz9W0XgS {
    --margin-top: 25px;
    --margin-bottom: 25px
}

div#n2-ss-2 .n-uc-nGD6eMoubu44-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-2 .n-uc-nGD6eMoubu44-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-2 .n-uc-nGD6eMoubu44-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-nGD6eMoubu44 {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-2 .n-uc-ezy6D4bOvc2y-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-ezy6D4bOvc2y {
    width: auto
}

div#n2-ss-2 .n-uc-m9WsIchMC2dq-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-m9WsIchMC2dq {
    width: auto
}

div#n2-ss-2 .n-uc-IQOCM0qsAYJi-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-IQOCM0qsAYJi {
    width: auto
}

div#n2-ss-2 .n-uc-hqfS2pjnQHYl {
    --margin-bottom: 55px;
    max-width: 530px
}

div#n2-ss-2 .n-uc-aICwTzmU9eD2-inner {
    padding: 0px 0px 0px 0px;
    text-align: right;
    --ssselfalign: var(--ss-fe);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-aICwTzmU9eD2 {
    width: 55%
}

div#n2-ss-2 .n-uc-d5Zc5ctrKr35 {
    --margin-right: -13px;
    max-width: 970px
}

div#n2-ss-2 .n-uc-bjMUEAeBFYZs {
    --margin-right: -30px;
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-2 .n-uc-qSkSo21nxcPC {
    padding: 55px 0px 55px 120px
}

div#n2-ss-2 .n-uc-T2AZJEfuT6Mz-inner {
    padding: 10px 0px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-T2AZJEfuT6Mz {
    max-width: 1790px
}

div#n2-ss-2 .n-uc-kknoEfeq0Frg-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-2 .n-uc-kknoEfeq0Frg-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-2 .n-uc-kknoEfeq0Frg-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-qZ4n6ZHELgY2-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-qZ4n6ZHELgY2 {
    max-width: 815px;
    width: 45%
}

div#n2-ss-2 .n-uc-b04XWJSiSFGm {
    --margin-top: 25px;
    --margin-bottom: 25px
}

div#n2-ss-2 .n-uc-4StzQ4xy4r4R-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-2 .n-uc-4StzQ4xy4r4R-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-2 .n-uc-4StzQ4xy4r4R-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-4StzQ4xy4r4R {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-2 .n-uc-zmX4SOJbZhwY-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-zmX4SOJbZhwY {
    width: auto
}

div#n2-ss-2 .n-uc-btvyzLXDPWkc-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-btvyzLXDPWkc {
    width: auto
}

div#n2-ss-2 .n-uc-1494c5c16b5af-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-1494c5c16b5af {
    width: auto
}

div#n2-ss-2 .n-uc-c0KcQQAAPvc9-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-c0KcQQAAPvc9 {
    width: auto
}

div#n2-ss-2 .n-uc-G7pfbe7vrQBN {
    --margin-bottom: 55px;
    max-width: 530px
}

div#n2-ss-2 .n-uc-QltEArzXAxQj-inner {
    padding: 0px 0px 0px 0px;
    text-align: right;
    --ssselfalign: var(--ss-fe);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-QltEArzXAxQj {
    width: 55%
}

div#n2-ss-2 .n-uc-dG8BdQj119kq {
    --margin-right: -13px
}

div#n2-ss-2 .n-uc-cz6lKum8yYCb {
    --margin-right: -30px;
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-2 .n-uc-fV8Ab1OgfRn8 {
    padding: 55px 0px 55px 120px
}

div#n2-ss-2 .n-uc-QggnNIW3sJx8-inner {
    padding: 10px 0px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-QggnNIW3sJx8 {
    max-width: 1790px
}

div#n2-ss-2 .n-uc-KTI5tXrAZeF6-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-2 .n-uc-KTI5tXrAZeF6-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-2 .n-uc-KTI5tXrAZeF6-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-qQHuMFDdN2xy-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-qQHuMFDdN2xy {
    max-width: 815px;
    width: 45%
}

div#n2-ss-2 .n-uc-wlGWfYf2mmxy {
    --margin-top: 25px;
    --margin-bottom: 25px
}

div#n2-ss-2 .n-uc-TTJLbeKK2JRq-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-2 .n-uc-TTJLbeKK2JRq-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-2 .n-uc-TTJLbeKK2JRq-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-2 .n-uc-TTJLbeKK2JRq {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-2 .n-uc-t4ziRN6jcSp4-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-2 .n-uc-t4ziRN6jcSp4 {
    width: auto
}

div#n2-ss-2 .n-uc-mN3rmNgpiSou-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-mN3rmNgpiSou {
    width: auto
}

div#n2-ss-2 .n-uc-JntMRVeaBRm5-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-2 .n-uc-JntMRVeaBRm5 {
    width: auto
}

div#n2-ss-2 .n-uc-PuWRPIEF71VQ {
    --margin-bottom: 55px;
    max-width: 530px
}

div#n2-ss-2 .n-uc-gX4y2quFgAJh-inner {
    padding: 0px 0px 0px 0px;
    text-align: right;
    --ssselfalign: var(--ss-fe);
    ;
    justify-content: center
}

div#n2-ss-2 .n-uc-gX4y2quFgAJh {
    width: 55%
}

div#n2-ss-2 .n-uc-aEyvCXY13sgF {
    align-self: var(--ss-fe);
}

div#n2-ss-2 .n-uc-xmhK9QqsQkjz {
    --margin-right: -30px;
    max-width: 580px;
    align-self: var(--ss-fe);
}

@media (min-width: 1200px) {
    div#n2-ss-2 [data-hide-desktopportrait="1"] {
        display: none !important;
    }
}

@media (orientation: landscape) and (max-width: 1199px) and (min-width: 901px),
(orientation: portrait) and (max-width: 1199px) and (min-width: 701px) {
    div#n2-ss-2 .n-uc-j0cYZg6uGcf4 {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-2 .n-uc-180f0b0bfd71d-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-2 .n-uc-1ee0db941a48b-inner {
        padding: 0px 20px 0px 0px
    }

    div#n2-ss-2 .n-uc-1ee0db941a48b {
        width: 45%
    }

    div#n2-ss-2 .n-uc-y2FHthx5iaHn {
        --margin-top: 10px;
        --margin-bottom: 0px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-16645f85717a4-inner {
        padding: 0px 0px 10px 0px
    }

    div#n2-ss-2 .n-uc-16645f85717a4-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-16645f85717a4 {
        --margin-bottom: 0px
    }

    div#n2-ss-2 .n-uc-112b657266f9c-inner {
        padding: 6px 6px 6px 6px
    }

    div#n2-ss-2 .n-uc-112b657266f9c {
        width: auto
    }

    div#n2-ss-2 .n-uc-gWs5c1dbN6C2 {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-1d0736cc2c080-inner {
        padding: 6px 6px 6px 6px
    }

    div#n2-ss-2 .n-uc-1d0736cc2c080 {
        width: auto
    }

    div#n2-ss-2 .n-uc-1179e98b735d0 {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-1513b324b914e-inner {
        padding: 6px 6px 6px 6px
    }

    div#n2-ss-2 .n-uc-1513b324b914e {
        width: auto;
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-ItxdfBtEVVue {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-13116e89e3503 {
        width: 55%
    }

    div#n2-ss-2 .n-uc-Ok3T5SBgeWFB {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-2 .n-uc-rBfdTDffvqnh-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-2 .n-uc-bsnfFlqcUfJx-inner {
        padding: 0px 20px 0px 0px
    }

    div#n2-ss-2 .n-uc-bsnfFlqcUfJx {
        max-width: 320px;
        width: 45%
    }

    div#n2-ss-2 .n-uc-m7s1E3AfO0dL {
        --margin-top: 5px;
        --margin-bottom: 0px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-fSGxyF24pEvD-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-GrJWp7pKswRl {
        width: auto
    }

    div#n2-ss-2 .n-uc-ZlemjldGUHqO {
        width: auto
    }

    div#n2-ss-2 .n-uc-FqQuVMiFovxB {
        width: auto
    }

    div#n2-ss-2 .n-uc-rgl2AYrLeJkK {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-zsf1eOPg2nSt {
        width: 55%
    }

    div#n2-ss-2 .n-uc-GbbO2RZir8AQ {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-2 .n-uc-jyailelqbaHZ-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-2 .n-uc-VfCzjEFtVnFr-inner {
        padding: 0px 20px 0px 0px
    }

    div#n2-ss-2 .n-uc-VfCzjEFtVnFr {
        width: 45%
    }

    div#n2-ss-2 .n-uc-rgQ0croiaNLT {
        --margin-top: 10px;
        --margin-bottom: 10px;
        max-width: 295px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-gy7LUfzMtZQO-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-ydZ13TIZUYFB {
        width: auto
    }

    div#n2-ss-2 .n-uc-agoyzovyVjmb {
        width: auto
    }

    div#n2-ss-2 .n-uc-hH4dosJ9ws7d {
        width: auto
    }

    div#n2-ss-2 .n-uc-h9X0QanQBbQv {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-l1QOO8SezRoC {
        width: 55%
    }

    div#n2-ss-2 .n-uc-UW2mroboiqQX {
        max-width: none
    }

    div#n2-ss-2 .n-uc-7tP9yXz4KVxO {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-2 .n-uc-3NmL4hEzjcCz-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-2 .n-uc-StV4lQ5aIBac {
        width: 45%
    }

    div#n2-ss-2 .n-uc-PxXMBdFtOSng {
        --margin-top: 0px;
        --margin-bottom: 10px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-vO0TalFsNiFe-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-ZeLCDCWHufND {
        width: auto
    }

    div#n2-ss-2 .n-uc-lYU6mvgDr5dZ {
        width: auto
    }

    div#n2-ss-2 .n-uc-Z7AAn935Va0z {
        width: auto
    }

    div#n2-ss-2 .n-uc-QYsb92CPxssf {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-uqXrQnsACGRE {
        width: 55%
    }

    div#n2-ss-2 .n-uc-7bA6iyKhz9CW {
        --margin-right: -30px;
        --margin-left: 20px
    }

    div#n2-ss-2 .n-uc-sK26AVQlRq3r {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-2 .n-uc-IR5ajmTi0AQT-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-2 .n-uc-9RFyLxcdKti4 {
        width: 45%
    }

    div#n2-ss-2 .n-uc-7Vc2QJ2jIf13 {
        --margin-top: 0px;
        --margin-bottom: 10px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-JZL2lSfRQMFH-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-1JNSsRXRgn46 {
        width: auto
    }

    div#n2-ss-2 .n-uc-NSsw2R36CjbZ {
        width: auto
    }

    div#n2-ss-2 .n-uc-GKHEFQdUkxij {
        width: auto
    }

    div#n2-ss-2 .n-uc-qVVmuMFObc1g {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-mJ02OzUW2ApF {
        width: 55%
    }

    div#n2-ss-2 .n-uc-uotsumZfjSde {
        --margin-right: -30px;
        --margin-left: 20px
    }

    div#n2-ss-2 .n-uc-eZiWw1JKsHDt {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-2 .n-uc-kdPQdSWtKImW-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-2 .n-uc-6XAj5xvscrNI {
        width: 45%
    }

    div#n2-ss-2 .n-uc-dhGIKlNq3x59 {
        --margin-top: 0px;
        --margin-bottom: 10px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-qItS3sa62zQl-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-Of8pTKm9iEiv {
        width: auto
    }

    div#n2-ss-2 .n-uc-EX7SJkRbeYZv {
        width: auto
    }

    div#n2-ss-2 .n-uc-zcYaoUG4MUKk {
        width: auto
    }

    div#n2-ss-2 .n-uc-JuIlFx7ywvSu {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-A3xhTA1xAVFv {
        width: 55%
    }

    div#n2-ss-2 .n-uc-l03OF6XD1B4C {
        --margin-right: -30px;
        --margin-left: 20px
    }

    div#n2-ss-2 .n-uc-6qb6autTwJJR {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-2 .n-uc-6v1aXCVmKTFc-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-2 .n-uc-G1f22EPGA6hE {
        width: 45%
    }

    div#n2-ss-2 .n-uc-Ckw4cz9W0XgS {
        --margin-top: 0px;
        --margin-bottom: 10px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-nGD6eMoubu44-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-ezy6D4bOvc2y {
        width: auto
    }

    div#n2-ss-2 .n-uc-m9WsIchMC2dq {
        width: auto
    }

    div#n2-ss-2 .n-uc-IQOCM0qsAYJi {
        width: auto
    }

    div#n2-ss-2 .n-uc-hqfS2pjnQHYl {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-aICwTzmU9eD2 {
        width: 55%
    }

    div#n2-ss-2 .n-uc-bjMUEAeBFYZs {
        --margin-right: -30px;
        --margin-left: 20px
    }

    div#n2-ss-2 .n-uc-qSkSo21nxcPC {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-2 .n-uc-kknoEfeq0Frg-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-2 .n-uc-qZ4n6ZHELgY2 {
        width: 45%
    }

    div#n2-ss-2 .n-uc-b04XWJSiSFGm {
        --margin-top: 0px;
        --margin-bottom: 10px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-4StzQ4xy4r4R-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-zmX4SOJbZhwY {
        width: auto
    }

    div#n2-ss-2 .n-uc-btvyzLXDPWkc {
        width: auto
    }

    div#n2-ss-2 .n-uc-1494c5c16b5af {
        width: auto
    }

    div#n2-ss-2 .n-uc-c0KcQQAAPvc9 {
        width: auto
    }

    div#n2-ss-2 .n-uc-G7pfbe7vrQBN {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-QltEArzXAxQj {
        width: 55%
    }

    div#n2-ss-2 .n-uc-cz6lKum8yYCb {
        --margin-right: -30px;
        --margin-left: 20px
    }

    div#n2-ss-2 .n-uc-fV8Ab1OgfRn8 {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-2 .n-uc-KTI5tXrAZeF6-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-2 .n-uc-qQHuMFDdN2xy {
        width: 45%
    }

    div#n2-ss-2 .n-uc-wlGWfYf2mmxy {
        --margin-top: 0px;
        --margin-bottom: 10px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-TTJLbeKK2JRq-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-t4ziRN6jcSp4 {
        width: auto
    }

    div#n2-ss-2 .n-uc-mN3rmNgpiSou {
        width: auto
    }

    div#n2-ss-2 .n-uc-JntMRVeaBRm5 {
        width: auto
    }

    div#n2-ss-2 .n-uc-PuWRPIEF71VQ {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-gX4y2quFgAJh {
        width: 55%
    }

    div#n2-ss-2 .n-uc-xmhK9QqsQkjz {
        --margin-right: -30px;
        --margin-left: 20px
    }

    div#n2-ss-2 [data-hide-tabletportrait="1"] {
        display: none !important;
    }
}

@media (orientation: landscape) and (max-width: 900px),
(orientation: portrait) and (max-width: 700px) {
    div#n2-ss-2 .n-uc-j0cYZg6uGcf4 {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-2 .n-uc-19001ef738de1-inner {
        padding: 0px 0px 0px 0px;
        text-align: center;
        --ssselfalign: center;
        ;
        justify-content: flex-start
    }

    div#n2-ss-2 .n-uc-180f0b0bfd71d-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-180f0b0bfd71d-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-2 .n-uc-1ee0db941a48b {
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-y2FHthx5iaHn {
        --margin-top: 15px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-2 .n-uc-16645f85717a4-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-112b657266f9c {
        width: auto
    }

    div#n2-ss-2 .n-uc-gWs5c1dbN6C2 {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-1d0736cc2c080 {
        width: auto
    }

    div#n2-ss-2 .n-uc-1179e98b735d0 {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-1513b324b914e {
        width: auto
    }

    div#n2-ss-2 .n-uc-kKfWK7omwtyG {
        --ssfont-scale: 0.8
    }

    div#n2-ss-2 .n-uc-ItxdfBtEVVue {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-2 .n-uc-13116e89e3503 {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-vmTRzG9kshx1 {
        --margin-right: 0px;
        max-width: 670px
    }

    div#n2-ss-2 .n-uc-Ok3T5SBgeWFB {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-2 .n-uc-JOcXqkaifthT-inner {
        padding: 0px 0px 0px 0px;
        text-align: center;
        --ssselfalign: center;
        ;
        justify-content: flex-start
    }

    div#n2-ss-2 .n-uc-rBfdTDffvqnh-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-rBfdTDffvqnh-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-2 .n-uc-bsnfFlqcUfJx {
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-CGsr30tNmoHx {
        --margin-top: 10px;
        --margin-left: -7px
    }

    div#n2-ss-2 .n-uc-m7s1E3AfO0dL {
        --margin-top: 15px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-2 .n-uc-fSGxyF24pEvD-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-GrJWp7pKswRl {
        width: auto
    }

    div#n2-ss-2 .n-uc-ZlemjldGUHqO {
        width: auto
    }

    div#n2-ss-2 .n-uc-FqQuVMiFovxB {
        width: auto
    }

    div#n2-ss-2 .n-uc-rgl2AYrLeJkK {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-2 .n-uc-zsf1eOPg2nSt {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-LWDj2oEtib4R {
        --margin-right: 0px;
        max-width: 570px
    }

    div#n2-ss-2 .n-uc-GbbO2RZir8AQ {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-2 .n-uc-Q0DW13cDY2j0-inner {
        padding: 0px 0px 20px 0px;
        text-align: center;
        --ssselfalign: center;
        ;
        justify-content: flex-start
    }

    div#n2-ss-2 .n-uc-jyailelqbaHZ-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-jyailelqbaHZ-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-2 .n-uc-VfCzjEFtVnFr {
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-rgQ0croiaNLT {
        --margin-top: 25px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-2 .n-uc-gy7LUfzMtZQO-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-ydZ13TIZUYFB {
        width: auto
    }

    div#n2-ss-2 .n-uc-agoyzovyVjmb {
        width: auto
    }

    div#n2-ss-2 .n-uc-hH4dosJ9ws7d {
        width: auto
    }

    div#n2-ss-2 .n-uc-h9X0QanQBbQv {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-2 .n-uc-l1QOO8SezRoC {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-UW2mroboiqQX {
        --margin-right: 0px;
        max-width: 570px
    }

    div#n2-ss-2 .n-uc-7tP9yXz4KVxO {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-2 .n-uc-NQQxcPf3OPzD-inner {
        padding: 0px 0px 20px 0px;
        text-align: center;
        --ssselfalign: center;
        ;
        justify-content: flex-start
    }

    div#n2-ss-2 .n-uc-3NmL4hEzjcCz-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-3NmL4hEzjcCz-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-2 .n-uc-StV4lQ5aIBac {
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-PxXMBdFtOSng {
        --margin-top: 25px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-2 .n-uc-vO0TalFsNiFe-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-ZeLCDCWHufND {
        width: auto
    }

    div#n2-ss-2 .n-uc-lYU6mvgDr5dZ {
        width: auto
    }

    div#n2-ss-2 .n-uc-Z7AAn935Va0z {
        width: auto
    }

    div#n2-ss-2 .n-uc-QYsb92CPxssf {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-2 .n-uc-uqXrQnsACGRE {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-7bA6iyKhz9CW {
        --margin-right: 0px;
        max-width: 570px
    }

    div#n2-ss-2 .n-uc-sK26AVQlRq3r {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-2 .n-uc-w9IJX7clSENP-inner {
        padding: 0px 0px 20px 0px;
        text-align: center;
        --ssselfalign: center;
        ;
        justify-content: flex-start
    }

    div#n2-ss-2 .n-uc-IR5ajmTi0AQT-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-IR5ajmTi0AQT-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-2 .n-uc-9RFyLxcdKti4 {
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-5t24IxUOvlVH {
        --margin-top: 10px
    }

    div#n2-ss-2 .n-uc-7Vc2QJ2jIf13 {
        --margin-top: 25px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-2 .n-uc-JZL2lSfRQMFH-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-1JNSsRXRgn46 {
        width: auto
    }

    div#n2-ss-2 .n-uc-NSsw2R36CjbZ {
        width: auto
    }

    div#n2-ss-2 .n-uc-GKHEFQdUkxij {
        width: auto
    }

    div#n2-ss-2 .n-uc-qVVmuMFObc1g {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-2 .n-uc-mJ02OzUW2ApF {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-uotsumZfjSde {
        --margin-right: 0px;
        max-width: 570px
    }

    div#n2-ss-2 .n-uc-eZiWw1JKsHDt {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-2 .n-uc-07amfQLdDJX0-inner {
        padding: 0px 0px 20px 0px;
        text-align: center;
        --ssselfalign: center;
        ;
        justify-content: flex-start
    }

    div#n2-ss-2 .n-uc-kdPQdSWtKImW-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-kdPQdSWtKImW-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-2 .n-uc-6XAj5xvscrNI {
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-mPuYUqFHKL2M {
        --margin-top: 10px
    }

    div#n2-ss-2 .n-uc-dhGIKlNq3x59 {
        --margin-top: 25px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-2 .n-uc-qItS3sa62zQl-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-Of8pTKm9iEiv {
        width: auto
    }

    div#n2-ss-2 .n-uc-EX7SJkRbeYZv {
        width: auto
    }

    div#n2-ss-2 .n-uc-zcYaoUG4MUKk {
        width: auto
    }

    div#n2-ss-2 .n-uc-JuIlFx7ywvSu {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-2 .n-uc-A3xhTA1xAVFv {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-l03OF6XD1B4C {
        --margin-right: 0px;
        max-width: 570px
    }

    div#n2-ss-2 .n-uc-6qb6autTwJJR {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-2 .n-uc-YUKPzzvAfa9N-inner {
        padding: 0px 0px 20px 0px;
        text-align: center;
        --ssselfalign: center;
        ;
        justify-content: flex-start
    }

    div#n2-ss-2 .n-uc-6v1aXCVmKTFc-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-6v1aXCVmKTFc-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-2 .n-uc-G1f22EPGA6hE {
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-kgBbelZOVMhd {
        max-width: 160px
    }

    div#n2-ss-2 .n-uc-7uvmtwEaaUPH {
        --margin-top: 10px
    }

    div#n2-ss-2 .n-uc-Ckw4cz9W0XgS {
        --margin-top: 25px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-2 .n-uc-nGD6eMoubu44-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-ezy6D4bOvc2y {
        width: auto
    }

    div#n2-ss-2 .n-uc-m9WsIchMC2dq {
        width: auto
    }

    div#n2-ss-2 .n-uc-IQOCM0qsAYJi {
        width: auto
    }

    div#n2-ss-2 .n-uc-hqfS2pjnQHYl {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-2 .n-uc-aICwTzmU9eD2 {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-bjMUEAeBFYZs {
        --margin-right: 0px;
        max-width: 570px
    }

    div#n2-ss-2 .n-uc-qSkSo21nxcPC {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-2 .n-uc-T2AZJEfuT6Mz-inner {
        padding: 0px 0px 20px 0px;
        text-align: center;
        --ssselfalign: center;
        ;
        justify-content: flex-start
    }

    div#n2-ss-2 .n-uc-kknoEfeq0Frg-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-kknoEfeq0Frg-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-2 .n-uc-qZ4n6ZHELgY2 {
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-OCmMuxZT5NXh {
        --margin-top: 10px
    }

    div#n2-ss-2 .n-uc-b04XWJSiSFGm {
        --margin-top: 25px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-2 .n-uc-4StzQ4xy4r4R-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-zmX4SOJbZhwY {
        width: auto
    }

    div#n2-ss-2 .n-uc-btvyzLXDPWkc {
        width: auto
    }

    div#n2-ss-2 .n-uc-1494c5c16b5af {
        width: auto
    }

    div#n2-ss-2 .n-uc-c0KcQQAAPvc9 {
        width: auto
    }

    div#n2-ss-2 .n-uc-G7pfbe7vrQBN {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-2 .n-uc-QltEArzXAxQj {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-cz6lKum8yYCb {
        --margin-right: 0px;
        max-width: 570px
    }

    div#n2-ss-2 .n-uc-fV8Ab1OgfRn8 {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-2 .n-uc-QggnNIW3sJx8-inner {
        padding: 0px 0px 20px 0px;
        text-align: center;
        --ssselfalign: center;
        ;
        justify-content: flex-start
    }

    div#n2-ss-2 .n-uc-KTI5tXrAZeF6-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-KTI5tXrAZeF6-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-2 .n-uc-qQHuMFDdN2xy {
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-1q1cIF6oksb9 {
        --margin-top: 10px
    }

    div#n2-ss-2 .n-uc-wlGWfYf2mmxy {
        --margin-top: 25px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-2 .n-uc-TTJLbeKK2JRq-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-2 .n-uc-t4ziRN6jcSp4 {
        width: auto
    }

    div#n2-ss-2 .n-uc-mN3rmNgpiSou {
        width: auto
    }

    div#n2-ss-2 .n-uc-JntMRVeaBRm5 {
        width: auto
    }

    div#n2-ss-2 .n-uc-PuWRPIEF71VQ {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-2 .n-uc-gX4y2quFgAJh {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-2 .n-uc-xmhK9QqsQkjz {
        --margin-right: 0px;
        max-width: 570px
    }

    div#n2-ss-2 [data-hide-mobileportrait="1"] {
        display: none !important;
    }
}

</style><style data-related="n2-ss-8">div#n2-ss-8 .n2-ss-slider-1 {
    display: grid;
    position: relative;
}

div#n2-ss-8 .n2-ss-slider-2 {
    display: grid;
    position: relative;
    overflow: hidden;
    padding: 0px 0px 0px 0px;
    border: 0px solid RGBA(62, 62, 62, 1);
    border-radius: 0px;
    background-clip: padding-box;
    background-repeat: repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: scroll;
    z-index: 1;
}

div#n2-ss-8:not(.n2-ss-loaded) .n2-ss-slider-2 {
    background-image: none !important;
}

div#n2-ss-8 .n2-ss-slider-3 {
    display: grid;
    grid-template-areas: 'cover';
    position: relative;
    overflow: hidden;
    z-index: 10;
}

div#n2-ss-8 .n2-ss-slider-3>* {
    grid-area: cover;
}

div#n2-ss-8 .n2-ss-slide-backgrounds,
div#n2-ss-8 .n2-ss-slider-3>.n2-ss-divider {
    position: relative;
}

div#n2-ss-8 .n2-ss-slide-backgrounds {
    z-index: 10;
}

div#n2-ss-8 .n2-ss-slide-backgrounds>* {
    overflow: hidden;
}

div#n2-ss-8 .n2-ss-slide-background {
    transform: translateX(-100000px);
}

div#n2-ss-8 .n2-ss-slider-4 {
    place-self: center;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: grid;
    grid-template-areas: 'slide';
}

div#n2-ss-8 .n2-ss-slider-4>* {
    grid-area: slide;
}

div#n2-ss-8.n2-ss-full-page--constrain-ratio .n2-ss-slider-4 {
    height: auto;
}

div#n2-ss-8 .n2-ss-slide {
    display: grid;
    place-items: center;
    grid-auto-columns: 100%;
    position: relative;
    z-index: 20;
    -webkit-backface-visibility: hidden;
    transform: translateX(-100000px);
}

div#n2-ss-8 .n2-ss-slide {
    perspective: 1000px;
}

div#n2-ss-8 .n2-ss-slide-active {
    z-index: 21;
}

.n2-ss-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

div#n2-ss-8 .n2-font-7072b39a1ceee533125c8a9d4f7c93b6-hover {
    font-family: 'Poppins';
    color: #000000;
    font-size: 206.25%;
    text-shadow: none;
    line-height: 1.4;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 600;
}

div#n2-ss-8 .n-uc-2KEywe9u4XCE-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-2KEywe9u4XCE-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-fXWPHRi84F7S-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-fXWPHRi84F7S-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n2-font-13eb7485cfbff955aa18f24b43e30e99-hover {
    font-family: 'Roboto', 'Arial';
    color: #ffffff;
    font-size: 93.75%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 400;
}

div#n2-ss-8 .n-uc-LT0xQ5Umnbc9-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-LT0xQ5Umnbc9-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-3hKPM83NVKtd-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-3hKPM83NVKtd-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n2-font-007b6207815e909bb3eb21d6536c78a4-paragraph {
    font-family: 'Poppins';
    color: RGBA(0, 0, 0, 0.8);
    font-size: 112.5%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 400;
}

div#n2-ss-8 .n2-font-007b6207815e909bb3eb21d6536c78a4-paragraph a,
div#n2-ss-8 .n2-font-007b6207815e909bb3eb21d6536c78a4-paragraph a:FOCUS {
    font-family: 'Poppins';
    color: #1890d7;
    font-size: 100%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 400;
}

div#n2-ss-8 .n2-font-007b6207815e909bb3eb21d6536c78a4-paragraph a:HOVER,
div#n2-ss-8 .n2-font-007b6207815e909bb3eb21d6536c78a4-paragraph a:ACTIVE {
    font-family: 'Poppins';
    color: #1890d7;
    font-size: 100%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 400;
}

div#n2-ss-8 .n2-font-4ab2a3259f8b1da8c1108d4d1abf68da-hover {
    font-family: 'Poppins';
    color: #000000;
    font-size: 106.25%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 600;
}

div#n2-ss-8 .n-uc-tMxbSPZu5Oey-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-tMxbSPZu5Oey-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-h4oDsDnjDxDy-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-h4oDsDnjDxDy-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-iYU4sFa5HBkU-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-iYU4sFa5HBkU-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-DeZF0ikLUmY8-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-DeZF0ikLUmY8-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-pmcqsNGPI1dg-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-pmcqsNGPI1dg-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-AHoDQ4jTBEnA-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-AHoDQ4jTBEnA-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-iVAlJs1Jtkda-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-iVAlJs1Jtkda-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-f6MfvScusMdh-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-f6MfvScusMdh-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-P3h4w7KksYcO-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-P3h4w7KksYcO-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-C6AoMXn8y2jY-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-C6AoMXn8y2jY-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-OmHSIciBa4oo-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-OmHSIciBa4oo-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-DaTaQy4iyGkj-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-DaTaQy4iyGkj-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-lbhYgAUmrAyW-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-lbhYgAUmrAyW-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-npiRBghi9Qfm-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-npiRBghi9Qfm-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-PXZiXAQEfNaU-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-PXZiXAQEfNaU-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-aK177OHjiaeG-inner {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n-uc-aK177OHjiaeG-inner:HOVER {
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: RGBA(255, 255, 255, 1);
}

div#n2-ss-8 .n2-ss-slide-limiter {
    max-width: 1920px;
}

div#n2-ss-8 .n-uc-3oQNgXdIwqph {
    padding: 55px 0px 55px 0px
}

div#n2-ss-8 .n-uc-SsY6HFGnvgJm-inner {
    padding: 10px 10px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-YUURb2Ssdnol-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-8 .n-uc-YUURb2Ssdnol-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-8 .n-uc-YUURb2Ssdnol-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-8 .n-uc-ebpTNjbz3fKI-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-8 .n-uc-ebpTNjbz3fKI {
    max-width: 825px;
    width: 45%
}

div#n2-ss-8 .n-uc-rmEVyCJOUfLu {
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-8 .n-uc-IXufrEIgXRxO-inner {
    padding: 0px 0px 0px 85px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-IXufrEIgXRxO {
    width: 55%
}

div#n2-ss-8 .n-uc-BEsu1ElWqPbo {
    align-self: var(--ss-fs);
}

div#n2-ss-8 .n-uc-WKJr8dUoeW68 {
    --margin-top: 25px;
    --margin-bottom: 25px;
    max-width: 735px
}

div#n2-ss-8 .n-uc-2KEywe9u4XCE-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-8 .n-uc-2KEywe9u4XCE-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-8 .n-uc-2KEywe9u4XCE-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-8 .n-uc-2KEywe9u4XCE {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-8 .n-uc-fXWPHRi84F7S-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-8 .n-uc-fXWPHRi84F7S {
    width: auto
}

div#n2-ss-8 .n-uc-LT0xQ5Umnbc9-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-8 .n-uc-LT0xQ5Umnbc9 {
    width: auto
}

div#n2-ss-8 .n-uc-3hKPM83NVKtd-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-8 .n-uc-3hKPM83NVKtd {
    width: auto
}

div#n2-ss-8 .n-uc-Yh5Ek7KI4wsQ {
    --margin-bottom: 55px;
    max-width: 610px
}

div#n2-ss-8 .n-uc-LpsFGFxTv4aj {
    padding: 55px 0px 55px 0px
}

div#n2-ss-8 .n-uc-bUaEBPP1Frse-inner {
    padding: 10px 10px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-O8ipMTh6eG1F-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-8 .n-uc-O8ipMTh6eG1F-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-8 .n-uc-O8ipMTh6eG1F-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-8 .n-uc-9IikbuXaNO8c-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-8 .n-uc-9IikbuXaNO8c {
    max-width: 865px;
    width: 45%
}

div#n2-ss-8 .n-uc-UID35onYb5Rj {
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-8 .n-uc-sXStYLy9w0iI-inner {
    padding: 0px 0px 0px 80px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-sXStYLy9w0iI {
    max-width: 1110px;
    width: 55%
}

div#n2-ss-8 .n-uc-n6nZj0QZBrIs {
    --margin-left: -7px
}

div#n2-ss-8 .n-uc-DFAU1geZfoYj {
    --margin-top: 25px;
    --margin-bottom: 25px;
    max-width: 755px
}

div#n2-ss-8 .n-uc-tMxbSPZu5Oey-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-8 .n-uc-tMxbSPZu5Oey-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-8 .n-uc-tMxbSPZu5Oey-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-8 .n-uc-tMxbSPZu5Oey {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-8 .n-uc-h4oDsDnjDxDy-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-8 .n-uc-h4oDsDnjDxDy {
    width: auto
}

div#n2-ss-8 .n-uc-iYU4sFa5HBkU-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-8 .n-uc-iYU4sFa5HBkU {
    width: auto
}

div#n2-ss-8 .n-uc-DeZF0ikLUmY8-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-8 .n-uc-DeZF0ikLUmY8 {
    width: auto
}

div#n2-ss-8 .n-uc-p915lTrrx9dB {
    --margin-bottom: 55px;
    max-width: 490px
}

div#n2-ss-8 .n-uc-FGFxXIFMPL6t {
    padding: 55px 0px 55px 0px
}

div#n2-ss-8 .n-uc-v5cz6VD73oiy-inner {
    padding: 10px 10px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-TAZyvIZn0KOg-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-8 .n-uc-TAZyvIZn0KOg-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-8 .n-uc-TAZyvIZn0KOg-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-8 .n-uc-2rYJDyGZJ89B-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-2rYJDyGZJ89B {
    max-width: 800px;
    width: 45%
}

div#n2-ss-8 .n-uc-w0lI6H2aGhKw {
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-8 .n-uc-LRwvXKIbyb7i-inner {
    padding: 0px 0px 0px 80px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-LRwvXKIbyb7i {
    width: 55%
}

div#n2-ss-8 .n-uc-zZ5VsGY21kAT {
    --margin-top: 25px;
    --margin-bottom: 25px;
    max-width: 745px
}

div#n2-ss-8 .n-uc-pmcqsNGPI1dg-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-8 .n-uc-pmcqsNGPI1dg-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-8 .n-uc-pmcqsNGPI1dg-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-8 .n-uc-pmcqsNGPI1dg {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-8 .n-uc-AHoDQ4jTBEnA-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-8 .n-uc-AHoDQ4jTBEnA {
    max-width: 70px;
    width: auto
}

div#n2-ss-8 .n-uc-iVAlJs1Jtkda-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-8 .n-uc-iVAlJs1Jtkda {
    width: auto
}

div#n2-ss-8 .n-uc-f6MfvScusMdh-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-8 .n-uc-f6MfvScusMdh {
    width: auto
}

div#n2-ss-8 .n-uc-ud31sZZAGpnK {
    --margin-bottom: 55px;
    max-width: 490px
}

div#n2-ss-8 .n-uc-2heAEun4XiRb {
    padding: 55px 0px 55px 0px
}

div#n2-ss-8 .n-uc-B39vjllSJJKP-inner {
    padding: 10px 10px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-B39vjllSJJKP {
    max-width: 1790px
}

div#n2-ss-8 .n-uc-xJABsFsxo7vu-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-8 .n-uc-xJABsFsxo7vu-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-8 .n-uc-xJABsFsxo7vu-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-8 .n-uc-AHSgOXP7neqp-inner {
    padding: 0px 0px 0px 0px;
    justify-content: center
}

div#n2-ss-8 .n-uc-AHSgOXP7neqp {
    max-width: 815px;
    width: 45%
}

div#n2-ss-8 .n-uc-GrUS99rXurWL {
    max-width: 580px;
    align-self: var(--ss-fe);
}

div#n2-ss-8 .n-uc-swn57TUSzSPa-inner {
    padding: 0px 0px 0px 80px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-swn57TUSzSPa {
    width: 55%
}

div#n2-ss-8 .n-uc-FXxwFiLUUn9P {
    --margin-top: 25px;
    --margin-bottom: 25px
}

div#n2-ss-8 .n-uc-P3h4w7KksYcO-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-8 .n-uc-P3h4w7KksYcO-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-8 .n-uc-P3h4w7KksYcO-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-8 .n-uc-P3h4w7KksYcO {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-8 .n-uc-C6AoMXn8y2jY-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-8 .n-uc-C6AoMXn8y2jY {
    width: auto
}

div#n2-ss-8 .n-uc-OmHSIciBa4oo-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-8 .n-uc-OmHSIciBa4oo {
    width: auto
}

div#n2-ss-8 .n-uc-DaTaQy4iyGkj-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-8 .n-uc-DaTaQy4iyGkj {
    width: auto
}

div#n2-ss-8 .n-uc-trbKoc24rnUw {
    --margin-bottom: 55px;
    max-width: 530px
}

div#n2-ss-8 .n-uc-UJtloRdRnrfL {
    padding: 55px 0px 55px 0px
}

div#n2-ss-8 .n-uc-ponpPgJma0aD-inner {
    padding: 10px 10px 10px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-ponpPgJma0aD {
    max-width: 1790px;
    align-self: var(--ss-fs);
}

div#n2-ss-8 .n-uc-oUgkAk91eZah-inner {
    padding: 0px 0px 0px 0px
}

div#n2-ss-8 .n-uc-oUgkAk91eZah-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: nowrap;
}

div#n2-ss-8 .n-uc-oUgkAk91eZah-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-8 .n-uc-y2UVhBYvN7q2-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-y2UVhBYvN7q2 {
    max-width: 840px;
    width: 45%
}

div#n2-ss-8 .n-uc-GqrmSnKi0USc {
    max-width: 595px;
    align-self: var(--ss-fe);
}

div#n2-ss-8 .n-uc-qiLAN9jh23Cp-inner {
    padding: 0px 0px 0px 80px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
    ;
    justify-content: center
}

div#n2-ss-8 .n-uc-qiLAN9jh23Cp {
    width: 55%
}

div#n2-ss-8 .n-uc-DJuC2THQTbpI {
    --margin-top: 25px;
    --margin-bottom: 25px
}

div#n2-ss-8 .n-uc-lbhYgAUmrAyW-inner {
    padding: 0px 0px 0px 0px;
    text-align: left;
    --ssselfalign: var(--ss-fs);
}

div#n2-ss-8 .n-uc-lbhYgAUmrAyW-inner>.n2-ss-layer-row-inner {
    width: calc(100% + 1px);
    margin: -0px;
    flex-wrap: wrap;
}

div#n2-ss-8 .n-uc-lbhYgAUmrAyW-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
    margin: 0px
}

div#n2-ss-8 .n-uc-lbhYgAUmrAyW {
    --margin-bottom: 20px;
    max-width: 520px;
    align-self: var(--ss-fs);
}

div#n2-ss-8 .n-uc-npiRBghi9Qfm-inner {
    padding: 10px 10px 10px 0px;
    justify-content: center
}

div#n2-ss-8 .n-uc-npiRBghi9Qfm {
    width: auto
}

div#n2-ss-8 .n-uc-PXZiXAQEfNaU-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-8 .n-uc-PXZiXAQEfNaU {
    width: auto
}

div#n2-ss-8 .n-uc-aK177OHjiaeG-inner {
    padding: 10px 10px 10px 10px;
    justify-content: center
}

div#n2-ss-8 .n-uc-aK177OHjiaeG {
    width: auto
}

div#n2-ss-8 .n-uc-jRTvFojrJ3KP {
    --margin-bottom: 55px;
    max-width: 530px
}

@media (min-width: 1200px) {
    div#n2-ss-8 [data-hide-desktopportrait="1"] {
        display: none !important;
    }
}

@media (orientation: landscape) and (max-width: 1199px) and (min-width: 901px),
(orientation: portrait) and (max-width: 1199px) and (min-width: 701px) {
    div#n2-ss-8 .n-uc-3oQNgXdIwqph {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-8 .n-uc-YUURb2Ssdnol-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-8 .n-uc-ebpTNjbz3fKI-inner {
        padding: 0px 20px 0px 0px
    }

    div#n2-ss-8 .n-uc-ebpTNjbz3fKI {
        width: 45%
    }

    div#n2-ss-8 .n-uc-IXufrEIgXRxO {
        width: 55%
    }

    div#n2-ss-8 .n-uc-WKJr8dUoeW68 {
        --margin-top: 10px;
        --margin-bottom: 0px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-8 .n-uc-2KEywe9u4XCE-inner {
        padding: 0px 0px 10px 0px
    }

    div#n2-ss-8 .n-uc-2KEywe9u4XCE-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-2KEywe9u4XCE {
        --margin-bottom: 0px
    }

    div#n2-ss-8 .n-uc-fXWPHRi84F7S {
        width: auto
    }

    div#n2-ss-8 .n-uc-LT0xQ5Umnbc9 {
        width: auto
    }

    div#n2-ss-8 .n-uc-3hKPM83NVKtd {
        width: auto
    }

    div#n2-ss-8 .n-uc-Yh5Ek7KI4wsQ {
        --ssfont-scale: 0.8
    }

    div#n2-ss-8 .n-uc-LpsFGFxTv4aj {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-8 .n-uc-O8ipMTh6eG1F-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-8 .n-uc-9IikbuXaNO8c-inner {
        padding: 0px 20px 0px 0px
    }

    div#n2-ss-8 .n-uc-9IikbuXaNO8c {
        max-width: 320px;
        width: 45%
    }

    div#n2-ss-8 .n-uc-sXStYLy9w0iI {
        width: 55%
    }

    div#n2-ss-8 .n-uc-DFAU1geZfoYj {
        --margin-top: 5px;
        --margin-bottom: 0px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-8 .n-uc-tMxbSPZu5Oey-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-h4oDsDnjDxDy {
        width: auto
    }

    div#n2-ss-8 .n-uc-iYU4sFa5HBkU {
        width: auto
    }

    div#n2-ss-8 .n-uc-DeZF0ikLUmY8 {
        width: auto
    }

    div#n2-ss-8 .n-uc-p915lTrrx9dB {
        --ssfont-scale: 0.8
    }

    div#n2-ss-8 .n-uc-FGFxXIFMPL6t {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-8 .n-uc-TAZyvIZn0KOg-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-8 .n-uc-2rYJDyGZJ89B-inner {
        padding: 0px 20px 0px 0px
    }

    div#n2-ss-8 .n-uc-2rYJDyGZJ89B {
        width: 45%
    }

    div#n2-ss-8 .n-uc-w0lI6H2aGhKw {
        max-width: none
    }

    div#n2-ss-8 .n-uc-LRwvXKIbyb7i {
        width: 55%
    }

    div#n2-ss-8 .n-uc-zZ5VsGY21kAT {
        --margin-top: 10px;
        --margin-bottom: 10px;
        max-width: 295px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-8 .n-uc-pmcqsNGPI1dg-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-AHoDQ4jTBEnA {
        width: auto
    }

    div#n2-ss-8 .n-uc-iVAlJs1Jtkda {
        width: auto
    }

    div#n2-ss-8 .n-uc-f6MfvScusMdh {
        width: auto
    }

    div#n2-ss-8 .n-uc-ud31sZZAGpnK {
        --ssfont-scale: 0.8
    }

    div#n2-ss-8 .n-uc-2heAEun4XiRb {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-8 .n-uc-xJABsFsxo7vu-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-8 .n-uc-AHSgOXP7neqp {
        width: 45%
    }

    div#n2-ss-8 .n-uc-GrUS99rXurWL {
        --margin-right: -30px;
        --margin-left: 20px
    }

    div#n2-ss-8 .n-uc-swn57TUSzSPa {
        width: 55%
    }

    div#n2-ss-8 .n-uc-FXxwFiLUUn9P {
        --margin-top: 0px;
        --margin-bottom: 10px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-8 .n-uc-P3h4w7KksYcO-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-C6AoMXn8y2jY {
        width: auto
    }

    div#n2-ss-8 .n-uc-OmHSIciBa4oo {
        width: auto
    }

    div#n2-ss-8 .n-uc-DaTaQy4iyGkj {
        width: auto
    }

    div#n2-ss-8 .n-uc-trbKoc24rnUw {
        --ssfont-scale: 0.8
    }

    div#n2-ss-8 .n-uc-UJtloRdRnrfL {
        padding: 0px 0px 0px 20px
    }

    div#n2-ss-8 .n-uc-oUgkAk91eZah-inner>.n2-ss-layer-row-inner {
        flex-wrap: nowrap;
    }

    div#n2-ss-8 .n-uc-y2UVhBYvN7q2 {
        width: 45%
    }

    div#n2-ss-8 .n-uc-GqrmSnKi0USc {
        --margin-right: -30px;
        --margin-left: 20px
    }

    div#n2-ss-8 .n-uc-qiLAN9jh23Cp {
        width: 55%
    }

    div#n2-ss-8 .n-uc-DJuC2THQTbpI {
        --margin-top: 0px;
        --margin-bottom: 10px;
        --ssfont-scale: 0.8
    }

    div#n2-ss-8 .n-uc-lbhYgAUmrAyW-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-npiRBghi9Qfm {
        width: auto
    }

    div#n2-ss-8 .n-uc-PXZiXAQEfNaU {
        width: auto
    }

    div#n2-ss-8 .n-uc-aK177OHjiaeG {
        width: auto
    }

    div#n2-ss-8 .n-uc-jRTvFojrJ3KP {
        --ssfont-scale: 0.8
    }

    div#n2-ss-8 [data-hide-tabletportrait="1"] {
        display: none !important;
    }
}

@media (orientation: landscape) and (max-width: 900px),
(orientation: portrait) and (max-width: 700px) {
    div#n2-ss-8 .n-uc-3oQNgXdIwqph {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-8 .n-uc-SsY6HFGnvgJm-inner {
        padding: 0px 0px 0px 0px;
        text-align: center;
        --ssselfalign: center;
    }

    div#n2-ss-8 .n-uc-YUURb2Ssdnol-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-YUURb2Ssdnol-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-8 .n-uc-ebpTNjbz3fKI {
        width: calc(100% - 10px)
    }

    div#n2-ss-8 .n-uc-rmEVyCJOUfLu {
        --margin-top: -10px;
        max-width: 670px
    }

    div#n2-ss-8 .n-uc-IXufrEIgXRxO {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-8 .n-uc-WKJr8dUoeW68 {
        --ssfont-scale: 0.7
    }

    div#n2-ss-8 .n-uc-2KEywe9u4XCE-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-fXWPHRi84F7S-inner {
        text-align: center;
        --ssselfalign: center;
    }

    div#n2-ss-8 .n-uc-fXWPHRi84F7S {
        width: auto
    }

    div#n2-ss-8 .n-uc-LT0xQ5Umnbc9 {
        width: auto
    }

    div#n2-ss-8 .n-uc-3hKPM83NVKtd {
        width: auto
    }

    div#n2-ss-8 .n-uc-Yh5Ek7KI4wsQ {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-8 .n-uc-LpsFGFxTv4aj {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-8 .n-uc-bUaEBPP1Frse-inner {
        padding: 0px 0px 0px 0px;
        text-align: center;
        --ssselfalign: center;
    }

    div#n2-ss-8 .n-uc-O8ipMTh6eG1F-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-O8ipMTh6eG1F-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-8 .n-uc-9IikbuXaNO8c {
        width: calc(100% - 10px)
    }

    div#n2-ss-8 .n-uc-UID35onYb5Rj {
        --margin-top: -20px;
        max-width: 570px
    }

    div#n2-ss-8 .n-uc-sXStYLy9w0iI {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-8 .n-uc-DFAU1geZfoYj {
        --margin-top: 15px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-8 .n-uc-tMxbSPZu5Oey-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-h4oDsDnjDxDy {
        width: auto
    }

    div#n2-ss-8 .n-uc-iYU4sFa5HBkU {
        width: auto
    }

    div#n2-ss-8 .n-uc-DeZF0ikLUmY8 {
        width: auto
    }

    div#n2-ss-8 .n-uc-p915lTrrx9dB {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-8 .n-uc-FGFxXIFMPL6t {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-8 .n-uc-v5cz6VD73oiy-inner {
        padding: 0px 0px 20px 0px;
        text-align: center;
        --ssselfalign: center;
    }

    div#n2-ss-8 .n-uc-TAZyvIZn0KOg-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-TAZyvIZn0KOg-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-8 .n-uc-2rYJDyGZJ89B {
        width: calc(100% - 10px)
    }

    div#n2-ss-8 .n-uc-w0lI6H2aGhKw {
        max-width: 570px
    }

    div#n2-ss-8 .n-uc-LRwvXKIbyb7i {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-8 .n-uc-zZ5VsGY21kAT {
        --margin-top: 25px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-8 .n-uc-pmcqsNGPI1dg-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-AHoDQ4jTBEnA {
        width: auto
    }

    div#n2-ss-8 .n-uc-iVAlJs1Jtkda {
        width: auto
    }

    div#n2-ss-8 .n-uc-f6MfvScusMdh {
        width: auto
    }

    div#n2-ss-8 .n-uc-ud31sZZAGpnK {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-8 .n-uc-2heAEun4XiRb {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-8 .n-uc-B39vjllSJJKP-inner {
        padding: 0px 0px 20px 0px;
        text-align: center;
        --ssselfalign: center;
    }

    div#n2-ss-8 .n-uc-xJABsFsxo7vu-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-xJABsFsxo7vu-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-8 .n-uc-AHSgOXP7neqp {
        width: calc(100% - 10px)
    }

    div#n2-ss-8 .n-uc-GrUS99rXurWL {
        --margin-top: -15px;
        max-width: 570px
    }

    div#n2-ss-8 .n-uc-swn57TUSzSPa {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-8 .n-uc-FXxwFiLUUn9P {
        --margin-top: 25px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-8 .n-uc-P3h4w7KksYcO-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-C6AoMXn8y2jY {
        width: auto
    }

    div#n2-ss-8 .n-uc-OmHSIciBa4oo {
        width: auto
    }

    div#n2-ss-8 .n-uc-DaTaQy4iyGkj {
        width: auto
    }

    div#n2-ss-8 .n-uc-trbKoc24rnUw {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-8 .n-uc-UJtloRdRnrfL {
        padding: 0px 0px 0px 0px
    }

    div#n2-ss-8 .n-uc-ponpPgJma0aD-inner {
        padding: 0px 0px 20px 0px;
        text-align: center;
        --ssselfalign: center;
    }

    div#n2-ss-8 .n-uc-oUgkAk91eZah-inner>.n2-ss-layer-row-inner {
        width: calc(100% + 11px);
        margin: -5px;
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-oUgkAk91eZah-inner>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype="col"] {
        margin: 5px
    }

    div#n2-ss-8 .n-uc-y2UVhBYvN7q2 {
        width: calc(100% - 10px)
    }

    div#n2-ss-8 .n-uc-GqrmSnKi0USc {
        --margin-top: -15px;
        max-width: 570px
    }

    div#n2-ss-8 .n-uc-qiLAN9jh23Cp {
        order: 1;
        width: calc(100% - 10px)
    }

    div#n2-ss-8 .n-uc-DJuC2THQTbpI {
        --margin-top: 25px;
        --margin-bottom: 25px;
        --ssfont-scale: 0.7
    }

    div#n2-ss-8 .n-uc-lbhYgAUmrAyW-inner>.n2-ss-layer-row-inner {
        flex-wrap: wrap;
    }

    div#n2-ss-8 .n-uc-npiRBghi9Qfm {
        width: auto
    }

    div#n2-ss-8 .n-uc-PXZiXAQEfNaU {
        width: auto
    }

    div#n2-ss-8 .n-uc-aK177OHjiaeG {
        width: auto
    }

    div#n2-ss-8 .n-uc-jRTvFojrJ3KP {
        --margin-bottom: 10px;
        --ssfont-scale: 0.6
    }

    div#n2-ss-8 [data-hide-mobileportrait="1"] {
        display: none !important;
    }
}

.lhyhyhjhyjhjhjjhj {

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}

#frhyiu7o8ipo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 20px;
    border: forestgreen solid 2px;
}

#frhyiu7o8ipo img {
    max-width: 100%;
    height: auto;
}

#frhyiu7o8ipo h1 {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    padding: 6px;
}

#frhyiu7o8ipo h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    padding: 6px;
}

#frhyiu7o8ipo h3 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 6px;
}

#frhyiu7o8ipo h4 {
    font-size: 20px;
    text-align: center;
    padding: 6px;
}

#frhyiu7o8ipo h5 {
    font-size: 18px;
    text-align: center;
    padding: 6px;
}

#frhyiu7o8ipo p {
    font-size: 18px;
    padding: 6px;
}

#frhyiu7o8ipo td {
    font-size: 16px;
    padding: 6px;
}