/*CODE LANDING D'ORIGINE*/

*,
:before,
:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
}

html {
    font-size: 62.5%;
}

body {
    height: 100%;
    font-family: arial, sans-serif;
}

.d-none {
    display: none;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/loading.svg') center center no-repeat rgba(0, 0, 0, 0.8);
    display: none;
}

.loading.show {
    display: block;
}


.webt-icon {
    width: 220px;
    height: 220px;
    margin: auto;
    position: relative;
}

.progress_arrow {
    opacity: 0;
    transition: all 1s;
    -webkit-animation: bounceUpDown 1s ease-in-out infinite;
    -o-animation: bounceUpDown 1s ease-in-out infinite;
    animation: bounceUpDown 1s ease-in-out infinite;
}

.webt-icon .progress_arrow {
    width: 135px;
    height: auto;
}

.webt-icon__value {
    color: #14aeff;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    text-anchor: middle;
    font-size: 46px;
    font-weight: 600;
    top: 0;
    left: 0;
    transition: all 6s;
}

.icon-progress__bg {
    stroke: #e6e6e6;
    stroke-width: 10;
    fill: none;
}

.icon-progress__bg {
    fill: #fefefe;
    stroke: rgba(0, 0, 0, 0.15);
    stroke-width: 14px;
}

.meter-1 {
    stroke-dasharray: 800;
    stroke-dashoffset: 0;
    stroke: var(--progress-filled);
    stroke-width: 14px;
    fill: transparent;
    animation: progress-1 4s ease-out;
}


/** template animation **/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --bg-color: #fdfdfd;
    --text-color: #404040;

    --service-name: #09aa05;

    --icon-color: #09aa05;

    --menu-bg: #404040;

    --nav-bg: #fdfdfd;
    --nav-close: #404040;
    --nav-text: #404040;
    --nav-link: #09aa05;

    --proggress-text: #09aa05;
    --progress-bg: rgba(0, 0, 0, .15);
    --progress-filled: #09aa05;

    --title: #000;

    --input-border: #09aa05;
    ;
    --input-text: #404040;
    --input-icon: #404040;
    --input-icon-grey: #404040;
    --input-label: #09aa05;

    --input-border-focus: #09aa05;
    --input-icon-focus: #09aa05;
    --input-label-focus: #09aa05;
    --input-error: #FC5B53;

    --btn-bg: #09aa05;
    --btn-text: #fff;
    --btn-bg-disabled: #B3B6B7;
    --btn-text-disabled: rgba(0, 0, 0, .3);

    --btn-exit-bg: rgba(0, 0, 0, .1);
    --btn-exit: rgba(0, 0, 0, .6);

    --form-bottom: #000;

    --footer: #c0c0c0;

    --price: #c0c0c0;
}

*,
:before,
:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
}

html,
body {
    height: 100%;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.18;
    text-align: center;
}

body.rtl-text {
    direction: rtl;
}

.menu-btn {
    position: absolute;
    top: 16px;
    left: 24px;
    width: 32px;
    padding: 4px;
    margin-bottom: 20px;
    cursor: pointer;
}

.menu-btn div {
    height: 4px;
    background: var(--menu-bg);
    border-radius: 2px;
}

.menu-btn div + div {
    margin-top: 4px;
}

