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],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[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[type=number] {
    -moz-appearance: textfield
}

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: #ff6c17;
    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: #ff6c17
}

.defaultLink_blue:before {
    background-color: #ff6c17;
    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)
}

.customButton {
    --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)
}

.customButton_small {
    --btnFontSize: 14px;
    --btnLineHeight: 1.43;
    --btnPaddingHorizontal: 16px;
    --btnPaddingVertical: 8px
}

.customButton_medium {
    --btnFontSize: 16px;
    --btnLineHeight: 1.5;
    --btnPaddingHorizontal: 20px;
    --btnPaddingVertical: 8px
}

.customButton_large {
    --btnFontSize: 16px;
    --btnLineHeight: 1.5;
    --btnPaddingHorizontal: 24px;
    --btnPaddingVertical: 16px
}

.customButton_primary {
    --btnTextColor: #fff;
    --btnBorderWidth: 1px;
    --btnBorderColor: transparent;
    --btnOutlineColor: transparent;
    --btnBackgroundColor: #fa8c16
}

@media not all and (hover:none) {

    .customButton_primary:hover,
    .customButton_primary[data-state=hover] {
        --btnBorderWidth: 2px;
        --btnBackgroundColor: #f16e00
    }
}

.customButton_primary:focus-visible,
.customButton_primary[data-state=focus] {
    --btnBorderWidth: 2px;
    --btnOutlineColor: #feddb9;
    --btnBackgroundColor: #f16e00
}

.customButton_primary:active,
.customButton_primary[data-state=active] {
    --btnBorderWidth: 2px;
    --btnBackgroundColor: #e16803
}

.customButton_primary:disabled,
.customButton_primary[data-state=disabled],
.customButton_primary[disabled] {
    --btnBackgroundColor: #fcc58a
}

.customButton_secondary {
    --btnTextColor: #ff6c17;
    --btnBorderWidth: 1px;
    --btnBorderColor: #c1ccf9;
    --btnOutlineColor: transparent;
    --btnBackgroundColor: #fff
}

@media not all and (hover:none) {

    .customButton_secondary:hover,
    .customButton_secondary[data-state=hover] {
        --btnBorderWidth: 2px;
        --btnBorderColor: #6d87f1
    }
}

.customButton_secondary:focus-visible,
.customButton_secondary[data-state=focus] {
    --btnBorderWidth: 2px;
    --btnBorderColor: #6d87f1;
    --btnOutlineColor: #d5ddfb
}

.customButton_secondary:active,
.customButton_secondary[data-state=active] {
    --btnBorderWidth: 2px;
    --btnBorderColor: #ff6c17
}

.customButton_secondary:disabled,
.customButton_secondary[data-state=disabled],
.customButton_secondary[disabled] {
    --btnTextColor: #6d87f1;
    --btnBorderColor: #e9e9e9
}

.customButton_clear {
    --btnTextColor: #ff6c17;
    --btnBorderWidth: 1px;
    --btnBorderColor: transparent;
    --btnOutlineColor: transparent;
    --btnBackgroundColor: #fff
}

@media not all and (hover:none) {

    .customButton_clear:hover,
    .customButton_clear[data-state=hover] {
        --btnBorderWidth: 2px;
        --btnBackgroundColor: #f5f6fe
    }
}

.customButton_clear:focus-visible,
.customButton_clear[data-state=focus] {
    --btnBorderWidth: 2px;
    --btnBackgroundColor: #f5f6fe
}

.customButton_clear:active,
.customButton_clear[data-state=active] {
    --btnTextColor: #2548d6;
    --btnBorderWidth: 2px;
    --btnBackgroundColor: #c1ccf9
}

.customButton_clear:disabled,
.customButton_clear[data-state=disabled],
.customButton_clear[disabled] {
    --btnTextColor: #c1ccf9
}

.customButton [disabled],
.customButton:disabled {
    cursor: not-allowed;
    pointer-events: none
}

.customButton__inner {
    align-items: center;
    display: flex;
    justify-content: center;
    pointer-events: none;
    white-space: nowrap
}

.customButton__icon {
    display: flex;
    height: var(--btnIconSize);
    justify-content: center;
    width: var(--btnIconSize)
}

