@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box
}

body,
html {
    height: 100%
}

body {
    margin: 0
}

*,
:after,
:before {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: inherit
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin: 0
}

ol,
ul {
    list-style: none;
    padding: 0
}

main {
    display: block
}

a {
    background-color: transparent
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

figure,
form {
    margin: 0
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
    -webkit-text-fill-color: inherit;
    border: 0;
    -webkit-box-shadow: none;
    transition: background-color 5000s ease-in-out 0s
}

.defaultLink {
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: var(--defaultLinkDisplay, inline);
    font-size: 14px;
    font-weight: 500;
    line-height: var(--defaultLinkLineHeight, 1.14);
    padding: 0;
    position: relative;
    text-decoration: none
}

.defaultLink_small {
    font-size: 12px
}

.defaultLink_yellow:before {
    background-color: #fadb14;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform .3s ease;
    width: 100%
}

.defaultLink_yellow:hover:before {
    transform: scaleX(1)
}

.defaultLink_orange:before {
    background-color: #fa8c16;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform .3s ease;
    width: 100%
}

.defaultLink_orange:hover:before {
    transform: scaleX(1)
}

.defaultLink_black {
    color: #222
}

.defaultLink_black:before {
    background-color: #fa8c16;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform .3s ease;
    width: 100%
}

.defaultLink_black:hover:before {
    transform: scaleX(1)
}

.defaultLink_deepBlack {
    color: #000
}

.defaultLink_deepBlack:before {
    background-color: #2f54eb;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform .3s ease;
    width: 100%
}

.defaultLink_deepBlack:hover:before {
    transform: scaleX(1)
}

.defaultLink_blue {
    color: #2f54eb
}

.defaultLink_blue:before {
    background-color: #2f54eb;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform .3s ease;
    width: 100%
}

.defaultLink_blue:hover:before {
    transform: scaleX(1)
}

.defaultLink_darkBlue {
    color: #2548d6
}

.defaultLink_darkBlue:before {
    background-color: #2548d6;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform .3s ease;
    width: 100%
}

.defaultLink_darkBlue:hover:before {
    transform: scaleX(1)
}

.defaultLink_greySimpleHover {
    color: #909090;
    text-decoration: underline;
    transition: color .3s ease
}

.defaultLink_greySimpleHover:hover {
    color: #2f54eb
}

.actionButton {
    --actionButtonColor: #fff;
    --actionButtonBackgroundColor: #0a3161;
    background-color: var(--actionButtonBackgroundColor);
    color: var(--actionButtonColor);
    cursor: pointer;
    display: block;
    font-weight: 700;
    line-height: 1.3;
    padding: 1rem .4rem;
    text-align: center;
    transition: color .35s, background-color .35s
}

.actionButton:focus {
    outline: 0
}

:root {
    font-size: 14px
}

@media (min-width:768px) {
    :root {
        font-size: 15px
    }
}

@media (min-width:992px) {
    :root {
        font-size: 16px
    }
}

.customHeader {
    border-bottom: 1px solid #bbb;
    margin-bottom: -1px;
    padding-top: 1rem
}

.customHeader__advertorial {
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: center
}

.customHeader__wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1020px;
    padding: .5rem 20px
}

.customHeader__logoImage {
    display: block
}

.customHeader__action {
    display: none
}

@media (min-width:576px) {
    .customHeader__action {
        display: initial
    }
}

.customHeader__actionButton {
    font-size: 1.1rem;
    line-height: 2.5;
    padding: 0 1rem
}

@media (min-width:768px) {
    .customHeader__actionButton {
        font-size: 1.3rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }
}

.customHeader__actionButton:hover {
    --actionButtonBackgroundColor: #da291c
}

.customFooter {
    background-color: #2f54eb;
    color: #fff
}

.customFooter__wrapper {
    grid-gap: 8px;
    display: grid;
    grid-template-areas: "footnote""links""copy";
    margin: auto;
    max-width: 1020px;
    padding: 16px 20px;
    place-items: center
}

@media (min-width:576px) {
    .customFooter__wrapper {
        grid-template-areas: "footnote footnote""copy links"
    }
}

.customFooter__footnote {
    font-size: 12px;
    grid-area: footnote;
    line-height: 22px;
    opacity: .7;
    order: -2;
    width: 100%
}

@media (min-width:576px) {
    .customFooter__footnote {
        order: 0
    }
}

.customFooter__footnoteLink {
    color: #fff;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-decoration: underline
}

.customFooter__copyright {
    font-size: 12px;
    grid-area: copy;
    line-height: 22px;
    opacity: .7
}

@media (min-width:576px) {
    .customFooter__copyright {
        justify-self: start
    }
}

.customFooter__links {
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    grid-area: links;
    line-height: 22px;
    order: -1
}

@media (min-width:576px) {
    .customFooter__links {
        justify-self: end;
        order: 0
    }
}

.customFooter__link {
    margin-right: 32px
}

.customFooter__link:last-child {
    margin-right: 0
}

.article {
    font-size: 1.3rem;
    line-height: 1.3
}

.article__wrapper {
    margin: auto;
    max-width: 1020px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 1.5rem
}

.article__wrapper_fullwidth {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0
}

.article__title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 1rem
}

@media (min-width:576px) {
    .article__title {
        font-size: 1.8rem;
        line-height: 1.3
    }
}

@media (min-width:992px) {
    .article__title {
        font-size: 2rem
    }
}

.article__title_small {
    color: #0a3161;
    line-height: 1.1
}

@media (min-width:576px) {
    .article__title_small {
        font-size: 1.65rem;
        margin-top: 1.5rem
    }
}

@media (min-width:992px) {
    .article__title_small {
        font-size: 1.8rem;
        line-height: 1.2
    }
}

.article__subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 1rem
}

@media (min-width:768px) {
    .article__subtitle {
        font-size: 1.6rem;
        line-height: 1.3
    }
}

.article__paragraph {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem
}

.article__link {
    color: #2f54eb;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-decoration: underline
}

.article__inlineMediaImage {
    display: block;
    height: auto;
    margin: auto auto 10px;
    object-fit: cover
}

@media (min-width:768px) {
    .article__inlineMediaImage {
        margin-bottom: 3px
    }
}

.article__inlineMediaImage_fullwidth {
    width: 100%
}

.article__inlineMediaImage_aspectRatio1 {
    aspect-ratio: 1/.666
}

.article__inlineMediaImage_aspectRatio2 {
    aspect-ratio: 1/.696
}

.article__inlineMediaImage_aspectRatio3 {
    aspect-ratio: 1/.517
}

.article__orderedList {
    display: grid;
    gap: .75rem;
    line-height: 1.5;
    margin-bottom: 15px
}

.article__smallBreak {
    border: 0;
    height: 1rem;
    margin: 0
}

.article__break {
    border: 0;
    height: 2rem;
    margin: 0
}

.article__metaData {
    align-items: center;
    display: flex;
    margin-bottom: 1rem
}

.article__metaTitle {
    font-size: 1rem;
    font-weight: 700
}

.article__metaStatus {
    display: inline-block;
    font-size: .9rem
}

.article__metaMediaContainer {
    height: 40px;
    margin-right: 10px;
    min-width: 40px;
    width: 40px
}

.article__materialWrapper {
    border-radius: 1rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1);
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
    max-width: 50rem;
    padding: 1.5rem
}

.article__materialTitle {
    font-size: 1.4375rem;
    font-weight: 500;
    line-height: 1.39;
    margin-bottom: 1.5rem;
    text-align: center
}

.article__materialList {
    display: grid;
    gap: 1rem
}

@media (min-width:576px) {
    .article__materialList {
        grid-template-columns: repeat(2, 1fr);
        margin-left: auto;
        margin-right: auto;
        width: 25rem
    }
}

@media (min-width:768px) {
    .article__materialList {
        grid-template-columns: repeat(4, 1fr);
        width: 45rem
    }
}

.article__materialLink {
    align-items: center;
    border-radius: .57rem;
    box-shadow: inset 0 0 0 2px #f5f6fe;
    color: #222;
    display: flex;
    font-size: 14px;
    height: 100%;
    line-height: 20px;
    padding: 1.5rem 1rem
}

@media (min-width:576px) {
    .article__materialLink {
        border-radius: 1rem;
        flex-direction: column;
        text-align: center
    }
}

@media (hover:hover) and (pointer:fine) {
    .article__materialLink:hover {
        box-shadow: inset 0 0 0 2px #fa8c16
    }
}

.article__materialLinkIcon {
    flex-shrink: 0;
    height: 40px;
    margin-right: 1rem;
    width: 40px
}

@media (min-width:576px) {
    .article__materialLinkIcon {
        height: 56px;
        margin-bottom: 1rem;
        margin-right: 0;
        width: 56px
    }
}

.article__map {
    padding-bottom: 2rem;
    padding-top: 2rem;
    text-align: center
}

.article__mapMedia {
    display: inline
}

.article__mapImage {
    display: inline-block;
    height: auto;
    width: 80%
}

.article__asideButton {
    --actionButtonBackgroundColor: #da291c;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: .5rem;
    padding: 1.2rem 0;
    text-decoration: underline
}

.l11EvMyiLBNsgRvl3k1W {
    color: #f5222d;
    margin-top: 4px;
    padding-left: 16px
}

.FNzX6Ek7kQO2WFLNEga9 {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.FNzX6Ek7kQO2WFLNEga9 progress[value] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    height: 4px;
    width: inherit
}

.FNzX6Ek7kQO2WFLNEga9 progress[value]::-webkit-progress-bar {
    background-color: #fff
}

.FNzX6Ek7kQO2WFLNEga9 progress[value]::-webkit-progress-value {
    background-color: #52c41a;
    -webkit-transition: width .75s ease;
    transition: width .75s ease
}

.FNzX6Ek7kQO2WFLNEga9 progress[value]::-moz-progress-bar {
    background-color: #52c41a
}

.sQ9_sN77mOawGRXnIGDf {
    background-color: transparent;
    border: none;
    color: #bdbdbd;
    cursor: pointer;
    outline: none;
    padding: 0;
    transition: color .2s
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
    .sQ9_sN77mOawGRXnIGDf:before {
        background-image: url("");
        background-size: 21px 21px;
        content: " ";
        display: block;
        height: 21px;
        width: 21px
    }
}

@media (min-width:1200px) {
    .sQ9_sN77mOawGRXnIGDf {
        margin-right: 16px
    }
}