.service-name {
    position: absolute;
    top: 16px;
    left: 60px;
    right: 60px;
    color: var(--service-name);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.service-name img {
    display: block;
    width: 60px;
    height: auto;
    margin: 0 auto;
}

.nav {
    position: fixed;
    top: 0;
    left: -110%;
    bottom: 0;
    width: 100%;
    background: var(--nav-bg);
    padding: 48px 36px;
    color: var(--nav-text);
    text-align: center;
    transition: 0.5s ease;
    z-index: 999;
}

.nav.open {
    left: 0;
}

.nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    color: var(--nav-close);
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.nav-item {
    padding: 16px 0;
    font-size: 32px;
    font-weight: 700;
}

.nav-item a {
    color: var(--nav-link);
    text-decoration: none;
}

.steps {
    color: var(--proggress-text);
    font-size: 12px;
    line-height: 1.18;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.steps:after {
    content: '';
    display: table;
    clear: both;
}

.step {
    float: left;
    width: calc(50% - 4px);
    height: 8px;
    background: var(--progress-bg);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

.step + .step {
    margin-left: 8px;
}

.step:after {
    content: '';
    display: block;
    border-radius: 2px;
    width: 8px;
    height: 8px;
    background: var(--progress-filled);
    transition: 0.5s ease;
}

.step.filled:after {
    width: 100%;
}

.step + .step:after {
    content: none;
}

.step.filled + .step:after {
    content: '';
}

.rtl-text .steps {
    direction: rtl;
    text-align: right;
}

.rtl-text .step {
    float: right;
}

.rtl-text .step + .step {
    margin-left: 0;
    margin-right: 8px;
}

.title {
    color: var(--title);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 900;
    margin-bottom: 20px;
}

.webt-icon {
    width: 180px;
    height: 180px;
    margin: 0 auto 10px;
    position: relative;
}

.icon-progress {
    width: 100%;
    height: 100%;
    position: relative;
}

.icon-progress__bg {
    stroke-width: 14px;
    stroke: var(--progress-bg);
    fill: transparent;
}

.webt-icon .progress_arrow {
    width: 120px;
    height: auto;
    opacity: 0;
    transition: all 1s;
    animation: bounceUpDown 2s ease-in-out infinite;
}

@keyframes bounceUpDown {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(-5%);
    }

    100% {
        transform: translateY(0%);
    }
}

.webt-icon__value {
    color: var(--proggress-text);
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    font-size: 46px;
    font-weight: 600;
    top: 0;
    left: 0;
}

.meter-1 {
    stroke-dasharray: 800;
    stroke-dashoffset: 0;
    stroke: var(--progress-filled);
    stroke-width: 14px;
    fill: transparent;
    animation: progress-1 4s ease-out;
}

@keyframes progress-1 {
    from {
        stroke-dashoffset: 800;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.label {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 32px;
}

.rtl-text .label {
    text-align: right;
}

.btn {
    display: block;
    width: 100%;
    height: 60px;
    background: var(--btn-bg);
    border: none;
    border-radius: 8px;
    color: var(--btn-text);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 8px var(--btn-shadow);
}

.btn span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.6;
}

.btn[disabled],
.btn.disabled {
    background: var(--btn-bg-disabled);
    color: var(--btn-text-disabled);
    box-shadow: none;
}

.btn-exit {
    display: inline-block;
    padding: 5px;
    margin: 0 auto 15px;
    border-radius: 2px;
    background: var(--btn-exit-bg);
    color: var(--btn-exit);
    font-size: 10px;
    line-height: 1;
    text-decoration: none;
}

.form-bottom {
    margin-top: 24px;
    color: var(--form-bottom);
}

.form-bottom a {
    color: inherit;
    text-decoration: underline;
}

.rtl-text .form-bottom {
    text-align: right;
}

.langs {
    direction: ltr;
}

.lang {
    display: inline-block;
    border: 2px solid transparent;
    border-radius: 4px;
    margin: 10px 4px;
    padding: 2px 4px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.lang.active {
    border-color: var(--text-color);
}

.footer {
    color: var(--footer);
    font-size: 12px;
}

.footer.hidden {
    padding-top: 50vh;
}

.footer a {
    color: inherit;
}

.footer-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 6px;
}

.footer-content:after {
    content: '';
    clear: both;
    display: block;
}

.content-link {
    display: block;
    float: left;
    width: 33.33%;
    padding: 0 3px;
}

.content-link img {
    display: block;
    margin: 0 auto;
    max-width: 90px;
}

.footer-content__preview {
    display: none;
    border-radius: 4px;
    padding-bottom: 8px;
    overflow: hidden;
}

.footer-content__preview iframe {
    display: block;
    width: 300px;
    height: 200px;
    border: 0;
    margin: 0 auto;
}

.d-none {
    display: none;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/loading.svg') center center no-repeat rgba(0, 0, 0, 0.8);
    display: none;
}

.loading.show {
    display: block;
}


/* cyrillic-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* vietnamese */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0I5nvwU.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* vietnamese */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0I5nvwU.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* vietnamese */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0I5nvwUgHU.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0I5nvwU.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.meter-1_old {
    stroke: #00aaff;
    stroke-width: 10;
    fill: none;
    transition: stroke-dashoffset 0.2s ease;
}

.icon-progress__bg {
    stroke: #e6e6e6;
    stroke-width: 10;
    fill: none;
}

.webt-icon__value {
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.2s ease;
}

#mw_pin_code {
    display: block;
    width: 100%;
    height: 64px;
    background: var(--bg-color);
    border: 2px solid var(--input-border);
    border-radius: 8px;
    color: var(--input-text);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    transition: 0.5s ease;
}