.customButton__icon svg {
    height: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.customButton__icon_processing {
    opacity: 0;
    position: absolute;
    transition: opacity var(--btnAnimationTime);
    user-select: none
}

[data-state=processing] .customButton__icon_processing {
    opacity: 1
}

[data-state=processing] .customButton__icon:not(.customButton__icon_processing) {
    opacity: 0;
    user-select: none
}

.customButton__text {
    opacity: 1;
    transition: opacity var(--btnAnimationTime)
}

[data-state=processing] .customButton__text {
    opacity: 0;
    user-select: none
}

.customInput {
    --inputWidth: 100%;
    --inputMaxWidth: var(--inputWidth);
    --inputFontWeight: 500;
    --inputFontSize: 14px;
    --inputLineHeight: 1.43;
    --inputPaddingHorizontal: 16px;
    --inputPaddingVertical: 12px;
    --inputOutlineWidth: 1px;
    --inputOutlineHoverWidth: var(--inputOutlineWidth);
    --inputOutlineFocusWidth: 4px;
    --inputOpacity: 1;
    --inputRadius: 4px;
    --inputAnimationTime: 0.2s;
    --inputColor: #222;
    --inputBackgroundColor: #f5f5f5;
    --inputOutlineColor: #868686;
    --inputOutlineHoverColor: #646464;
    --inputOutlineFocusColor: #e2e2e2;
    --caretColor: #000;
    --placeholderColor: #646464;
    --labelFontWeight: 500;
    --labelFontSize: 11px;
    --labelLineHeight: 1.24;
    --labelPaddingVertical: 24px;
    --labelVerticalOffset: -1px;
    --labelColor: #222;
    --helperFontWeight: 500;
    --helperFontSize: 12px;
    --helperLineHeight: 1.33;
    --helperHorizontalOffset: var(--inputPaddingHorizontal);
    --helperVerticalOffset: 4px;
    --helperColor: #646464;
    --inputIconSize: 20px;
    --inputIconPadding: 8px;
    --inputIconColor: var(--inputColor);
    max-width: var(--inputMaxWidth);
    width: var(--inputWidth)
}

.customInput_small {
    --inputPaddingVertical: 8px;
    --labelPaddingVertical: var(--inputPaddingVertical)
}

.customInput_small .customInput__input::placeholder {
    transition: none
}

.customInput_small :not(input:placeholder-shown)~.customInput__label,
.customInput_small :not(input[value=""]):focus~.customInput__label {
    display: none
}

.customInput_medium {
    --labelPaddingVertical: var(--inputPaddingVertical)
}

.customInput_medium .customInput__input::placeholder {
    transition: none
}

.customInput_medium :not(input:placeholder-shown)~.customInput__label,
.customInput_medium :not(input[value=""]):focus~.customInput__label {
    display: none
}

.customInput_primary {
    --inputBackgroundColor: #f5f6fe;
    --inputOutlineColor: #ff6c17;
    --inputOutlineHoverColor: #6d87f1;
    --inputOutlineFocusColor: #c1ccf9;
    --inputIconColor: #fa8c16;
    --caretColor: #ff6c17
}

.customInput_secondary {
    --inputBackgroundColor: #fefaf5;
    --inputOutlineColor: #fa8c16;
    --inputOutlineHoverColor: #f1b86d;
    --inputOutlineFocusColor: #fee8d0;
    --inputIconColor: #ff6c17;
    --caretColor: #fa8c16
}

.customInput_clear {
    --inputBackgroundColor: #fbfbfb;
    --inputOutlineColor: #ff6c17;
    --inputOutlineHoverColor: #6d87f1;
    --inputOutlineFocusColor: #c1ccf9;
    --inputIconColor: #ff6c17;
    --caretColor: #ff6c17
}

.customInput[data-status=valid] {
    --validColor: #0b0;
    --caretColor: var(--validColor);
    --helperColor: var(--validColor);
    --inputOutlineColor: var(--validColor)
}

.customInput[data-status=invalid] {
    --invalidColor: #b00;
    --caretColor: var(--invalidColor);
    --helperColor: var(--invalidColor);
    --inputOutlineColor: var(--invalidColor)
}

.customInput__group {
    background-color: var(--inputBackgroundColor);
    border-radius: var(--inputRadius);
    box-shadow: inset 0 0 0 0 transparent;
    display: flex;
    font-family: inherit;
    opacity: var(--inputOpacity);
    text-align: center;
    transition: color var(--inputAnimationTime), background-color var(--inputAnimationTime), box-shadow var(--inputAnimationTime), opacity var(--inputAnimationTime)
}

@media not all and (hover:none) {
    .customInput__group:hover {
        --labelColor: var(--inputOutlineColor);
        box-shadow: 0 0 0 var(--inputOutlineHoverWidth) var(--inputOutlineHoverColor) inset
    }
}

[data-status=invalid] .customInput__group,
[data-status=valid] .customInput__group {
    box-shadow: 0 0 0 var(--inputOutlineWidth) var(--inputOutlineColor) inset
}

[data-state=focus] .customInput__group {
    box-shadow: 0 0 0 var(--inputOutlineWidth) var(--inputOutlineColor) inset, 0 0 0 var(--inputOutlineFocusWidth) var(--inputOutlineFocusColor)
}

[data-state=disabled] .customInput__group {
    --inputOpacity: 0.5;
    cursor: not-allowed;
    pointer-events: none
}

.customInput__module {
    display: flex
}

.customInput__area,
.customInput__module {
    align-items: center;
    justify-content: center
}

.customInput__area {
    cursor: text;
    display: inline-flex;
    flex-grow: 1;
    padding-left: var(--inputPaddingHorizontal);
    padding-right: var(--inputPaddingHorizontal);
    position: relative;
    white-space: nowrap
}

.customInput__field,
.customInput__input {
    position: relative;
    width: 100%
}

.customInput__input {
    background-color: transparent;
    border: 0;
    caret-color: var(--caretColor);
    color: var(--inputColor);
    font-size: var(--inputFontSize);
    font-weight: var(--inputFontWeight);
    line-height: var(--inputLineHeight);
    padding: var(--labelPaddingVertical) 0 var(--inputPaddingVertical) 0;
    z-index: 2
}

.customInput__input::placeholder {
    opacity: 0;
    padding-left: 8px;
    transition: opacity var(--inputAnimationTime)
}

.customInput__input:focus {
    outline: none
}

.customInput__input:focus::placeholder {
    color: var(--placeholderColor);
    opacity: 1
}

.customInput__label {
    align-items: center;
    bottom: 0;
    color: var(--labelColor);
    cursor: inherit;
    display: inline-flex;
    font-size: var(--inputFontSize);
    font-weight: var(--inputFontWeight);
    left: 0;
    line-height: var(--inputLineHeight);
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    transition: all var(--inputAnimationTime);
    z-index: 1
}

:not(input[value=""]):focus~.customInput__label {
    --labelColor: var(--inputOutlineColor)
}

:not(input:placeholder-shown)~.customInput__label {
    --labelColor: var(--placeholderColor)
}

@media not all and (hover:none) {
    .customInput__group:hover :not(input:placeholder-shown)~.customInput__label {
        --labelColor: var(--inputOutlineColor)
    }
}

:not(input:placeholder-shown)~.customInput__label,
:not(input[value=""]):focus~.customInput__label {
    bottom: var(--labelPaddingVertical);
    font-size: var(--labelFontSize);
    font-weight: var(--labelFontWeight);
    line-height: var(--labelLineHeight)
}

.customInput__icon {
    color: var(--inputIconColor);
    display: flex;
    height: var(--inputIconSize);
    justify-content: center;
    width: var(--inputIconSize)
}

.customInput__icon svg {
    position: relative;
    top: 50%;
    transform: translateY(-50%)
}

.customInput__icon:first-child {
    margin-right: var(--inputIconPadding)
}

.customInput__icon:last-child {
    margin-left: var(--inputIconPadding)
}

.customInput__message {
    color: var(--helperColor);
    font-size: var(--helperFontSize);
    font-weight: var(--helperFontWeight);
    line-height: var(--helperLineHeight);
    margin-left: var(--helperHorizontalOffset);
    margin-top: var(--helperVerticalOffset)
}

.customInput__message_primary {
    --helperColor: #fa8c16
}

.customInput__message_secondary {
    --helperColor: #ff6c17
}

.customInput__message_valid {
    --helperColor: #0b0
}

.customInput__message_invalid {
    --helperColor: #b00
}

.customInput__message_default {
    color: inherit;
    margin-left: 0
}

.customInput__message[data-visibility=hidden] {
    display: none
}

.customInput__message[data-visibility=invisible] {
    color: transparent;
    opacity: 0
}

.logo {
    --logoDisplay: flex;
    --logoWidth: 100%;
    --logoHeight: auto
}

.logo__container {
    display: var(--logoDisplay)
}

.logo__img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}
@media (max-width:700px) {
    .logo__img {
        
        width: 100%
    }
    .header__logo{
width: 50%;
    }
}