@media (min-width:1400px) {
    .sQ9_sN77mOawGRXnIGDf {
        margin-right: 0;
        position: absolute;
        right: -56px;
        top: 17px
    }
}

@media not all and (hover:none) {
    .sQ9_sN77mOawGRXnIGDf:hover {
        color: #909090
    }
}

.cHtnVmyWbPoxFAhzPSDU {
    pointer-events: none
}

.rLqCujdS9iConO_zFECZ {
    grid-row-gap: 8px;
    display: grid;
    max-width: 190px
}

@media (min-width:768px) {
    .rLqCujdS9iConO_zFECZ {
        grid-column-gap: 16px;
        grid-auto-rows: min-content;
        grid-template-areas: "cancel return";
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        max-width: none
    }

    .gyBOTvemmFZ1eWdJUy8Z {
        grid-area: cancel
    }

    .lZdp3I1htsvcWXyNFLXG {
        grid-area: return
    }
}

.h_rtLR1aG0JptgYyD8sr {
    left: -187px;
    position: absolute;
    top: 21px
}

@media (min-width:1200px) {
    .h_rtLR1aG0JptgYyD8sr {
        height: 152px;
        left: -284px;
        top: 0
    }
}

.NU6lMRXgkJMDj8pkP85g {
    top: 16px
}

@media (min-width:1200px) {
    .NU6lMRXgkJMDj8pkP85g {
        top: 18px
    }
}

.d41V05DCCRzeyiILtC39 {
    left: -208px
}

@media (min-width:1200px) {
    .d41V05DCCRzeyiILtC39 {
        left: -286px
    }
}

.EpFtGAf2RQsjbaSpMEPr {
    align-items: center;
    animation-duration: 1ms;
    animation-fill-mode: forwards;
    animation-name: xH1kDzQJ_KS2sNXO8O0O;
    animation-timing-function: linear;
    bottom: 0;
    display: flex;
    height: 105px;
    justify-content: center;
    left: 0;
    opacity: 0;
    padding-bottom: 1px;
    padding-right: 5px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0
}

.KbYg8hg0APlgAGDLler8 {
    height: 113px
}

@media (min-width:1200px) {
    .EpFtGAf2RQsjbaSpMEPr {
        height: 126px
    }

    .KbYg8hg0APlgAGDLler8 {
        height: 130px
    }
}

.Ae3Rybz7nmzyzAaIJ4AC {
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    margin: 0
}

@media (min-width:1200px) {
    .Ae3Rybz7nmzyzAaIJ4AC {
        font-size: 16px
    }
}

.ftAE7N4KX1lYo9r7jsCV {
    display: block
}

.ftAE7N4KX1lYo9r7jsCV:nth-child(2) {
    padding-left: 1.2em
}

.ftAE7N4KX1lYo9r7jsCV:nth-child(3),
.hE2YS15lKinv5mzfLdLb:nth-child(2) {
    padding-left: 2.4em
}

.hE2YS15lKinv5mzfLdLb:nth-child(3) {
    padding-left: 4.8em
}

._yhaFFhLL8VCc4mMbDCj {
    display: block;
    height: 127px
}

@media (min-width:1200px) {
    ._yhaFFhLL8VCc4mMbDCj {
        height: 152px
    }
}

.__WrkzgRNXGOmafArPTS {
    margin-left: -1.3em
}

.V5sP6qhayWUsi8fd1YYT {
    padding-left: 1.2em
}