.header {
    background-color: #ff6c17;
    display: flex;
    flex-direction: column
}

@media (min-width:768px) and (min-height:420px) {
    .header {
        background-image: url(../imagens/img-bg.png);
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: auto 90%;
        min-height: 550px
    }
    
}

@media (min-width:1680px) and (min-height:420px) {
    .header {
        background-size: auto 96%
    }
}

.header__container {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative
}

.header__logo {
    --logoWidth: 96px;
    --logoHeight: 32px
}

@media (min-width:992px) {
    .header__logo {
        --logoWidth: 144px;
        --logoHeight: 48px
    }
    
}

.header__navigation {
    padding-top: 4px
}

@media (min-width:768px) {
    .header__navigation {
        padding-top: 9px
    }
    
}

.header__wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) 0 env(safe-area-inset-left);
    width: 100%
}

.header__grid {
    grid-gap: 16px;
    display: grid
}

@media (min-width:768px) {
    .header__grid {
        grid-gap: 24px
    }
}

@media (min-width:1200px) {
    .header__grid {
        grid-gap: 24px;
        grid-template-columns: 1fr 580px
    }
}

.header__title {
    font-size: 23px;
    line-height: 28px;
    margin: 0
}

@media (min-width:768px) {
    .header__title {
        font-size: 25px;
        line-height: 36px
    }
}

@media (min-width:992px) {
    .header__title {
        font-size: 35px;
        line-height: 48px
    }
}

.header__titleMark {
    background-color: transparent;
    background-image: linear-gradient(180deg, #52c41a, #52c41a), url(../images/c06a42667283d2e8c4d8.svg), url(../images/c06a42667283d2e8c4d8.svg);
    background-position: 50%, 0, 100%;
    background-repeat: no-repeat;
    background-size: calc(100% - 12px) 24px, 16px 24px, 16px 24px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    color: #fff
}

@media (min-width:992px) {
    .header__titleMark {
        background-image: linear-gradient(180deg, #52c41a, #52c41a), url(../images/bad993705b299bd9183e.svg), url(../images/bad993705b299bd9183e.svg);
        background-size: calc(100% - 12px) 36px, 16px 36px, 16px 36px
    }
}

.header__helperText {
    font-weight: 400
}

@media (min-width:768px) {
    .header__helperText {
        font-weight: 500
    }
}

.header__mediaWrap {
    position: relative
}

@media (min-width:1200px) {
    .header__mediaWrap {
        margin-top: 36px
    }
}

.header__mediaBadge {
    background-color: #fff;
    border-radius: 8px;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    position: absolute;
    right: 8px;
    text-align: center;
    top: 8px
}

@media (min-width:768px) {
    .header__mediaBadgeIcon {
        height: 32px;
        width: 32px
    }
}

.defaultSlider {
    --prevBtnIndent: -58px;
    --nextBtnIndent: -58px;
    --maxWidth: none;
    --paginationBottomIndent: -24px;
    --paginationColor: #fa8c16;
    max-width: var(--maxWidth);
    width: 100%
}

@media (min-width:576px) {
    .defaultSlider {
        --maxWidth: 540px
    }
}

@media (min-width:768px) {
    .defaultSlider {
        --maxWidth: 720px
    }
}

@media (min-width:992px) {
    .defaultSlider {
        --maxWidth: 960px
    }
}

@media (min-width:1200px) {
    .defaultSlider {
        --maxWidth: 1140px
    }
}

.defaultSlider .splide__arrows {
    display: none
}

@media (min-width:1320px) {
    .defaultSlider .splide__arrows {
        display: block
    }
}

.defaultSlider .splide__arrow {
    background-color: transparent;
    border-radius: 0;
    height: 32px;
    opacity: 1;
    width: 32px
}

.defaultSlider .splide__arrow:hover {
    opacity: .7
}

.defaultSlider .splide__arrow--prev {
    left: var(--prevBtnIndent)
}

.defaultSlider .splide__arrow--next {
    right: var(--nextBtnIndent)
}

.defaultSlider .splide__arrowImg {
    height: 100%;
    width: 100%
}

.defaultSlider .splide__pagination {
    bottom: var(--paginationBottomIndent)
}

.defaultSlider .splide__pagination__page {
    background-color: transparent;
    display: block;
    height: 14px;
    margin: 0 1px;
    opacity: 1;
    position: relative;
    width: 14px
}

.defaultSlider .splide__pagination__page:before {
    background-color: #000;
    border-radius: 99px;
    content: "";
    height: 6px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px
}

.defaultSlider .splide__pagination__page.is-active {
    transform: scale(1)
}

.defaultSlider .splide__pagination__page.is-active:before {
    background-color: var(--paginationColor)
}

.defaultSlider .splide__pagination__page.is-active:after {
    border: 1px solid #222;
    border-radius: 100%;
    content: "";
    height: 14px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px
}

@media (min-width:1024px) {
    .carousel__container {
        max-width: 1024px
    }
}

@media (min-width:1240px) {
    .carousel__container {
        max-width: 1240px
    }
}

@media (min-width:1350px) {
    .carousel__container {
        max-width: 1290px
    }
}

@media (min-width:1024px) {
    .carousel__wrap {
        padding: 0 32px
    }
}

@media (min-width:1200px) {
    .carousel__wrap {
        padding: 0 48px
    }
}

@media (min-width:1240px) {
    .carousel__wrap {
        padding: 0 36px
    }
}

@media (min-width:1350px) {
    .carousel__wrap {
        padding: 0 56px
    }
}

.carousel__img {
    aspect-ratio: 1/1.5;
    object-fit: cover
}

.carousel .splide {
    position: static
}

.carousel .splide__arrow {
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    border: none;
    bottom: 39.5%;
    color: inherit;
    cursor: pointer;
    display: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    height: 48px;
    opacity: 1;
    outline: none;
    padding: 0;
    text-decoration: none;
    top: auto;
    transform: none;
    transition: opacity .3s linear;
    width: 48px
}

.carousel .splide__arrow:hover {
    opacity: 1
}

@media (min-width:1024px) {
    .carousel .splide__arrow {
        display: block
    }
}

.carousel .splide__arrow--prev {
    left: 2px
}

@media (min-width:1240px) {
    .carousel .splide__arrow--prev {
        left: -6px
    }
}

@media (min-width:1350px) {
    .carousel .splide__arrow--prev {
        left: 16px
    }
}

.carousel .splide__arrow--next {
    right: 2px
}

@media (min-width:1240px) {
    .carousel .splide__arrow--next {
        right: -6px
    }
}

@media (min-width:1350px) {
    .carousel .splide__arrow--next {
        right: 16px
    }
}

.carousel .splide__arrowImg {
    height: auto;
    transform: none;
    width: auto
}

.carousel .splide__track {
    overflow: visible
}

@media (min-width:1024px) {
    .carousel .splide__track {
        overflow: hidden
    }
}

.carousel .splide__slide {
    border-radius: 16px;
    flex: none
}

.carousel .splide__pagination {
    background-color: #f0f3f5;
    border-radius: 2px;
    bottom: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
    right: 0;
    transform: none;
    width: calc(100% - 48px)
}

@media (min-width:1024px) {
    .carousel .splide__pagination {
        max-width: 552px
    }
}

.carousel .splide__pagination li {
    flex: 1 0 auto
}

.carousel .splide__pagination__page {
    background-color: #f0f3f5;
    border-radius: 2px;
    display: block;
    height: 4px;
    margin: 0;
    opacity: 1;
    width: 100%
}

.carousel .splide__pagination__page.is-active {
    background-color: #a4b7c1;
    transform: none
}

.galleryCard {
    --paddings: 0 16px;
    max-width: 712px;
    padding: var(--paddings);
    width: 100%
}

@media (min-width:576px) {
    .galleryCard {
        --paddings: 0 8px
    }
}

.galleryCard__img {
    aspect-ratio: 1.776/1;
    background-color: #e6e6e6;
    border-radius: 8px;
    min-height: 1px;
    object-fit: cover;
    position: relative
}

@media (min-width:992px) {
    .galleryCard__img {
        border-radius: 0
    }
}

.reviewCard {
    --paddings: 8px 16px 16px;
    height: 100%;
    padding: var(--paddings)
}

@media (min-width:768px) {
    .reviewCard {
        --paddings: 8px 12px 16px 12px
    }
}

.reviewCard__inner {
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(47, 84, 235, .15)
}

.reviewCard__noUserPic {
    flex: 0 0 40px;
    font-size: 16px;
    height: 40px;
    width: 40px
}

.reviewCard__noUserPic_colorBlue {
    background-color: #e3effb
}

.reviewCard__noUserPic_colorYellow {
    background-color: #faf7d9
}

.reviewCard__noUserPic_colorPink {
    background-color: #ffeff7
}

.reviewCard__noUserPic_colorGreen {
    background-color: #e1f0ee
}

.features__group {
    grid-gap: 24px;
    display: grid
}

@media (min-width:768px) {
    .features__group {
        grid-gap: 36px;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:992px) {
    .features__group {
        grid-template-columns: repeat(4, 1fr)
    }
}

.features__item {
    align-items: center;
    display: flex
}

@media (min-width:768px) {
    .features__item {
        flex-direction: column;
        text-align: center
    }
}

@media (min-width:992px) {
    .features__icon {
        height: 72px;
        width: 72px
    }
}

@media (min-width:768px) {
    .features__text {
        max-width: 268px
    }
}

@media (min-width:992px) {
    .introduction__mapCard {
        grid-gap: 72px;
        align-items: center;
        display: grid;
        grid-template-columns: 360px auto
    }
}

.introduction__mapImage {
    aspect-ratio: 1.4658/1;
    max-width: 396px
}

@media (min-width:768px) {
    .introduction__card {
        grid-gap: 24px;
        align-items: center;
        display: grid;
        grid-template-areas: "media text";
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:992px) {
    .introduction__card {
        grid-gap: 72px;
        grid-template-areas: "media media text";
        grid-template-columns: repeat(3, 1fr)
    }

    .introduction__cardVideoWrap {
        grid-area: media
    }
}

.photoReview__list {
    column-gap: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px
}

@media (min-width:768px) {
    .photoReview__list {
        column-gap: 24px
    }
}

@media (min-width:992px) {
    .photoReview__list {
        column-gap: 72px;
        grid-template-columns: repeat(3, 1fr)
    }
}

.photoReview__caption {
    font-weight: 600
}

@media (min-width:768px) {
    .photoReview__caption {
        font-weight: 500
    }
}

.photoReview__img {
    aspect-ratio: 1.9523/1;
    object-fit: cover
}

.aboutProduct__list {
    grid-gap: 32px;
    display: grid
}

@media (min-width:992px) {
    .aboutProduct__list {
        grid-gap: 48px
    }

    .aboutCard {
        grid-gap: 62px;
        display: grid;
        grid-template-columns: auto 64%
    }
}

.aboutCard__mediaWrap {
    padding-bottom: 60%
}

.aboutCard__img {
    aspect-ratio: 1.665/1;
    background-color: #f9fafb;
    border-radius: 8px;
    display: block;
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%
}

@media (min-width:992px) {
    .aboutCard__img {
        border-radius: 16px
    }
}

.aboutCard__video {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%
}

.aboutCard__budge {
    position: absolute;
    right: -16px;
    top: -16px;
    z-index: 1
}

.aboutCard__budgeText {
    background-color: #2f2f2f;
    color: #fff;
    font-size: 10px;
    left: 5px;
    padding: 4px 15px 4px 10px;
    position: relative
}

.aboutCard__budgeImg {
    aspect-ratio: 1/1;
    object-fit: cover;
    z-index: 1
}

@use "sass:map";

.pageForm__outer {
    border-radius: 24px
}

@media (min-width:768px) {
    .pageForm__outer {
        background-color: #ff6c17;
        background-image: url(../imagens/img-bg.png);
        background-position: top;
        background-repeat: no-repeat;
        background-size: auto calc(100% + 48px)
    }
}

.pageForm__plate {
    background-color: #f5f6fe;
    border: 1px solid #fa8c16;
    border-radius: 8px;
    margin-left: 24px;
    margin-right: 24px
}

@media (min-width:768px) {
    .pageForm__plate {
        background-color: #fff;
        border-color: transparent;
        display: inline-flex
    }
}

.pageForm__inner {
    background-color: #ff6c17;
    border-radius: 24px
}

@media (min-width:768px) {
    .pageForm__inner {
        background-color: transparent
    }
}

.pageForm__title {
    color: #fff
}

@media (min-width:768px) {
    .pageForm__title {
        text-align: center
    }
}

.pageForm__form {
    background-color: #fff;
    border-radius: 16px;
    max-width: 904px
}

.pageForm__formInner {
    grid-gap: 8px;
    display: grid;
    max-width: 265px
}

@media (min-width:768px) {
    .pageForm__formInner {
        grid-gap: 16px;
        grid-template-columns: repeat(2, 1fr);
        max-width: 352px
    }
}

@media (min-width:992px) {
    .pageForm__formInner {
        grid-template-columns: repeat(4, 1fr);
        max-width: 720px
    }
}

.pageForm__formButton {
    width: 100%
}

.pageForm__fieldset {
    max-width: 320px
}

.pageForm__submitBtn {
    width: 265px
}

@media (max-width:767.98px) {
    .pageForm__submitBtn {
        padding-left: 8px;
        padding-right: 8px
    }
}

@media (min-width:768px) {
    .pageForm__submitBtn {
        width: 352px
    }
}

@media (min-width:992px) {
    .pageForm__submitBtn {
        width: 295px
    }
}

.radioBtn_error .radioBtn__label {
    border-color: #f40000
}

.radioBtn__field {
    height: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    visibility: hidden;
    width: 0
}

.radioBtn__label {
    align-items: center;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px #222;
    color: #222;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-size: 25px;
    font-weight: 600;
    height: 100%;
    justify-content: start;
    line-height: 1.6;
    min-height: 72px;
    padding: 16px 24px;
    text-align: left;
    transition: box-shadow .2s linear, color .2s linear, background-color .2s linear;
    user-select: none;
    width: 100%
}

@media (min-width:768px) {
    .radioBtn__label {
        flex-direction: column;
        padding: 24px
    }
}

@media (min-width:992px) {
    .radioBtn__label {
        border-radius: 16px;
        font-size: 35px;
        min-height: 132px;
        padding: 24px
    }
}

.radioBtn__txt {
    margin-right: 16px;
    min-width: 80px
}

@media (min-width:768px) {
    .radioBtn__txt {
        margin-right: 0;
        text-align: center
    }
}

.radioBtn__smallTxt {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.429
}

.radioBtn__field:focus-visible+.radioBtn__label {
    box-shadow: inset 0 0 0 4px #fab164
}

@media (hover:hover) and (pointer:fine) {
    .radioBtn__field:hover+.radioBtn__label {
        box-shadow: inset 0 0 0 4px #fab164
    }
}

.radioBtn__field:active+.radioBtn__label,
.radioBtn__field:checked+.radioBtn__label {
    background-color: #fff7ef;
    box-shadow: inset 0 0 0 4px #fa8c16
}

.radioBtn__field:active+.radioBtn__label .radioBtn__vector,
.radioBtn__field:checked+.radioBtn__label .radioBtn__vector {
    color: #feddb9
}

.ctaBlock {
    backdrop-filter: blur(2px);
    background-color: #ff6c17;
    bottom: 0;
    display: flex;
    position: fixed;
    transition: transform .3s linear;
    z-index: 10
}

.ctaBlock_hide {
    transform: translateY(101%)
}

.ctaBlock__btn {
    text-transform: uppercase;
    width: 283px
}

.ctaBlock__btn svg {
    fill: currentColor;
    height: 16px;
    width: 16px
}

.processBar {
    background-color: #f0f3f5;
    border-radius: 16px;
    height: 24px;
    z-index: 1
}

.processBar__inner {
    animation-fill-mode: forwards;
    animation-name: loadingProgress;
    animation-timing-function: linear;
    background-color: #52c41a;
    border-radius: 16px;
    color: #fff;
    font-size: 12px;
    left: 0;
    line-height: 1.334;
    position: absolute;
    top: 0;
    transform: translateX(-100%)
}

@keyframes loadingProgress {
    0% {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(0)
    }
}

.topBar {
    background-color: #383838
}

@media (min-width:992px) {
    .topBar__advertorial {
        left: 50%;
        position: absolute;
        top: 32px;
        transform: translateX(-50%)
    }
}

.stepWrap__grid {
    grid-gap: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%
}

@media (min-width:375px) {
    .stepWrap__grid {
        max-width: 288px
    }
}

@media (min-width:992px) {
    .stepWrap__grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 720px
    }

    .stepWrap__grid_seniorStep {
        grid-template-columns: repeat(2, 1fr);
        max-width: 352px
    }
}

.stepWrap__grid_threeItems {
    grid-template-columns: repeat(12, 1fr)
}

@media (min-width:992px) {

    .stepWrap__grid_sixItems,
    .stepWrap__grid_threeItems {
        grid-template-columns: repeat(3, 1fr);
        max-width: 536px
    }

    .stepWrap__grid_sixItems {
        grid-template-rows: auto
    }
}

.stepWrap__grid_threeItems .stepWrap__item {
    grid-column: span 6
}

.stepWrap__grid_threeItems .stepWrap__item:nth-child(3) {
    grid-column: 4/10
}

@media (min-width:992px) {

    .stepWrap__grid_threeItems .stepWrap__item,
    .stepWrap__grid_threeItems .stepWrap__item:nth-child(3) {
        grid-column: auto
    }
}

.stepWrap__head {
    max-width: 327px
}

@media (min-width:576px) {
    .stepWrap__head {
        max-width: 504px
    }
}

@media (min-width:992px) {
    .stepWrap__head {
        max-width: 720px
    }
}

.stepWrap__discountImg {
    max-width: 100%
}

@media (min-width:375px) {
    .stepWrap__discountImg {
        max-width: 288px
    }
}

@media (min-width:576px) {
    .stepWrap__discountImg {
        max-width: 328px
    }
}

@media (min-width:992px) {
    .stepWrap__discountImg {
        max-width: 360px
    }
}

.stepWrap__inputGrid {
    grid-gap: 16px;
    display: grid;
    width: 100%
}

@media (min-width:375px) {
    .stepWrap__inputGrid {
        max-width: 288px
    }
}

@media (min-width:576px) {
    .stepWrap__processBar {
        max-width: 366px
    }
}

.stepWrap__controls {
    width: 100%
}

@media (min-width:375px) {
    .stepWrap__controls {
        max-width: 288px
    }
}

@media (min-width:768px) {
    .stepWrap__controls_full {
        max-width: none
    }
}

.stepWrap__mobileFullBtn {
    width: 100%
}

@media (min-width:768px) {
    .stepWrap__mobileFullBtn {
        width: auto
    }
}

@media (min-width:1200px) {
    .defaultSlider {
        --maxWidth: 1190px
    }

    .defaultSlider .splide__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%
    }
}

.reorderedBlocks {
    display: flex;
    flex-direction: column
}

.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("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none'%3E%3Cpath fill='%23BDBDBD' d='m11.25 12.2 4.05 4.05 1.2-1.2L12.45 11l4.05-4.05-1.2-1.2-4.05 4.05L7.2 5.75 6 6.95 10.05 11 6 15.05l1.2 1.2 4.05-4.05Z'/%3E%3Cpath fill='%23BDBDBD' fill-rule='evenodd' d='M.75 11C.75 5.15 5.4.5 11.25.5s10.5 4.65 10.5 10.5-4.65 10.5-10.5 10.5S.75 16.85.75 11Zm1.5 0c0 4.95 4.05 9 9 9s9-4.05 9-9-4.05-9-9-9-9 4.05-9 9Z' clip-rule='evenodd'/%3E%3C/svg%3E");
        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
}

.l11EvMyiLBNsgRvl3k1W {
    color: #f5222d;
    margin-top: 4px;
    padding-left: 16px
}

.ols__hye4LyhlGxZWoNH {
    color: #ff6c17
}

.JWDBfR5rIPADc1e9wvIb {
    align-items: center;
    border: 1px solid transparent;
    display: flex;
    height: 56px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%
}

@media (max-width:320px) {
    .JWDBfR5rIPADc1e9wvIb {
        padding-left: 8px
    }
}

.Oc3THITAWl9kR7WC129Z {
    opacity: .5;
    pointer-events: none
}

.R0YcC164dPR72pA4XwP6 {
    margin-right: 10px
}

@media (max-width:320px) {
    .R0YcC164dPR72pA4XwP6 {
        margin-right: 4px
    }
}

.KPMfrHNxBYk0hXKF5_qB {
    margin-left: 10px
}

.Iob3UHQgFpCwcEbB1CD_ {
    height: 100%;
    width: 100%
}

: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:992px) {
    .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: ""
}