@keyframes xH1kDzQJ_KS2sNXO8O0O {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.W_9uWmkIWaUaIeT4Jg40 {
    position: absolute;
    right: -25px;
    top: 58px;
    width: 185px;
    z-index: 2
}

@media (min-width:1200px) {
    .W_9uWmkIWaUaIeT4Jg40 {
        right: -83px;
        top: 40px;
        width: auto
    }
}

.W_9uWmkIWaUaIeT4Jg40.qVvsJMXMQknS5G8lliS7 {
    display: none
}

@media (min-width:1200px) {
    .W_9uWmkIWaUaIeT4Jg40.qVvsJMXMQknS5G8lliS7 {
        display: block;
        right: -157px;
        top: 11px
    }
}

.zZky3qzX4YXJ6yblErup {
    left: -187px;
    position: absolute;
    top: 21px
}

@media (min-width:1200px) {
    .zZky3qzX4YXJ6yblErup {
        height: 152px;
        left: -284px;
        top: 0
    }
}

.dCrBBbIp5zz8rRN9SpxY {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.dUcST9UVBlbhMyzV6Rw0 {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin: -7.5% 0 0
}

.dUcST9UVBlbhMyzV6Rw0 b {
    font-weight: 600
}

.dUcST9UVBlbhMyzV6Rw0 span:nth-child(2) {
    padding-left: 1.2em
}

.dUcST9UVBlbhMyzV6Rw0 span:nth-child(3) {
    padding-left: 2.4em
}

.BljFXqPygPX030B_v7Qs {
    height: 127px
}

@media (min-width:1200px) {
    .BljFXqPygPX030B_v7Qs {
        height: 152px
    }
}

.rnv5WgfKhW9OVNxrLR9v {
    height: 127px
}

@media (min-width:1200px) {
    .rnv5WgfKhW9OVNxrLR9v {
        height: 152px
    }
}

.AP2MkG9n5RFAW5sntijJ {
    height: 408px;
    position: relative;
    width: 192px;
    z-index: 2
}

@media (min-width:1200px) {
    .AP2MkG9n5RFAW5sntijJ {
        height: 100%;
        width: auto
    }
}

.j5k54As4BeOwlZti5k2b {
    display: none
}

@media (min-width:1200px) {
    .j5k54As4BeOwlZti5k2b {
        display: initial;
        position: absolute;
        right: -148px;
        top: 12px
    }
}

.xcnaGZ9rGCcVLELvjuSP {
    height: 630px;
    width: auto;
    z-index: 2
}

.BGqh5fmo1j8fpsyerLXA {
    display: none;
    position: absolute
}

@media (min-width:1200px) {
    .BGqh5fmo1j8fpsyerLXA {
        display: block;
        right: -67px;
        top: 10px
    }
}

.plerzeNxqBxWTpqFR7Zf {
    display: block;
    height: 394px;
    position: absolute;
    right: -68px;
    top: 58px;
    width: 205px
}

@media (min-width:1200px) {
    .plerzeNxqBxWTpqFR7Zf {
        display: none
    }
}

.BxuzWn03jeDLzG6LcfWg {
    height: 127px;
    left: -236px;
    position: absolute;
    top: 16px
}

@media (min-width:1200px) {
    .BxuzWn03jeDLzG6LcfWg {
        display: none
    }
}

.jQ34l0CODHw1oSmibgQE {
    display: none
}

@media (min-width:1200px) {
    .jQ34l0CODHw1oSmibgQE {
        display: block;
        height: 152px;
        left: -285px;
        position: absolute;
        top: 18px
    }
}

.gY91Jz2K0OsshT1x3FB1 {
    height: 408px;
    position: relative;
    width: 192px
}

@media (min-width:1200px) {
    .gY91Jz2K0OsshT1x3FB1 {
        height: 590px;
        width: auto
    }
}

.d4N1ho4k5O15yeZUEgFa {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    margin: 158px auto 0;
    max-width: 800px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 2
}

@media (min-width:1200px) {
    .d4N1ho4k5O15yeZUEgFa {
        background: hsla(0, 0%, 100%, .97);
        margin: 192px auto 0
    }
}

.kjd3YVOXMXR7VbuU5hDL {
    padding-bottom: 33px
}

@media (max-width:767.98px) {
    .kjd3YVOXMXR7VbuU5hDL {
        padding-bottom: 64px
    }
}

._7AGjxjgCOUSHSzFXuzZ {
    max-width: 1169px !important;
    overflow: inherit;
    padding: 91px 16px 24px
}

@media (min-width:768px) {
    ._7AGjxjgCOUSHSzFXuzZ {
        padding: 115px 64px 46px
    }
}

.cZXqzM2V54kD9TMo1uKE {
    --btnFontWeight: 500;
    --btnFontSize: 16px;
    --btnLineHeight: 1.5;
    --btnTextColor: #222;
    --btnPaddingHorizontal: 24px;
    --btnPaddingVertical: 16px;
    --btnBorderWidth: 1px;
    --btnBorderColor: transparent;
    --btnOutlineWidth: 4px;
    --btnOutlineColor: transparent;
    --btnRadius: 4px;
    --btnAnimationTime: 0.2s;
    --btnBackgroundColor: #e9e9e9;
    --btnIconSize: 20px;
    background-color: var(--btnBackgroundColor);
    border: 0;
    border-radius: var(--btnRadius);
    box-shadow: 0 0 0 var(--btnBorderWidth) var(--btnBorderColor) inset;
    color: var(--btnTextColor);
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: var(--btnFontSize);
    font-weight: var(--btnFontWeight);
    line-height: var(--btnLineHeight);
    margin: 0;
    outline: var(--btnOutlineWidth) solid var(--btnOutlineColor);
    outline-offset: 0;
    padding: var(--btnPaddingVertical) var(--btnPaddingHorizontal);
    text-align: center;
    transition: color var(--btnAnimationTime), outline-color var(--btnAnimationTime), background-color var(--btnAnimationTime), box-shadow var(--btnAnimationTime)
}

.ymhtxz6mdumnPA2x4EuE {
    --btnFontSize: 14px;
    --btnLineHeight: 1.43;
    --btnPaddingHorizontal: 16px;
    --btnPaddingVertical: 8px
}

.PDzm39t3Cl16kROJNnW7 {
    --btnFontSize: 16px;
    --btnLineHeight: 1.5;
    --btnPaddingHorizontal: 20px;
    --btnPaddingVertical: 8px
}

.ARFrYhUnYyXeH7XALeMO {
    --btnFontSize: 16px;
    --btnLineHeight: 1.5;
    --btnPaddingHorizontal: 24px;
    --btnPaddingVertical: 16px
}

.AoHs1exdBbmtMkJXStH4 {
    --btnTextColor: #fff;
    --btnBorderWidth: 1px;
    --btnBorderColor: transparent;
    --btnOutlineColor: transparent;
    --btnBackgroundColor: #fa8c16
}

@media not all and (hover:none) {
    .AoHs1exdBbmtMkJXStH4:hover {
        --btnBorderWidth: 2px;
        --btnBackgroundColor: #f16e00
    }
}

.AoHs1exdBbmtMkJXStH4:focus-visible,
.AoHs1exdBbmtMkJXStH4[data-state=focus] {
    --btnBorderWidth: 2px;
    --btnOutlineColor: #feddb9;
    --btnBackgroundColor: #f16e00
}

.AoHs1exdBbmtMkJXStH4:active,
.AoHs1exdBbmtMkJXStH4[data-state=active] {
    --btnBorderWidth: 2px;
    --btnBackgroundColor: #e16803
}

.AoHs1exdBbmtMkJXStH4:disabled,
.AoHs1exdBbmtMkJXStH4[data-state=disabled],
.AoHs1exdBbmtMkJXStH4[disabled] {
    --btnBackgroundColor: #fcc58a
}

.ZfVDEwSQP0c8KyoOMzhT {
    --btnTextColor: #2f54eb;
    --btnBorderWidth: 1px;
    --btnBorderColor: #c1ccf9;
    --btnOutlineColor: transparent;
    --btnBackgroundColor: #fff
}

@media not all and (hover:none) {
    .ZfVDEwSQP0c8KyoOMzhT:hover {
        --btnBorderWidth: 2px;
        --btnBorderColor: #6d87f1
    }
}

.ZfVDEwSQP0c8KyoOMzhT:focus-visible,
.ZfVDEwSQP0c8KyoOMzhT[data-state=focus] {
    --btnBorderWidth: 2px;
    --btnBorderColor: #6d87f1;
    --btnOutlineColor: #d5ddfb
}

.ZfVDEwSQP0c8KyoOMzhT:active,
.ZfVDEwSQP0c8KyoOMzhT[data-state=active] {
    --btnBorderWidth: 2px;
    --btnBorderColor: #2f54eb
}

.ZfVDEwSQP0c8KyoOMzhT:disabled,
.ZfVDEwSQP0c8KyoOMzhT[data-state=disabled],
.ZfVDEwSQP0c8KyoOMzhT[disabled] {
    --btnTextColor: #6d87f1;
    --btnBorderColor: #e9e9e9
}

.t4Z3cct7Vlz9ewVvUqvz {
    --btnTextColor: #2f54eb;
    --btnBorderWidth: 1px;
    --btnBorderColor: transparent;
    --btnOutlineColor: transparent;
    --btnBackgroundColor: #fff
}

@media not all and (hover:none) {
    .t4Z3cct7Vlz9ewVvUqvz:hover {
        --btnBorderWidth: 2px;
        --btnBackgroundColor: #f5f6fe
    }
}

.t4Z3cct7Vlz9ewVvUqvz:focus-visible,
.t4Z3cct7Vlz9ewVvUqvz[data-state=focus] {
    --btnBorderWidth: 2px;
    --btnBackgroundColor: #f5f6fe
}

.t4Z3cct7Vlz9ewVvUqvz:active,
.t4Z3cct7Vlz9ewVvUqvz[data-state=active] {
    --btnTextColor: #2548d6;
    --btnBorderWidth: 2px;
    --btnBackgroundColor: #c1ccf9
}

.t4Z3cct7Vlz9ewVvUqvz:disabled,
.t4Z3cct7Vlz9ewVvUqvz[data-state=disabled],
.t4Z3cct7Vlz9ewVvUqvz[disabled] {
    --btnTextColor: #c1ccf9
}

.cZXqzM2V54kD9TMo1uKE [disabled],
.cZXqzM2V54kD9TMo1uKE:disabled {
    cursor: not-allowed;
    pointer-events: none
}

.AQkx2pwq5zUh6y3OZoIe {
    align-items: center;
    display: flex;
    justify-content: center;
    pointer-events: none;
    white-space: nowrap
}

.HJu7cb2fIv4oV3ve8SOm {
    display: flex;
    height: var(--btnIconSize);
    justify-content: center;
    width: var(--btnIconSize)
}

.HJu7cb2fIv4oV3ve8SOm svg {
    height: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.wzb8H6WQKaOw7Qi47ISQ {
    opacity: 0;
    position: absolute;
    transition: opacity var(--btnAnimationTime);
    user-select: none
}

[data-state=processing] .wzb8H6WQKaOw7Qi47ISQ {
    opacity: 1
}

[data-state=processing] .HJu7cb2fIv4oV3ve8SOm:not(.wzb8H6WQKaOw7Qi47ISQ) {
    opacity: 0;
    user-select: none
}

.asXMWjMpBswOgkCkT95e {
    opacity: 1;
    transition: opacity var(--btnAnimationTime)
}

[data-state=processing] .asXMWjMpBswOgkCkT95e {
    opacity: 0;
    user-select: none
}

.RyqxB9G4zpAS6JJUCev0 {
    --logoDisplay: flex;
    --logoWidth: 100%;
    --logoHeight: auto
}

.Dp4CGMEqDLUJcaOd6fA0 {
    display: var(--logoDisplay)
}

.OXXHKJZQfVIqJbfg4sjA {
    height: var(--logoHeight);
    width: var(--logoWidth)
}

.RyqxB9G4zpAS6JJUCev0 {
    --logoWidth: 162px;
    --logoHeight: 34px
}

@media (min-width:768px) {
    .RyqxB9G4zpAS6JJUCev0 {
        --logoWidth: 202px;
        --logoHeight: 40px
    }

    .RyqxB9G4zpAS6JJUCev0 .wpNjDZjF8aL5g72TzTGQ {
        display: none
    }
}

.RyqxB9G4zpAS6JJUCev0 .Nqhj7PzkdlYgTTlkZ3TS {
    display: none
}

@media (min-width:768px) {
    .RyqxB9G4zpAS6JJUCev0 .Nqhj7PzkdlYgTTlkZ3TS {
        display: block
    }
}

.sZXBPG8p28hHBCJDdJAd {
    border: none;
    margin: 0
}

.g5n0RB5VSMnoyo4c5wzz>:not([id=root]) {
    display: none
}

:root {
    --wizardSelectBorderWidth: 2px;
    --wizardSelectBorderColor: #fa8c16
}

.QWb89qL6CSRSH4U1BmAQ {
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%
}

.lUcKrHMqSjpheeCVQE0W {
    height: 32px;
    width: 32px
}

@media (min-width:768px) {
    .lUcKrHMqSjpheeCVQE0W {
        height: 56px;
        width: 56px
    }
}

.LBG0AiT85WXMV6zqVu65 {
    flex-shrink: 0;
    height: 40px;
    width: 40px
}

@media (min-width:768px) {
    .LBG0AiT85WXMV6zqVu65 {
        height: 56px;
        width: 56px
    }
}

.KUG9_L5_0hYiLLVaC2JE {
    height: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    visibility: hidden;
    width: 0
}

.KUG9_L5_0hYiLLVaC2JE:checked~.rzFupZ8NWXujFtl7GxdV {
    box-shadow: inset 0 0 0 var(--wizardSelectBorderWidth) var(--wizardSelectBorderColor)
}

@media (hover:hover) and (pointer:fine) {
    .KUG9_L5_0hYiLLVaC2JE:hover~.rzFupZ8NWXujFtl7GxdV {
        box-shadow: inset 0 0 0 var(--wizardSelectBorderWidth) var(--wizardSelectBorderColor)
    }
}

.rzFupZ8NWXujFtl7GxdV {
    border-radius: 8px;
    box-shadow: inset 0 0 0 2px #f5f6fe;
    box-sizing: border-box;
    cursor: pointer;
    height: 100%;
    letter-spacing: -.1px;
    width: 100%
}

@media (min-width:768px) {
    .rzFupZ8NWXujFtl7GxdV {
        border-radius: 16px
    }
}

.zILQ4uEUEZVy6FwDKXuR {
    font-size: 25px;
    line-height: 1.6;
    margin: 0 16px 0 0;
    min-width: 78px
}

@media (min-width:768px) {
    .zILQ4uEUEZVy6FwDKXuR {
        font-size: 35px;
        margin: 0 0 8px;
        max-width: none
    }
}

.hvSvz8DHcqXJo7RCr6Sk {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.33;
    min-height: 18px;
    padding-left: 26px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.hvSvz8DHcqXJo7RCr6Sk:before {
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    top: 0;
    width: 18px
}

.hvSvz8DHcqXJo7RCr6Sk:after {
    border-bottom: 2px solid #fa8c16;
    border-right: 2px solid #fa8c16;
    content: none;
    height: 10px;
    left: 6px;
    position: absolute;
    top: 2px;
    transform: rotate(45deg);
    width: 6px
}

.oOdVFlhG3AsYBjPa_Ufg {
    clip: rect(0 0 0 0);
    border: none;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.oOdVFlhG3AsYBjPa_Ufg:checked+.hvSvz8DHcqXJo7RCr6Sk:after {
    content: ""
}

.t8gMue25j_o6gXASFsPA {
    color: #909090;
    z-index: 2
}

.Gul8f5sxtwbuoxQG2LRw {
    display: block;
    margin-right: 8px
}

.Gul8f5sxtwbuoxQG2LRw path {
    fill: #909090
}

.faVIG4HPqLcMa5Vt66Iw {
    background: #f5f6fe
}

@media (min-width:992px) {
    .faVIG4HPqLcMa5Vt66Iw {
        padding-bottom: 120px !important
    }
}

.ShQl9ff0OZy04Bcv9zwr {
    margin-left: auto;
    margin-right: auto;
    max-width: 250px
}

.ggbK8fRkAe8WOhjJF3OQ {
    max-width: 100%
}

.YXBr8wzxm5CI_Yc_7i8_ {
    width: 250px
}

@media (min-width:576px) {
    .YXBr8wzxm5CI_Yc_7i8_ {
        width: 310px
    }
}

.rNZMTqvIil86s3CS19so {
    margin-top: 9px
}

@media (min-width:992px) {
    .rNZMTqvIil86s3CS19so {
        margin-top: 48px
    }
}

.HF6yRcyfvJ2jrv7YWBDr {
    color: #222;
    font-size: 23px;
    font-weight: 500;
    margin-top: 8px;
    text-align: center
}

@media (max-width:767.98px) {
    .HF6yRcyfvJ2jrv7YWBDr {
        font-size: 16px;
        font-weight: 600;
        margin-top: 5px
    }
}

.m0OpVdQMGaOM5XryB0nO {
    color: #8b8c90;
    font-size: 14px;
    font-weight: 500;
    margin-top: 13px;
    text-align: center
}

@media (max-width:767.98px) {
    .m0OpVdQMGaOM5XryB0nO {
        line-height: 20px;
        margin-top: 7px
    }
}

.AnOrE0tOIQGaTH60niZQ>div {
    cursor: pointer;
    text-decoration: underline
}

.HX7e0U4ZPkYuSDsH1v17 {
    margin-left: auto;
    margin-right: auto;
    max-width: 250px
}

.GL1dC4IrBydlhYxDMCWa {
    max-width: 250px
}

.EszAAY67UynWTvaY2ppw {
    margin: 0 auto;
    width: 250px
}

@media (min-width:768px) {
    .EszAAY67UynWTvaY2ppw {
        width: auto
    }
}

@media (max-width:767.98px) {
    .EszAAY67UynWTvaY2ppw button {
        width: 100%
    }
}

.yIVo0P_ck5eFFTctTJal {
    max-width: 250px;
    width: 100%
}

.VDeJD2t1ZzY4D3niR6g3 {
    min-height: 22px
}

.ep_oPhzCO52xb4KHNhnA {
    margin-right: 8px
}

.rxQGIItER2BAJyVi1BpZ {
    border-top: 1px solid #e9e9e9;
    color: #8b8c90
}

@media (min-width:992px) {
    .rxQGIItER2BAJyVi1BpZ {
        max-width: 688px
    }
}

@media (min-width:768px) {
    .localPartnerStep__name {
        max-width: 327px
    }
}

.h27HVFrHo3feuU6uNI0s {
    font-size: 16px;
    line-height: 1.5
}

.rtTwREtzNqmZB_uZblKa {
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, .15));
    height: 119px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: -66px;
    transform: translateZ(0);
    width: 119px
}

@media (min-width:768px) {
    .rtTwREtzNqmZB_uZblKa {
        height: 183px;
        top: -90px;
        width: 183px
    }
}

.YAJ_2LvadZsPAhfcVSM3 {
    display: grid;
    max-width: 265px;
    row-gap: 8px
}

@media (min-width:768px) {
    .YAJ_2LvadZsPAhfcVSM3 {
        -moz-column-gap: 16px;
        column-gap: 16px;
        grid-template-columns: repeat(2, 1fr);
        max-width: 352px;
        row-gap: 0
    }
}

.YPUufcmz12EtCTr1U0am {
    width: 20px
}

.i9xTQFCLw8OclHmITtRv {
    width: 101px
}

.oPWU1QZp4bHIpGDKsOdA {
    display: grid;
    max-width: 263px;
    row-gap: 8px
}

@media (min-width:768px) {
    .oPWU1QZp4bHIpGDKsOdA {
        grid-gap: 16px;
        grid-template-columns: 1fr 216px 1fr;
        max-width: 584px
    }
}

html {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box
}

body,
html {
    height: 100%
}

body {
    margin: 0
}

*,
:after,
:before {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: inherit
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin: 0
}

ol,
ul {
    list-style: none;
    padding: 0
}

main {
    display: block
}

a {
    background-color: transparent
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

figure,
form {
    margin: 0
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}


[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
    -webkit-text-fill-color: inherit;
    border: 0;
    -webkit-box-shadow: none;
    transition: background-color 5000s ease-in-out 0s
}

body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: Montserrat, serif;
    font-size: 14px;
    line-height: 17px;
    overflow-x: hidden
}

a {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none
}

iframe {
    display: none
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bs-gutter-x, 16px);
    padding-right: var(--bs-gutter-x, 16px);
    width: 100%
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1202px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x)*-.5);
    margin-right: calc(var(--bs-gutter-x)*-.5);
    margin-top: calc(var(--bs-gutter-y)*-1)
}