.jLKoOOMKXS8H1IY7JyuG {
    font-size: 14px;
    font-weight: 500;
    left: 0;
    line-height: 17px;
    margin-left: 2px;
    position: absolute;
    top: 19px;
    transition: top .3s;
    white-space: nowrap;
    z-index: 0
}

.yyd0oGUuuDYKvqdbAso6 {
    font-size: 11px;
    font-weight: 500;
    line-height: 13px;
    top: 3px
}

.a_aLA3Qcx1LQ7ChCKq1U {
    color: #909090
}

.YIkKUOrTi7xiJfvK46FZ {
    color: #222
}

.hDcrQut1RFleRt7SMfyP {
    color: #ff6c17
}

.xKn6pdq60T0QzsVcZCzw {
    height: 100%;
    position: relative;
    width: 100%
}

.xKn6pdq60T0QzsVcZCzw label {
    margin: 0;
    z-index: 0
}

.xKn6pdq60T0QzsVcZCzw input {
    margin: 0;
    max-width: 1000px;
    padding: 0;
    position: relative;
    z-index: 1
}

.SEYQRVnIYhF3lssAFPZo {
    display: none
}

.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
    }
}

.h27HVFrHo3feuU6uNI0s {
    font-size: 16px;
    line-height: 1.5
}