.row>* {
    box-sizing: border-box;
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    width: 100%
}

.col {
    flex: 1 0 0%
}

.g-1 {
    --bs-gutter-x: 4px
}

.g-1 {
    --bs-gutter-y: 4px
}

@media (min-width:576px) {
    .d-sm-inline {
        display: inline !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .mx-sm-3 {
        margin-left: 12px !important;
        margin-right: 12px !important
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-6 {
        margin-bottom: 24px !important
    }

    .mb-sm-8 {
        margin-bottom: 32px !important
    }

    .mx-sm-n11 {
        margin-left: -44px !important;
        margin-right: -44px !important
    }

    .px-sm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-sm-18 {
        padding-left: 72px !important;
        padding-right: 72px !important
    }

    .py-sm-8 {
        padding-bottom: 32px !important;
        padding-top: 32px !important
    }

    .pb-sm-11 {
        padding-bottom: 44px !important
    }
}

@media (min-width:768px) {
    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: 4px !important
    }

    .mt-md-2 {
        margin-top: 8px !important
    }

    .mt-md-5 {
        margin-top: 20px !important
    }

    .mt-md-6 {
        margin-top: 24px !important
    }

    .mt-md-7 {
        margin-top: 28px !important
    }

    .mt-md-8 {
        margin-top: 32px !important
    }

    .mt-md-10 {
        margin-top: 40px !important
    }

    .mt-md-12 {
        margin-top: 48px !important
    }

    .mt-md-14 {
        margin-top: 56px !important
    }

    .me-md-0 {
        margin-right: 0 !important
    }

    .me-md-4 {
        margin-right: 16px !important
    }

    .me-md-6 {
        margin-right: 24px !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: 4px !important
    }

    .mb-md-2 {
        margin-bottom: 8px !important
    }

    .mb-md-4 {
        margin-bottom: 16px !important
    }

    .mb-md-5 {
        margin-bottom: 20px !important
    }

    .mb-md-6 {
        margin-bottom: 24px !important
    }

    .mb-md-7 {
        margin-bottom: 28px !important
    }

    .mb-md-8 {
        margin-bottom: 32px !important
    }

    .mb-md-12 {
        margin-bottom: 48px !important
    }

    .mb-md-20 {
        margin-bottom: 80px !important
    }

    .ms-md-0 {
        margin-left: 0 !important
    }

    .ms-md-4 {
        margin-left: 16px !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-6 {
        padding: 24px !important
    }

    .px-md-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-md-2 {
        padding-left: 8px !important;
        padding-right: 8px !important
    }

    .px-md-3 {
        padding-left: 12px !important;
        padding-right: 12px !important
    }

    .px-md-4 {
        padding-left: 16px !important;
        padding-right: 16px !important
    }

    .px-md-5 {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    .px-md-6 {
        padding-left: 24px !important;
        padding-right: 24px !important
    }

    .px-md-7 {
        padding-left: 28px !important;
        padding-right: 28px !important
    }

    .px-md-8 {
        padding-left: 32px !important;
        padding-right: 32px !important
    }

    .px-md-10 {
        padding-left: 40px !important;
        padding-right: 40px !important
    }

    .px-md-12 {
        padding-left: 48px !important;
        padding-right: 48px !important
    }

    .py-md-3 {
        padding-bottom: 12px !important;
        padding-top: 12px !important
    }

    .py-md-4 {
        padding-bottom: 16px !important;
        padding-top: 16px !important
    }

    .py-md-6 {
        padding-bottom: 24px !important;
        padding-top: 24px !important
    }

    .py-md-8 {
        padding-bottom: 32px !important;
        padding-top: 32px !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: 4px !important
    }

    .pt-md-12 {
        padding-top: 48px !important
    }

    .pt-md-16 {
        padding-top: 64px !important
    }

    .pe-md-0 {
        padding-right: 0 !important
    }

    .pe-md-8 {
        padding-right: 32px !important
    }

    .pb-md-6 {
        padding-bottom: 24px !important
    }

    .pb-md-16 {
        padding-bottom: 64px !important
    }

    .pb-md-20 {
        padding-bottom: 80px !important
    }
}

@media (min-width:992px) {
    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .order-lg-first {
        order: -1 !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-lg-2 {
        margin-left: 8px !important;
        margin-right: 8px !important
    }

    .mx-lg-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: 4px !important
    }

    .mt-lg-2 {
        margin-top: 8px !important
    }

    .mt-lg-4 {
        margin-top: 16px !important
    }

    .mt-lg-5 {
        margin-top: 20px !important
    }

    .mt-lg-6 {
        margin-top: 24px !important
    }

    .mt-lg-7 {
        margin-top: 28px !important
    }

    .mt-lg-8 {
        margin-top: 32px !important
    }

    .mt-lg-9 {
        margin-top: 36px !important
    }

    .mt-lg-10 {
        margin-top: 40px !important
    }

    .mt-lg-11 {
        margin-top: 44px !important
    }

    .mt-lg-12 {
        margin-top: 48px !important
    }

    .mt-lg-22 {
        margin-top: 88px !important
    }

    .mt-lg-24 {
        margin-top: 96px !important
    }

    .me-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: 4px !important
    }

    .mb-lg-2 {
        margin-bottom: 8px !important
    }

    .mb-lg-3 {
        margin-bottom: 12px !important
    }

    .mb-lg-4 {
        margin-bottom: 16px !important
    }

    .mb-lg-5 {
        margin-bottom: 20px !important
    }

    .mb-lg-6 {
        margin-bottom: 24px !important
    }

    .mb-lg-7 {
        margin-bottom: 28px !important
    }

    .mb-lg-8 {
        margin-bottom: 32px !important
    }

    .mb-lg-9 {
        margin-bottom: 36px !important
    }

    .mb-lg-12 {
        margin-bottom: 48px !important
    }

    .mb-lg-14 {
        margin-bottom: 56px !important
    }

    .mb-lg-24 {
        margin-bottom: 96px !important
    }

    .ms-lg-2 {
        margin-left: 8px !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-4 {
        padding: 16px !important
    }

    .p-lg-6 {
        padding: 24px !important
    }

    .p-lg-8 {
        padding: 32px !important
    }

    .p-lg-10 {
        padding: 40px !important
    }

    .p-lg-11 {
        padding: 44px !important
    }

    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-lg-2 {
        padding-left: 8px !important;
        padding-right: 8px !important
    }

    .px-lg-4 {
        padding-left: 16px !important;
        padding-right: 16px !important
    }

    .px-lg-5 {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    .px-lg-6 {
        padding-left: 24px !important;
        padding-right: 24px !important
    }

    .px-lg-7 {
        padding-left: 28px !important;
        padding-right: 28px !important
    }

    .px-lg-8 {
        padding-left: 32px !important;
        padding-right: 32px !important
    }

    .px-lg-10 {
        padding-left: 40px !important;
        padding-right: 40px !important
    }

    .px-lg-11 {
        padding-left: 44px !important;
        padding-right: 44px !important
    }

    .px-lg-13 {
        padding-left: 52px !important;
        padding-right: 52px !important
    }

    .px-lg-18 {
        padding-left: 72px !important;
        padding-right: 72px !important
    }

    .px-lg-25 {
        padding-left: 100px !important;
        padding-right: 100px !important
    }

    .py-lg-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-lg-3 {
        padding-bottom: 12px !important;
        padding-top: 12px !important
    }

    .py-lg-6 {
        padding-bottom: 24px !important;
        padding-top: 24px !important
    }

    .py-lg-8 {
        padding-bottom: 32px !important;
        padding-top: 32px !important
    }

    .py-lg-12 {
        padding-bottom: 48px !important;
        padding-top: 48px !important
    }

    .py-lg-14 {
        padding-bottom: 56px !important;
        padding-top: 56px !important
    }

    .py-lg-16 {
        padding-bottom: 64px !important;
        padding-top: 64px !important
    }

    .py-lg-17 {
        padding-bottom: 68px !important;
        padding-top: 68px !important
    }

    .pt-lg-3 {
        padding-top: 12px !important
    }

    .pt-lg-4 {
        padding-top: 16px !important
    }

    .pt-lg-10 {
        padding-top: 40px !important
    }

    .pt-lg-12 {
        padding-top: 48px !important
    }

    .pt-lg-16 {
        padding-top: 64px !important
    }

    .pt-lg-17 {
        padding-top: 68px !important
    }

    .pt-lg-20 {
        padding-top: 80px !important
    }

    .pe-lg-0 {
        padding-right: 0 !important
    }

    .pe-lg-7 {
        padding-right: 28px !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: 4px !important
    }

    .pb-lg-2 {
        padding-bottom: 8px !important
    }

    .pb-lg-4 {
        padding-bottom: 16px !important
    }

    .pb-lg-5 {
        padding-bottom: 20px !important
    }

    .pb-lg-6 {
        padding-bottom: 24px !important
    }

    .pb-lg-8 {
        padding-bottom: 32px !important
    }

    .pb-lg-12 {
        padding-bottom: 48px !important
    }

    .pb-lg-20 {
        padding-bottom: 80px !important
    }

    .pb-lg-24 {
        padding-bottom: 96px !important
    }

    .pb-lg-25 {
        padding-bottom: 100px !important
    }

    .ps-lg-8 {
        padding-left: 32px !important
    }
}

@media (min-width:1200px) {
    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-none {
        display: none !important
    }

    .mt-xl-5 {
        margin-top: 20px !important
    }

    .mt-xl-6 {
        margin-top: 24px !important
    }

    .mt-xl-12 {
        margin-top: 48px !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-2 {
        margin-bottom: 8px !important
    }

    .mb-xl-4 {
        margin-bottom: 16px !important
    }

    .mb-xl-6 {
        margin-bottom: 24px !important
    }

    .px-xl-10 {
        padding-left: 40px !important;
        padding-right: 40px !important
    }

    .px-xl-12 {
        padding-left: 48px !important;
        padding-right: 48px !important
    }

    .py-xl-11 {
        padding-bottom: 44px !important;
        padding-top: 44px !important
    }

    .py-xl-12 {
        padding-bottom: 48px !important;
        padding-top: 48px !important
    }

    .pt-xl-6 {
        padding-top: 24px !important
    }

    .pt-xl-9 {
        padding-top: 36px !important
    }

    .pt-xl-12 {
        padding-top: 48px !important
    }

    .pt-xl-20 {
        padding-top: 80px !important
    }

    .pe-xl-2 {
        padding-right: 8px !important
    }

    .pb-xl-1 {
        padding-bottom: 4px !important
    }

    .pb-xl-8 {
        padding-bottom: 32px !important
    }

    .pb-xl-9 {
        padding-bottom: 36px !important
    }

    .pb-xl-11 {
        padding-bottom: 44px !important
    }

    .pb-xl-16 {
        padding-bottom: 64px !important
    }

    .pb-xl-20 {
        padding-bottom: 80px !important
    }

    .pb-xl-24 {
        padding-bottom: 96px !important
    }
}

.overflow-hidden {
    overflow: hidden !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.vh-100 {
    height: 100vh !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-column {
    flex-direction: column !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.gap-2 {
    gap: 8px !important
}

.gap-3 {
    gap: 12px !important
}

.gap-4 {
    gap: 16px !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-center {
    align-items: center !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-center {
    align-self: center !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-last {
    order: 6 !important
}

.m-1 {
    margin: 4px !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important
}

.mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important
}

.my-6 {
    margin-bottom: 24px !important;
    margin-top: 24px !important
}

.my-16 {
    margin-bottom: 64px !important;
    margin-top: 64px !important
}

.mt-1 {
    margin-top: 4px !important
}

.mt-2 {
    margin-top: 8px !important
}

.mt-3 {
    margin-top: 12px !important
}

.mt-4 {
    margin-top: 16px !important
}

.mt-5 {
    margin-top: 20px !important
}

.mt-6 {
    margin-top: 24px !important
}

.mt-7 {
    margin-top: 28px !important
}

.mt-8 {
    margin-top: 32px !important
}

.mt-10 {
    margin-top: 40px !important
}

.mt-11 {
    margin-top: 44px !important
}

.mt-12 {
    margin-top: 48px !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-right: 0 !important
}

.me-1 {
    margin-right: 4px !important
}

.me-2 {
    margin-right: 8px !important
}

.me-3 {
    margin-right: 12px !important
}

.me-4 {
    margin-right: 16px !important
}

.mb-1 {
    margin-bottom: 4px !important
}

.mb-2 {
    margin-bottom: 8px !important
}

.mb-3 {
    margin-bottom: 12px !important
}

.mb-4 {
    margin-bottom: 16px !important
}

.mb-5 {
    margin-bottom: 20px !important
}

.mb-6 {
    margin-bottom: 24px !important
}

.mb-8 {
    margin-bottom: 32px !important
}

.mb-10 {
    margin-bottom: 40px !important
}

.mb-11 {
    margin-bottom: 44px !important
}

.mb-12 {
    margin-bottom: 48px !important
}

.ms-1 {
    margin-left: 4px !important
}

.ms-2 {
    margin-left: 8px !important
}

.ms-3 {
    margin-left: 12px !important
}

.ms-6 {
    margin-left: 24px !important
}

.ms-8 {
    margin-left: 32px !important
}

.ms-auto {
    margin-left: auto !important
}

.mx-n4 {
    margin-left: -16px !important;
    margin-right: -16px !important
}

.mt-n2 {
    margin-top: -8px !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: 4px !important
}

.p-2 {
    padding: 8px !important
}

.p-3 {
    padding: 12px !important
}

.p-4 {
    padding: 16px !important
}

.p-6 {
    padding: 24px !important
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.px-1 {
    padding-left: 4px !important;
    padding-right: 4px !important
}

.px-2 {
    padding-left: 8px !important;
    padding-right: 8px !important
}

.px-3 {
    padding-left: 12px !important;
    padding-right: 12px !important
}

.px-4 {
    padding-left: 16px !important;
    padding-right: 16px !important
}

.px-6 {
    padding-left: 24px !important;
    padding-right: 24px !important
}

.px-7 {
    padding-left: 28px !important;
    padding-right: 28px !important
}

.py-1 {
    padding-bottom: 4px !important;
    padding-top: 4px !important
}

.py-2 {
    padding-bottom: 8px !important;
    padding-top: 8px !important
}

.py-3 {
    padding-bottom: 12px !important;
    padding-top: 12px !important
}

.py-4 {
    padding-bottom: 16px !important;
    padding-top: 16px !important
}

.py-6 {
    padding-bottom: 24px !important;
    padding-top: 24px !important
}

.py-7 {
    padding-bottom: 28px !important;
    padding-top: 28px !important
}

.py-8 {
    padding-bottom: 32px !important;
    padding-top: 32px !important
}

.py-9 {
    padding-bottom: 36px !important;
    padding-top: 36px !important
}

.py-10 {
    padding-bottom: 40px !important;
    padding-top: 40px !important
}

.py-11 {
    padding-bottom: 44px !important;
    padding-top: 44px !important
}

.py-12 {
    padding-bottom: 48px !important;
    padding-top: 48px !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-2 {
    padding-top: 8px !important
}

.pt-3 {
    padding-top: 12px !important
}

.pt-4 {
    padding-top: 16px !important
}

.pt-6 {
    padding-top: 24px !important
}

.pt-11 {
    padding-top: 44px !important
}

.pt-20 {
    padding-top: 80px !important
}

.pe-1 {
    padding-right: 4px !important
}

.pe-4 {
    padding-right: 16px !important
}

.pe-5 {
    padding-right: 20px !important
}

.pe-6 {
    padding-right: 24px !important
}

.pe-8 {
    padding-right: 32px !important
}

.pb-2 {
    padding-bottom: 8px !important
}

.pb-4 {
    padding-bottom: 16px !important
}

.pb-5 {
    padding-bottom: 20px !important
}

.pb-6 {
    padding-bottom: 24px !important
}

.pb-7 {
    padding-bottom: 28px !important
}

.pb-8 {
    padding-bottom: 32px !important
}

.pb-10 {
    padding-bottom: 40px !important
}

.pb-11 {
    padding-bottom: 44px !important
}

.pb-12 {
    padding-bottom: 48px !important
}

.pb-13 {
    padding-bottom: 52px !important
}

.pb-15 {
    padding-bottom: 60px !important
}

.pb-16 {
    padding-bottom: 64px !important
}

.pb-20 {
    padding-bottom: 80px !important
}

.ps-6 {
    padding-left: 24px !important
}

.text-start {
    text-align: left !important
}

.text-end {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-decoration-underline {
    text-decoration: underline !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important
}

.text-white {
    color: #fff !important
}

.text-black-50 {
    color: rgba(0, 0, 0, .5) !important
}

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

.rounded {
    border-radius: .25rem !important
}

.rounded-1 {
    border-radius: .2rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media (min-width:576px) {
    .d-sm-inline {
        display: inline !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .mx-sm-3 {
        margin-left: 12px !important;
        margin-right: 12px !important
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-6 {
        margin-bottom: 24px !important
    }

    .mb-sm-8 {
        margin-bottom: 32px !important
    }

    .mx-sm-n11 {
        margin-left: -44px !important;
        margin-right: -44px !important
    }

    .px-sm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-sm-18 {
        padding-left: 72px !important;
        padding-right: 72px !important
    }

    .py-sm-8 {
        padding-bottom: 32px !important;
        padding-top: 32px !important
    }

    .pb-sm-11 {
        padding-bottom: 44px !important
    }
}

@media (min-width:768px) {
    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .gap-md-4 {
        gap: 16px !important
    }

    .gap-md-6 {
        gap: 24px !important
    }

    .gap-md-8 {
        gap: 32px !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: 4px !important
    }

    .mt-md-2 {
        margin-top: 8px !important
    }

    .mt-md-5 {
        margin-top: 20px !important
    }

    .mt-md-6 {
        margin-top: 24px !important
    }

    .mt-md-7 {
        margin-top: 28px !important
    }

    .mt-md-8 {
        margin-top: 32px !important
    }

    .mt-md-10 {
        margin-top: 40px !important
    }

    .mt-md-12 {
        margin-top: 48px !important
    }

    .mt-md-14 {
        margin-top: 56px !important
    }

    .me-md-0 {
        margin-right: 0 !important
    }

    .me-md-4 {
        margin-right: 16px !important
    }

    .me-md-6 {
        margin-right: 24px !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: 4px !important
    }

    .mb-md-2 {
        margin-bottom: 8px !important
    }

    .mb-md-4 {
        margin-bottom: 16px !important
    }

    .mb-md-5 {
        margin-bottom: 20px !important
    }

    .mb-md-6 {
        margin-bottom: 24px !important
    }

    .mb-md-7 {
        margin-bottom: 28px !important
    }

    .mb-md-8 {
        margin-bottom: 32px !important
    }

    .mb-md-12 {
        margin-bottom: 48px !important
    }

    .mb-md-20 {
        margin-bottom: 80px !important
    }

    .ms-md-0 {
        margin-left: 0 !important
    }

    .ms-md-4 {
        margin-left: 16px !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-6 {
        padding: 24px !important
    }

    .px-md-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-md-2 {
        padding-left: 8px !important;
        padding-right: 8px !important
    }

    .px-md-3 {
        padding-left: 12px !important;
        padding-right: 12px !important
    }

    .px-md-4 {
        padding-left: 16px !important;
        padding-right: 16px !important
    }

    .px-md-5 {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    .px-md-6 {
        padding-left: 24px !important;
        padding-right: 24px !important
    }

    .px-md-7 {
        padding-left: 28px !important;
        padding-right: 28px !important
    }

    .px-md-8 {
        padding-left: 32px !important;
        padding-right: 32px !important
    }

    .px-md-10 {
        padding-left: 40px !important;
        padding-right: 40px !important
    }

    .px-md-12 {
        padding-left: 48px !important;
        padding-right: 48px !important
    }

    .py-md-3 {
        padding-bottom: 12px !important;
        padding-top: 12px !important
    }

    .py-md-4 {
        padding-bottom: 16px !important;
        padding-top: 16px !important
    }

    .py-md-6 {
        padding-bottom: 24px !important;
        padding-top: 24px !important
    }

    .py-md-8 {
        padding-bottom: 32px !important;
        padding-top: 32px !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: 4px !important
    }

    .pt-md-12 {
        padding-top: 48px !important
    }

    .pt-md-16 {
        padding-top: 64px !important
    }

    .pe-md-0 {
        padding-right: 0 !important
    }

    .pe-md-8 {
        padding-right: 32px !important
    }

    .pb-md-6 {
        padding-bottom: 24px !important
    }

    .pb-md-16 {
        padding-bottom: 64px !important
    }

    .pb-md-20 {
        padding-bottom: 80px !important
    }

    .text-md-start {
        text-align: left !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width:992px) {
    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .order-lg-first {
        order: -1 !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-lg-2 {
        margin-left: 8px !important;
        margin-right: 8px !important
    }

    .mx-lg-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: 4px !important
    }

    .mt-lg-2 {
        margin-top: 8px !important
    }

    .mt-lg-4 {
        margin-top: 16px !important
    }

    .mt-lg-5 {
        margin-top: 20px !important
    }

    .mt-lg-6 {
        margin-top: 24px !important
    }

    .mt-lg-7 {
        margin-top: 28px !important
    }

    .mt-lg-8 {
        margin-top: 32px !important
    }

    .mt-lg-9 {
        margin-top: 36px !important
    }

    .mt-lg-10 {
        margin-top: 40px !important
    }

    .mt-lg-11 {
        margin-top: 44px !important
    }

    .mt-lg-12 {
        margin-top: 48px !important
    }

    .mt-lg-22 {
        margin-top: 88px !important
    }

    .mt-lg-24 {
        margin-top: 96px !important
    }

    .me-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: 4px !important
    }

    .mb-lg-2 {
        margin-bottom: 8px !important
    }

    .mb-lg-3 {
        margin-bottom: 12px !important
    }

    .mb-lg-4 {
        margin-bottom: 16px !important
    }

    .mb-lg-5 {
        margin-bottom: 20px !important
    }

    .mb-lg-6 {
        margin-bottom: 24px !important
    }

    .mb-lg-7 {
        margin-bottom: 28px !important
    }

    .mb-lg-8 {
        margin-bottom: 32px !important
    }

    .mb-lg-9 {
        margin-bottom: 36px !important
    }

    .mb-lg-12 {
        margin-bottom: 48px !important
    }

    .mb-lg-14 {
        margin-bottom: 56px !important
    }

    .mb-lg-24 {
        margin-bottom: 96px !important
    }

    .ms-lg-2 {
        margin-left: 8px !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-4 {
        padding: 16px !important
    }

    .p-lg-6 {
        padding: 24px !important
    }

    .p-lg-8 {
        padding: 32px !important
    }

    .p-lg-10 {
        padding: 40px !important
    }

    .p-lg-11 {
        padding: 44px !important
    }

    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-lg-2 {
        padding-left: 8px !important;
        padding-right: 8px !important
    }

    .px-lg-4 {
        padding-left: 16px !important;
        padding-right: 16px !important
    }

    .px-lg-5 {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    .px-lg-6 {
        padding-left: 24px !important;
        padding-right: 24px !important
    }

    .px-lg-7 {
        padding-left: 28px !important;
        padding-right: 28px !important
    }

    .px-lg-8 {
        padding-left: 32px !important;
        padding-right: 32px !important
    }

    .px-lg-10 {
        padding-left: 40px !important;
        padding-right: 40px !important
    }

    .px-lg-11 {
        padding-left: 44px !important;
        padding-right: 44px !important
    }

    .px-lg-13 {
        padding-left: 52px !important;
        padding-right: 52px !important
    }

    .px-lg-18 {
        padding-left: 72px !important;
        padding-right: 72px !important
    }

    .px-lg-25 {
        padding-left: 100px !important;
        padding-right: 100px !important
    }

    .py-lg-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-lg-3 {
        padding-bottom: 12px !important;
        padding-top: 12px !important
    }

    .py-lg-6 {
        padding-bottom: 24px !important;
        padding-top: 24px !important
    }

    .py-lg-8 {
        padding-bottom: 32px !important;
        padding-top: 32px !important
    }

    .py-lg-12 {
        padding-bottom: 48px !important;
        padding-top: 48px !important
    }

    .py-lg-14 {
        padding-bottom: 56px !important;
        padding-top: 56px !important
    }

    .py-lg-16 {
        padding-bottom: 64px !important;
        padding-top: 64px !important
    }

    .py-lg-17 {
        padding-bottom: 68px !important;
        padding-top: 68px !important
    }

    .pt-lg-3 {
        padding-top: 12px !important
    }

    .pt-lg-4 {
        padding-top: 16px !important
    }

    .pt-lg-10 {
        padding-top: 40px !important
    }

    .pt-lg-12 {
        padding-top: 48px !important
    }

    .pt-lg-16 {
        padding-top: 64px !important
    }

    .pt-lg-17 {
        padding-top: 68px !important
    }

    .pt-lg-20 {
        padding-top: 80px !important
    }

    .pe-lg-0 {
        padding-right: 0 !important
    }

    .pe-lg-7 {
        padding-right: 28px !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: 4px !important
    }

    .pb-lg-2 {
        padding-bottom: 8px !important
    }

    .pb-lg-4 {
        padding-bottom: 16px !important
    }

    .pb-lg-5 {
        padding-bottom: 20px !important
    }

    .pb-lg-6 {
        padding-bottom: 24px !important
    }

    .pb-lg-8 {
        padding-bottom: 32px !important
    }

    .pb-lg-12 {
        padding-bottom: 48px !important
    }

    .pb-lg-20 {
        padding-bottom: 80px !important
    }

    .pb-lg-24 {
        padding-bottom: 96px !important
    }

    .pb-lg-25 {
        padding-bottom: 100px !important
    }

    .ps-lg-8 {
        padding-left: 32px !important
    }

    .text-lg-start {
        text-align: left !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {
    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-none {
        display: none !important
    }

    .mt-xl-5 {
        margin-top: 20px !important
    }

    .mt-xl-6 {
        margin-top: 24px !important
    }

    .mt-xl-12 {
        margin-top: 48px !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-2 {
        margin-bottom: 8px !important
    }

    .mb-xl-4 {
        margin-bottom: 16px !important
    }

    .mb-xl-6 {
        margin-bottom: 24px !important
    }

    .px-xl-10 {
        padding-left: 40px !important;
        padding-right: 40px !important
    }

    .px-xl-12 {
        padding-left: 48px !important;
        padding-right: 48px !important
    }

    .py-xl-11 {
        padding-bottom: 44px !important;
        padding-top: 44px !important
    }

    .py-xl-12 {
        padding-bottom: 48px !important;
        padding-top: 48px !important
    }

    .pt-xl-6 {
        padding-top: 24px !important
    }

    .pt-xl-9 {
        padding-top: 36px !important
    }

    .pt-xl-12 {
        padding-top: 48px !important
    }

    .pt-xl-20 {
        padding-top: 80px !important
    }

    .pe-xl-2 {
        padding-right: 8px !important
    }

    .pb-xl-1 {
        padding-bottom: 4px !important
    }

    .pb-xl-8 {
        padding-bottom: 32px !important
    }

    .pb-xl-9 {
        padding-bottom: 36px !important
    }

    .pb-xl-11 {
        padding-bottom: 44px !important
    }

    .pb-xl-16 {
        padding-bottom: 64px !important
    }

    .pb-xl-20 {
        padding-bottom: 80px !important
    }

    .pb-xl-24 {
        padding-bottom: 96px !important
    }

    .text-xl-start {
        text-align: left !important
    }
}

.bg-deepBlue05 {
    background-color: #f5f6fe
}

.bg-deepBlue100 {
    background-color: #2f54eb
}

.font-weight-normal {
    font-weight: 400
}

.font-weight-medium {
    font-weight: 500
}

.font-weight-bolder,
.font-weight-semibold {
    font-weight: 600
}

.font-weight-bold {
    font-weight: 700
}

.text-footnote {
    font-size: 9px;
    line-height: 0;
    margin-left: 2px;
    vertical-align: super
}

.text-orange,
.text-orangeDeep100 {
    color: #fa8c16
}

.text-darkBlue100 {
    color: #2548d6
}

.text-white {
    color: #fff
}

.text-black100 {
    color: #222
}

.text-black50 {
    color: #909090
}

.text-black70 {
    color: #646464
}

@media (min-width:992px) {
    .text-lg-nowrap {
        white-space: nowrap
    }
}

h1 {
    font-size: 35px;
    font-weight: 600;
    line-height: 48px
}

h1,
h2 {
    margin: 0
}

h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 36px
}

h3 {
    font-size: 23px;
    line-height: 32px;
    margin: 0
}

@media (min-width:1200px) {
    h3 {
        font-size: 25px;
        font-weight: 700;
        line-height: 36px
    }
}

h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 0
}

@media (min-width:1200px) {
    h4 {
        font-size: 23px;
        font-weight: 500;
        line-height: 32px
    }
}

h5 {
    font-size: 14px;
    line-height: 20px
}

h5,
h6 {
    margin: 0
}

h6 {
    font-size: 12px;
    line-height: 16px
}

.text-lrg {
    font-size: 18px;
    line-height: 24px
}

.text-sml {
    font-size: 11px;
    line-height: 14px
}

.h0 {
    font-size: 48.0035px;
    line-height: 64px
}

.h0,
.h1 {
    font-weight: 600
}

.h1 {
    font-size: 35px;
    line-height: 48px
}

.h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 36px
}

.h3 {
    font-size: 23px;
    line-height: 32px
}

.h4 {
    font-size: 16px;
    line-height: 24px
}

.h5 {
    font-size: 14px;
    line-height: 20px
}

.h6 {
    font-size: 12px;
    line-height: 16px
}

.h1-xs {
    font-size: 35px;
    font-weight: 600;
    line-height: 48px
}

.h2-xs {
    font-size: 25px;
    font-weight: 700;
    line-height: 36px
}

.h3-xs {
    font-size: 23px;
    line-height: 32px
}

.h4-xs {
    font-size: 16px;
    line-height: 24px
}

.h5-xs {
    font-size: 14px;
    line-height: 20px
}

.h6-xs {
    font-size: 12px;
    line-height: 16px
}

@media (min-width:576px) {
    .h1-sm {
        font-size: 35px;
        font-weight: 600;
        line-height: 48px
    }

    .h2-sm {
        font-size: 25px;
        font-weight: 700;
        line-height: 36px
    }

    .h3-sm {
        font-size: 23px;
        line-height: 32px
    }

    .h4-sm {
        font-size: 16px;
        line-height: 24px
    }

    .h5-sm {
        font-size: 14px;
        line-height: 20px
    }

    .h6-sm {
        font-size: 12px;
        line-height: 16px
    }
}

@media (min-width:768px) {
    .h1-md {
        font-size: 35px;
        font-weight: 600;
        line-height: 48px
    }

    .h2-md {
        font-size: 25px;
        font-weight: 700;
        line-height: 36px
    }

    .h3-md {
        font-size: 23px;
        line-height: 32px
    }

    .h4-md {
        font-size: 16px;
        line-height: 24px
    }

    .h5-md {
        font-size: 14px;
        line-height: 20px
    }

    .h6-md {
        font-size: 12px;
        line-height: 16px
    }
}

@media (min-width:992px) {
    .h1-lg {
        font-size: 35px;
        font-weight: 600;
        line-height: 48px
    }

    .h2-lg {
        font-size: 25px;
        font-weight: 700;
        line-height: 36px
    }

    .h3-lg {
        font-size: 23px;
        line-height: 32px
    }

    .h4-lg {
        font-size: 16px;
        line-height: 24px
    }

    .h5-lg {
        font-size: 14px;
        line-height: 20px
    }

    .h6-lg {
        font-size: 12px;
        line-height: 16px
    }
}

@media (max-width:575.98px) {
    .container-sm-fullwidth {
        max-width: none;
        padding-left: 0;
        padding-right: 0
    }
}

input[type=email]:not(.customInput__input),
input[type=number]:not(.customInput__input),
input[type=tel]:not(.customInput__input),
input[type=text]:not(.customInput__input) {
    background: transparent;
    border: none;
    font-family: Montserrat, serif;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    letter-spacing: .3px;
    outline: none;
    width: 100%
}

input:not(.customInput__input)::-webkit-inner-spin-button,
input:not(.customInput__input)::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.PrimaryInput {
    background: #fff;
    border-radius: 4px
}

.SecondaryInput {
    background: #f5f6fe;
    border-radius: 4px
}

textarea {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    font-family: Montserrat, serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    outline: none;
    padding: 16px 19px;
    resize: none
}

::-ms-clear {
    display: none
}

::-webkit-input-placeholder {
    color: #222;
    font-weight: 500;
    opacity: 1
}

::-moz-placeholder {
    color: #222;
    font-weight: 500;
    opacity: 1
}

input:not(.customInput__input)::placeholder {
    color: #222;
    font-weight: 500;
    opacity: 1
}

input:not(.customInput__input):focus::placeholder {
    color: transparent
}

input:not(.customInput__input):focus::-webkit-input-placeholder {
    color: transparent
}

input:not(.customInput__input):focus:-moz-placeholder,
input:not(.customInput__input):focus::-moz-placeholder {
    color: transparent
}

input:not(.customInput__input)::-ms-clear {
    display: none
}

.step-active {
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-name: show-step;
    animation-timing-function: ease-in-out;
    position: relative
}

.step-active-initial {
    animation-duration: .4s;
    animation-fill-mode: none;
    animation-name: show-step;
    animation-timing-function: ease-in-out;
    position: relative
}

.step-prev {
    animation-fill-mode: forwards;
    animation-name: step-prev;
    animation-timing-function: ease-in-out
}

.step-prev {
    animation-duration: .4s;
    position: relative
}

@keyframes show-step {
    0% {
        opacity: 0;
        right: -200px
    }

    to {
        opacity: 1;
        right: 0
    }
}

@keyframes step-prev {
    0% {
        left: 0;
        opacity: 1
    }

    to {
        left: -200px;
        opacity: 0
    }
}

@keyframes show-step-backwards {
    0% {
        opacity: 0;
        right: 200px
    }

    to {
        opacity: 1;
        right: 0
    }
}

@keyframes step-prev-backwards {
    0% {
        left: 0;
        opacity: 1
    }

    to {
        left: 200px;
        opacity: 0
    }
}

.disabled {
    opacity: .5;
    pointer-events: none
}

.contentZip--middleZip {
    background-color: #2f54eb;
    background-image: url("");
    background-position: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

@media (min-width:576px) {
    .contentZip--middleZip {
        background-image: url("");
        background-position: 50%;
        background-size: 810px
    }
}

.contentZip--form {
    position: relative;
    z-index: 2
}

.footer {
    --footerTextColor: #fff;
    --footerBackgroundColor: #2f54eb;
    background-color: var(--footerBackgroundColor);
    color: var(--footerTextColor)
}

.footer_orange {
    --footerBackgroundColor: #fa8c16
}

.footer_lightBlue {
    --footerTextColor: #2548d6;
    --footerBackgroundColor: #f9fafe
}

.footer__wrapper {
    display: grid;
    grid-template-areas: "logo mascot""links mascot""social social""copyright copyright";
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto auto auto
}

@media (min-width:992px) {
    .footer__wrapper {
        grid-template-areas: "logo mascot social""links mascot social""copyright mascot social";
        grid-template-columns: 1fr auto auto;
        grid-template-rows: auto auto auto
    }
}

.footer__logo {
    --logoWidth: 202px;
    --logoHeight: 40px;
    --logoDisplay: inline-flex;
    display: flex;
    grid-area: logo
}

.footer__logo-lf {
    --logoWidth: 96px;
    --logoHeight: 32px
}

@media (min-width:992px) {
    .footer__logo-lf {
        --logoWidth: 144px;
        --logoHeight: 48px
    }
}

.footer__logoImg {
    --logoWidth: 206px
}

@media (min-width:375px) {
    .footer__logoImg {
        --logoWidth: 206px
    }
}

.footer__links {
    grid-area: links
}

@media (min-width:992px) {
    .footer__linksItem {
        display: inline-block;
        margin-right: 32px
    }

    .footer__linksItem:last-child {
        margin-right: 0
    }

    .footer__linksLink {
        font-size: 12px;
        line-height: 16px
    }
}

.footer__mascot {
    grid-area: mascot;
    position: relative
}

.footer__mascotImg {
    bottom: 0;
    max-height: 216px;
    position: absolute;
    right: 0
}

@media (min-width:992px) {
    .footer__mascotImg {
        max-height: 244px
    }
}

.footer__social {
    grid-area: social;
    text-align: center
}

@media (min-width:992px) {
    .footer__social {
        margin-left: 24px;
        text-align: initial
    }
}

@media (min-width:1200px) {
    .footer__social {
        margin-left: 88px
    }
}

.footer__socialTitle {
    font-size: 23px;
    font-weight: 700;
    line-height: 32px
}

@media (min-width:992px) {
    .footer__socialTitle {
        font-size: 25px;
        font-weight: 700;
        line-height: 36px
    }
}

.footer__socialLink {
    display: inline-block;
    margin-right: 16px
}

.footer__socialLink:last-child {
    margin-right: 0
}

.footer__copyright {
    grid-area: copyright;
    text-align: center
}

@media (min-width:992px) {
    .footer__copyright {
        text-align: initial
    }
}

.footer__copyrightText {
    font-size: 12px;
    line-height: 16px;
    opacity: .7
}

@media (min-width:992px) {
    .footer__copyrightText {
        font-weight: 500
    }
}

.contentZip--title {
    line-height: 1.25
}

@media (min-width:992px) {
    .contentZip--title {
        line-height: 1.4
    }
}

.zip {
    min-height: 148px
}

@media (min-width:375px) {
    .zip {
        min-height: 84px
    }
}

.zip .stickyHeader {
    display: none;
    margin-top: 5px;
    padding-right: 16px
}

.zip .sticky input {
    padding-bottom: 0 !important;
    padding-right: 35px;
    padding-top: 0 !important
}

.zip .sticky .stickyHeader {
    display: none
}

@media (min-width:992px) {
    .zip .sticky .stickyHeader {
        display: block
    }
}

.zip .sticky .zip--body {
    height: 39px;
    max-width: 250px
}

.zip .sticky button {
    margin-left: 8px;
    margin-top: 0
}

@media (min-width:1200px) {
    .zip .sticky button {
        margin-left: 16px
    }
}

.zip .sticky label {
    display: none
}

.zip .sticky .leftIcon,
.zip .sticky .rightIcon {
    top: 8px !important
}

.zip .sticky input::-webkit-input-placeholder {
    opacity: 1 !important
}

.zip .sticky input::-moz-placeholder {
    opacity: 1 !important
}

.zip .sticky input:-ms-input-placeholder {
    opacity: 1 !important
}

.zip .sticky input:-moz-placeholder {
    opacity: 1 !important
}

.zip .sticky .zip--caption {
    display: none
}

.zip .sticky .zip--container {
    flex-direction: row;
    width: auto
}

.zip--container {
    flex-direction: column;
    max-width: calc(100vw - 32px);
    width: 420px
}

@media (min-width:375px) {
    .zip--container {
        flex-direction: row
    }
}

.zip--body {
    border: 1px solid transparent;
    border-radius: 4px;
    height: 56px;
    position: relative;
    width: max-content
}

@media (min-width:375px) {
    .zip--body {
        flex-basis: 100%
    }
}

.zip input {
    height: 100%;
    padding: 19.5px 44px
}

.zip input:focus~label,
.zip input:not(:placeholder-shown)~label {
    font-size: 11px !important;
    font-weight: 500;
    line-height: 13px !important;
    top: 3px !important
}

.zip input:valid:focus~label,
.zip input:valid:not(:placeholder-shown)~label {
    color: #909090
}

.zip label {
    color: #222;
    cursor: text;
    font-size: 14px;
    font-weight: 500;
    left: 0;
    line-height: 17px;
    margin: 0;
    padding-left: 44px;
    position: absolute;
    top: 19px;
    transition: top .3s;
    white-space: nowrap;
    z-index: 0
}

.zip input:valid:hover~label {
    color: #2f54eb !important
}

.zip input::-webkit-input-placeholder {
    opacity: 0
}

.zip input::-moz-placeholder {
    opacity: 0
}

.zip input:-ms-input-placeholder {
    opacity: 0
}

.zip input:-moz-placeholder {
    opacity: 0
}

.zip .leftIcon {
    background: url("") no-repeat;
    flex-shrink: 0;
    height: 20px;
    left: 16px;
    position: absolute;
    top: 16px;
    width: 20px
}

@media (max-width:320px) {
    .zip .leftIcon {
        margin-right: 4px
    }
}

.zip .rightIcon {
    background: url("") no-repeat;
    flex-shrink: 0;
    height: 22px;
    position: absolute;
    right: 17px;
    top: 16px;
    visibility: hidden;
    width: 22px
}

.zip button {
    margin-top: 8px
}

@media (min-width:375px) {
    .zip button {
        margin-left: 8px;
        margin-top: 0
    }
}

@media (min-width:1200px) {
    .zip button {
        margin-left: 16px
    }
}

.zip--caption {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.42;
    padding-top: 8px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    white-space: nowrap
}

.zipTheme1 .zip--caption {
    color: #c1ccf9
}

.zipTheme1 .zip--body {
    background: #fff;
    width: 100%
}

.zipTheme2 .zip--caption {
    color: #646464
}

.zipTheme2 .zip--body {
    background: #f5f6fe;
    width: 100%
}

.zipTheme1.invalid .zip--body {
    border-color: #fa8c16
}

.zipTheme1.invalid label {
    color: #fa8c16
}

.zipTheme1.invalid .zip--caption {
    color: #fa8c16;
    display: block !important;
    padding-left: 16px
}

.zipTheme2.invalid .zip--body {
    border-color: #f5222d
}

.zipTheme2.invalid label {
    color: #f5222d
}

.zipTheme2.invalid .zip--caption {
    color: #f5222d;
    display: block !important;
    padding-left: 16px
}

.zipBodyDisable>* {
    opacity: .5;
    pointer-events: none
}

@keyframes splide-loading {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.splide__container {
    box-sizing: border-box;
    position: relative
}

.splide__list {
    margin: 0 !important;
    padding: 0 !important;
    width: -webkit-max-content;
    width: max-content;
    will-change: transform
}

.splide.is-active .splide__list {
    display: flex
}

.splide__pagination {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    width: 95%
}

.splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0
}

.splide {
    visibility: hidden
}

.splide,
.splide__slide {
    outline: none;
    position: relative
}

.splide__slide {
    box-sizing: border-box;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
}

.splide__slide img {
    vertical-align: bottom
}

.splide__slider {
    position: relative
}

.splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #999;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0
}

.splide--draggable>.splide__track>.splide__list>.splide__slide {
    -webkit-user-select: none;
    user-select: none
}

.splide--fade>.splide__track>.splide__list {
    display: block
}

.splide--fade>.splide__track>.splide__list>.splide__slide {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 0
}

.splide--fade>.splide__track>.splide__list>.splide__slide.is-active {
    opacity: 1;
    position: relative;
    z-index: 1
}

.splide--rtl {
    direction: rtl
}

.splide--ttb>.splide__track>.splide__list {
    display: block
}

.splide--ttb>.splide__pagination {
    width: auto
}

.splide__arrow {
    align-items: center;
    background: #ccc;
    border: none;
    border-radius: 50%;
    display: flex;
    height: 2em;
    justify-content: center;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    z-index: 1
}

.splide__arrow svg {
    height: 1.2em;
    width: 1.2em
}

.splide__arrow:hover {
    cursor: pointer;
    opacity: .9
}

.splide__arrow:focus {
    outline: none
}

.splide__arrow--prev {
    left: 1em
}

.splide__arrow--prev svg {
    transform: scaleX(-1)
}

.splide__arrow--next {
    right: 1em
}

.splide__pagination {
    bottom: .5em;
    left: 50%;
    padding: 0;
    position: absolute;
    transform: translateX(-50%);
    z-index: 1
}

.splide__pagination__page {
    background: #ccc;
    border: none;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    margin: 3px;
    opacity: .7;
    padding: 0;
    transition: transform .2s linear;
    width: 8px
}

.splide__pagination__page.is-active {
    background: #fff;
    transform: scale(1.4)
}

.splide__pagination__page:hover {
    cursor: pointer;
    opacity: .9
}

.splide__pagination__page:focus {
    outline: none
}

.splide__progress__bar {
    background: #ccc;
    height: 3px;
    width: 0
}

.splide--nav>.splide__track>.splide__list>.splide__slide {
    border: 3px solid transparent
}

.splide--nav>.splide__track>.splide__list>.splide__slide.is-active {
    border-color: #000
}

.splide--nav>.splide__track>.splide__list>.splide__slide:focus {
    outline: none
}

.splide--rtl>.splide__arrows .splide__arrow--prev,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev {
    left: auto;
    right: 1em
}

.splide--rtl>.splide__arrows .splide__arrow--prev svg,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev svg {
    transform: scaleX(1)
}

.splide--rtl>.splide__arrows .splide__arrow--next,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--next {
    left: 1em;
    right: auto
}

.splide--rtl>.splide__arrows .splide__arrow--next svg,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--next svg {
    transform: scaleX(-1)
}

.splide--ttb>.splide__arrows .splide__arrow,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow {
    left: 50%;
    transform: translate(-50%)
}

.splide--ttb>.splide__arrows .splide__arrow--prev,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev {
    top: 1em
}

.splide--ttb>.splide__arrows .splide__arrow--prev svg,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev svg {
    transform: rotate(-90deg)
}

.splide--ttb>.splide__arrows .splide__arrow--next,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--next {
    bottom: 1em;
    top: auto
}

.splide--ttb>.splide__arrows .splide__arrow--next svg,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--next svg {
    transform: rotate(90deg)
}

.splide--ttb>.splide__pagination {
    bottom: 50%;
    display: flex;
    flex-direction: column;
    left: auto;
    right: .5em;
    transform: translateY(50%)
}

.srn-gallery-left-arrow {
    background-image: url("");
    background-repeat: no-repeat;
    cursor: pointer;
    display: none;
    height: 26px;
    margin-left: -50px;
    width: 16px
}

@media (min-width:1320px) {
    .srn-gallery-left-arrow {
        display: block
    }
}

.srn-gallery-left-arrow:hover {
    background-image: url("")
}

.srn-gallery-right-arrow {
    background-image: url("");
    background-repeat: no-repeat;
    cursor: pointer;
    display: block;
    display: none;
    float: right;
    height: 26px;
    margin-right: -50px;
    width: 16px
}

@media (min-width:1320px) {
    .srn-gallery-right-arrow {
        display: block
    }
}

.srn-gallery-right-arrow:hover {
    background-image: url("")
}

.rounded {
    border-radius: 8px !important
}

@media (min-width:1200px) {
    .rounded {
        border-radius: 16px !important
    }
}

.video {
    margin-top: 23px;
    min-width: 100%;
    width: 100%
}

@media (min-width:1200px) {
    .video {
        margin-top: 0
    }
}

.sticky {
    background: rgba(47, 84, 235, .95);
    left: 0;
    padding: 16px;
    position: fixed;
    right: 0;
    top: 0;
    transition: top .3333s ease-in-out;
    z-index: 100
}

.sticky:not(.hidden) {
    top: 0
}

.sticky.hidden {
    top: -96px
}

.animation_spin {
    animation: spin 2s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}