.rtTwREtzNqmZB_uZblKa {
    height: 119px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: -66px;
    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
    }
}

.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
    }
}

.mdFXjZZUYS54nxkcKpeS {
    display: none
}

@media (min-width:1200px) {
    .mdFXjZZUYS54nxkcKpeS {
        display: initial;
        position: absolute;
        right: -125px;
        top: 12px
    }
}

.UeIzct8w1kfwK9Jj53ow {
    height: 100%;
    width: auto;
    z-index: 2
}

.rEh3THk1_MMaQYDphgkT .UeIzct8w1kfwK9Jj53ow {
    height: 630px
}

.j5k54As4BeOwlZti5k2b {
    display: none
}

@media (min-width:1200px) {
    .j5k54As4BeOwlZti5k2b {
        display: initial;
        position: absolute;
        right: -148px;
        top: 12px
    }
}

.xcnaGZ9rGCcVLELvjuSP {
    height: 630px;
    width: auto;
    z-index: 2
}

.t8gMue25j_o6gXASFsPA {
    color: #909090;
    z-index: 2
}

.Gul8f5sxtwbuoxQG2LRw {
    display: block;
    margin-right: 8px
}

.Gul8f5sxtwbuoxQG2LRw path {
    fill: #909090
}

.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
    }
}

.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,
    .AoHs1exdBbmtMkJXStH4[data-state=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: #ff6c17;
    --btnBorderWidth: 1px;
    --btnBorderColor: #c1ccf9;
    --btnOutlineColor: transparent;
    --btnBackgroundColor: #fff
}

@media not all and (hover:none) {

    .ZfVDEwSQP0c8KyoOMzhT:hover,
    .ZfVDEwSQP0c8KyoOMzhT[data-state=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: #ff6c17
}

.ZfVDEwSQP0c8KyoOMzhT:disabled,
.ZfVDEwSQP0c8KyoOMzhT[data-state=disabled],
.ZfVDEwSQP0c8KyoOMzhT[disabled] {
    --btnTextColor: #6d87f1;
    --btnBorderColor: #e9e9e9
}

.t4Z3cct7Vlz9ewVvUqvz {
    --btnTextColor: #ff6c17;
    --btnBorderWidth: 1px;
    --btnBorderColor: transparent;
    --btnOutlineColor: transparent;
    --btnBackgroundColor: #fff
}

@media not all and (hover:none) {

    .t4Z3cct7Vlz9ewVvUqvz:hover,
    .t4Z3cct7Vlz9ewVvUqvz[data-state=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
}