@font-face {
    font-family: "Inter";
    src:local('Inter'),
    url("/fonts/Inter-Regular.woff2") format("woff2"),
    url("/fonts/Inter-Regular.woff") format("woff"),
    url("/fonts/Inter-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Inter";
    src:local('Inter'),
    url("/fonts/Inter-Medium.woff2") format("woff2"),
    url("/fonts/Inter-Medium.woff") format("woff"),
    url("/fonts/Inter-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src:local('Inter'),
    url("/fonts/Inter-SemiBold.woff2") format("woff2"),
    url("/fonts/Inter-SemiBold.woff") format("woff"),
    url("/fonts/Inter-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src:local('Inter'),
    url("/fonts/Inter-Bold.woff2") format("woff2"),
    url("/fonts/Inter-Bold.woff") format("woff"),
    url("/fonts/Inter-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Inter";
    src:local('Inter'),
    url("/fonts/Inter-ExtraBold.woff2") format("woff2"),
    url("/fonts/Inter-ExtraBold.woff") format("woff"),
    url("/fonts/Inter-ExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* reset css */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: 'Inter', sans-serif;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


html,body{
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* end reset css */



-moz-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar{
    width: 6px;
}
body::-webkit-scrollbar-track{
    background: #000;
}

body::-webkit-scrollbar-thumb{
    background: #3a3a3a;
}

body{
    background: #FAFAF9;
    padding: 82px 0 0;
}

*{
    box-sizing: border-box;
}

:target {
    scroll-margin-top: 82px;
}

.h1{
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    color: #1C1C12;
    margin: 0 0 24px;
}


.h2{
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #1C1C12;
    margin: 0 0 18px;
}


.text{
    color: #1C1C12;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 141%;
    margin: 0 0 30px;
}

.text-center{
    text-align: center;
}

.text-white{
    color: #fff;
}

.header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 18px 0;
    background: #151515;
    z-index: 2;
    border-bottom: 1px solid #FFFF01;
}

.header-wrap{
    display: flex;
    align-items: center;
    max-width: 1808px;
    margin: 0 auto;
    padding: 0 34px;
}

.header__logo-box{
 margin: 0 20px 0 0;
}

.header__list-items{
    display: flex;
    align-items: center;
}

.header__list-item{
    margin: 0 18px;
}

.header__list-item-link{
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    color: #FFF;
    text-decoration: none;
    transition: all 0.5s ease-out;
}

.show-small-mob a{
    display: none;
}

.header__list-item-link:hover{
    color: #FFFF01;
}

.button-action{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #151515;
    padding: 10px;
    width: 260px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px;
    text-decoration: none;
    border-style: solid;
    transition: all 0.5s ease-out;
}


.button-action--yellow{
    background: #FFFF01;
    border-color: #FFFF01;
}

.button-action--yellow:hover{
    background: #EE0;
    border-color: #EE0;
}

.button-action:disabled{
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}


.button-action--blue{
    background: #4690FF;
    border-color: #4690FF;
    color: #fff;
}

.button-action--blue:hover{
    background: #fff;
    color: #4690FF;
}


.button-action--black{
    background: #151515;
    border-color: #151515;
    color: #ffffff;
}


.button-action--black:hover{
    background: transparent;
    color: #151515;
}

.mobile-menu-toggle {
    display: none;
}

.header .button-action{
    height: 46px;
    width: 190px;
    font-size: 15px;
    padding: 8px 12px;
}

.header-button-wrap{
    margin: 0 0 0 auto;
}


.section-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 68px 0 68px;
    max-width: 1740px;
    margin: auto;
}

.section-wrap--offset-left{
    padding-left: 180px;
}


.section-front-img{
    position: relative;
    right: -140px;
    margin: 0 0 0 -140px;
    border-radius: 16px;
}


.section-front{
    overflow: hidden;
    background: #fff;
}


.section-front-text{
    flex-shrink: 0;
    max-width: 740px;
}

.section-front-button-wrap{
    margin: 50px 0;
}

.section-benefits{
    padding: 116px 0 50px;
    background-image: url(../img/background-benefits-2.png), url(../img/background-benefits.png);
    background-position: center bottom, left top;
    background-size: contain, cover;
    background-repeat: no-repeat, no-repeat;
}

.benefits-wrap{
    max-width: 1173px;
    margin: auto;
}

.benefits-switch{
    display: flex;
    justify-content: center;
    background: #F2F2F0;
    max-width: max-content;
    margin: 0 auto 40px;
    border-radius: 89px;
}

.benefits-switch-item,
.benefits-switch-item-mob{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #1C1C12;
    padding: 19px 30px;
    cursor: pointer;
    border-radius: 89px;
    opacity: 1;
    transition: all 0.5s ease-out;
}

.benefits-switch-item svg,
.benefits-switch-item-mob svg{
    margin: 0 10px 0 0;
}

.benefits-switch-item.active,
.benefits-switch-item-mob{
    background: #fff;
    box-shadow: 8px 9px 29.1px 0 rgba(5, 7, 37, 0.08);
}

.benefits-switch-item-mob{
    display: none;
}

.benefits-switch-content-item{
    display: none;
    transition: all 0.3s ease-out;
}

.benefits-switch-content-item.active{
    display: block;
}

.hide-item-slow{
    opacity: 0;
}

.section-customer-service{
    background: #fff;
    overflow: hidden;
}


.customer-service-img{
    position: relative;
    left: -280px;
    margin: 0 -140px 0 0;
}

.section-customer-service-text{
    max-width: 630px;
}

.list__item{
    position: relative;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 141%;
    color: #1C1C12;
    margin: 0 0 16px;
    padding: 0 0 0 37px;
}

.list__item:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 3px;
    margin: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #EEEE02;
}


.list__item:before{
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 4px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    z-index: 1;
    transform: rotate(-45deg);
}

.section-customer-service-button-wrap{
    margin: 40px 0;
}

.section-additional-protection{
    padding: 24px 0;
    background: #fff;
}

.section-additional-protection-text{
    max-width: 600px;
}

.section-wrap--between{
    justify-content: space-between;
    max-width: 1560px;
}


.section-central-system{
    padding: 24px 0 100px;
}

.central-system-img,
.additional-protection-img{
    height: auto;
}

.section-central-system-text{
    width: 100%;
    max-width: 630px;
    margin: 0 0 0 50px;
}

.section-central-system-button-wrap{
    margin: 30px 0;
}

/* Pricing section */
.section-pricing {
    background: #FAFAF9;
}

.section-pricing .section-wrap {
    padding: 56px 24px 64px;
}

.section-pricing__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-pricing__head {
    text-align: center;
    margin-bottom: 36px;
}

.section-pricing__title {
    margin: 0 0 12px 0;
}

.section-pricing__lead {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #1C1C12;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-pricing__body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.section-pricing__main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-pricing__subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #1C1C12;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
}

.section-pricing__includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.45;
    color: #1C1C12;
}

.section-pricing__includes-grid li {
    padding-left: 20px;
    position: relative;
}

.section-pricing__includes-grid li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #151515;
}

.section-pricing__benefits-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.5;
    color: #1C1C12;
}

.section-pricing__benefits-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.section-pricing__benefits-list li:last-child {
    margin-bottom: 0;
}

.section-pricing__benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #151515;
}

.section-pricing__storage-info {
    padding-top: 4px;
}

.section-pricing__storage-correlation {
    margin: 0 0 6px 0;
    font-size: 18px;
    line-height: 1.5;
    color: #1C1C12;
}

.section-pricing__storage-example {
    margin: 0;
    font-size: 13px;
    color: #5a5a5a;
    line-height: 1.45;
}

.section-pricing__how-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.5;
    color: #1C1C12;
}

.section-pricing__how-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.section-pricing__how-list li:last-child {
    margin-bottom: 0;
}

.section-pricing__how-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #151515;
}

/* Order card (sticky calculator) */
.section-pricing__order {
    position: sticky;
    top: 100px;
}

.section-pricing__order-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.section-pricing__order-title {
    font-size: 16px;
    font-weight: 700;
    color: #1C1C12;
    margin: 0 0 8px 0;
}

.section-pricing__order-price {
    font-size: 18px;
    line-height: 1.4;
    color: #5a5a5a;
    margin: 0 0 20px 0;
}

.section-pricing__field {
    margin-bottom: 22px;
}

.section-pricing__field:last-of-type {
    margin-bottom: 18px;
}

.section-pricing__field-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.section-pricing__label {
    font-size: 18px;
    font-weight: 600;
    color: #1C1C12;
}

.section-pricing__value {
    font-size: 16px;
    font-weight: 700;
    color: #1C1C12;
}

.section-pricing__slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #E5E5E5;
    border-radius: 3px;
    outline: none;
}

.section-pricing__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #151515;
    cursor: pointer;
    border: none;
}

.section-pricing__slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #151515;
    cursor: pointer;
    border: none;
}

.section-pricing__storage-line {
    margin: 8px 0 0 0;
    font-size: 13px;
    color: #5a5a5a;
}

.section-pricing__hint {
    margin: 0 0 24px 0;
    padding: 14px 16px;
    background: #F5F5F5;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.45;
    color: #1C1C12;
}

.section-pricing__total {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
}

.section-pricing__total-label {
    font-size: 18px;
    font-weight: 600;
    color: #1C1C12;
}

.section-pricing__total-amount {
    font-size: 22px;
    font-weight: 800;
    color: #1C1C12;
}

.section-pricing__total-currency {
    font-size: 18px;
    font-weight: 600;
    color: #5a5a5a;
}

.section-pricing__btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-pricing__wallet-desc {
    margin-bottom: 20px;
}

.section-pricing__wallet-data {
    text-align: left;
    width: 100%;
    margin-bottom: 24px;
}

.section-pricing__wallet-amount,
.section-pricing__wallet-address {
    margin-bottom: 8px;
}

.section-pricing__wallet-code {
    display: block;
    word-break: break-all;
    font-size: 18px;
    padding: 12px;
    background: #F5F5F5;
    border-radius: 8px;
    margin-top: 4px;
}

.modal--pricing {
    opacity: 0;
    pointer-events: none;
}

.modal--pricing.is-open {
    opacity: 1;
    pointer-events: all;
}

.body-pricing-modal-open {
    overflow: hidden;
}

.section-form{
    position: relative;
    background: #2E2E2E;
    padding: 122px 0;
    overflow: hidden;
}

.section-form-wrap{
    max-width: 654px;
    margin: auto;
}

.form-wrap{
    max-width: 528px;
    margin: auto;
}


.item-form{
    position: relative;
    display: flex;
    margin: 28px 0;
}

.section-form-wrap .button-action{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.input{
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    padding: 23px 26px;
    border-radius: 10px;
    background: #3E3E3E;
    border: 1px solid transparent;
    outline: none;
    color: #FFF;
    transition: all 0.3s ease-out;
}


.input:-webkit-autofill,
.input:-webkit-autofill:hover,
.input:-webkit-autofill:focus,
.input:-webkit-autofill:active{
    transition: background-color 5000s ease-in-out 0s;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

input:-internal-autofill-selected{
    color: #fff !important;
}


.input::placeholder{
    opacity: 1;
    color: #FFF;
}

.input:hover,
.input:focus{
    border-color: #696969;
}

.input.field-error{
    border-color: #FF4141;
}

.error-text{
    position: absolute;
    left: 0;
    bottom: -20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FF4141;
}


.form-separator{
    width: 100%;
    height: 1px;
    background: #fff;
    opacity: 0.3;
    margin: 40px 0;
}

.modal{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.44);
    pointer-events: none;
    transition: all 0.3s ease-out;
    z-index: 2;
}

.show-modal-success{
    overflow: hidden;
}

.show-modal-success .modal{
    opacity: 1;
    pointer-events: all;
}

.modal-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 32px;
    width: 100%;
    max-width: 652px;
    background: #fff;
    height: 320px;
    border-radius: 11px;
}

.section-form-img{
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.section-form-img-2{
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
}


@media (max-width: 1620px){
    .section-wrap--between{
        max-width: 1340px;
    }

    .central-system-img,
    .additional-protection-img{
        width: 700px;
    }

    .customer-service-img,
    .section-front-img{
        width: 880px;
        height: auto;
    }

    .customer-service-img{
        left: -200px;
        margin: 0 -100px 0 0;
    }

    .section-front-img{
        right: -100px;
        margin: 0 0 0 -100px;
    }

    .section-form-img{
        width: 403px;
        height: auto;
    }

    .section-form-img-2{
        width: 345px;
        height: auto;
    }
}


@media (max-width: 1399px){
    body{
        padding-top: 86px;
    }
    :target{
        scroll-margin-top: 86px;
    }
    .h1{
        font-size: 22px;
    }
    .h2{
        font-size: 20px;
        margin: 0 0 16px;
    }
    .text{
        font-size: 14px;
        margin: 0 0 16px;
    }
    .header{
        padding: 20px 0;
    }
    .header-wrap{
        max-width: 1290px;
    }
    .header__logo-box{
        width: 32px;
        height: 34px;
        margin: 0 10px 0 0;
    }
    .header__logo-img{
        width: 100%;
        height: auto;
    }
    .header__list-item {
        margin: 0 13px;
    }
    .header__list-item-link{
        font-size: 14px;
    }

    .button-action{
        height: 46px;
        font-size: 14px;
        width: 176px;
    }

    .header .button-action{
        width: 205px;
    }

    .section-wrap{
        padding: 60px 0 60px;
    }

    .section-front-text{
        max-width: 535px;
    }

    .section-front-img{
        width: 760px;
        right: -160px;
        margin: 0 0 0 -160px;
    }

    .section-benefits{
        padding: 84px 0 80px;
    }

    .benefits-switch-content-item__img{
        display: block;
        width: 796px;
        height: auto;
        margin: auto;
    }

    .benefits-switch-item{
        font-size: 14px;
        line-height: 100%;
        padding: 19px 34px;
    }

    .benefits-switch-content-item{
        min-height: 580px;
    }

    .customer-service-img{
        width: 760px;
        height: auto;
        left: -100px;
        margin: 0;
    }

    .section-customer-service-text{
        max-width: 420px;
    }

    .section-customer-service .section-wrap{
        padding: 10px 0 68px;
    }

    .list__item{
        font-size: 14px;
        line-height: 20px;
    }

    .list__item:after{
        top: -3px;
    }

    .list__item:before{
        top: -2px;
    }

    .section-customer-service-button-wrap{
        margin: 34px 0;
    }

    .section-wrap--between{
        max-width: 1060px;
    }

    .section-additional-protection-text{
        max-width: 420px;
        margin: 0 150px 0 0;
    }

    .additional-protection-img {
        width: 510px;
    }

    .central-system-img{
        width: 540px;
    }

    .section-central-system-text{
        max-width: 420px;
        margin: 0 0 0 150px;
    }

    .central-system-img{
        height: 440px;
    }

    .section-form{
        padding: 100px 0;
    }

    .form-wrap{
        max-width: 440px;
    }

    .input{
        font-size: 14px;
        padding: 15px 26px;
    }


    .modal-wrap{
        max-width: 520px;
        height: 270px;
    }

    .section-pricing__lead {
        font-size: 14px;
    }
    .section-pricing__subtitle {
        font-size: 16px;
    }
    .section-pricing__benefits-list,
    .section-pricing__storage-correlation,
    .section-pricing__how-list {
        font-size: 14px;
    }
    .section-pricing__storage-example,
    .section-pricing__storage-line,
    .section-pricing__hint {
        font-size: 13px;
    }
    .section-pricing__order-title {
        font-size: 16px;
    }
    .section-pricing__order-price,
    .section-pricing__label,
    .section-pricing__total-label,
    .section-pricing__total-currency {
        font-size: 14px;
    }
    .section-pricing__value {
        font-size: 15px;
    }
    .section-pricing__total-amount {
        font-size: 20px;
    }
}

@media (max-width: 1199px){
    body{
        padding-top: 86px;
    }
    :target{
        scroll-margin-top: 86px;
    }
    .section-front-img{
        width: 560px;
    }
    .customer-service-img{
        width: 530px;
    }

    .section-wrap--between{
        max-width: 900px;
    }

    .central-system-img{
        width: 480px;
        height: 380px;
    }

    .additional-protection-img{
        width: 440px;
        height: auto;
    }

    .section-central-system-text{
        margin: 0 0 0 60px;
    }

    .section-additional-protection-text{
        margin: 0 80px 0 0;
    }

    .list__item:before{
        top: -6px;
        width: 7px;
        left: 5px;
    }


    .section-form-img{
        width: 290px;
    }

    .section-customer-service-text{
        order: -1;
    }

    .section-customer-service .section-wrap{
        flex-wrap: wrap;
    }

    .section-customer-service-text{
        width: 100%;
        max-width: 700px;
        margin: auto;
    }

    .customer-service-img{
        right: -200px;
        left: auto;
        top: -140px;
        margin: 0 0 -140px;
    }

    .section-customer-service .section-wrap{
        padding: 10px 0 20px;
    }

    .section-wrap--between{
        flex-wrap: wrap;
        max-width: 700px;
    }

    .section-additional-protection-img-box{
        width: 100%;
    }

    .section-additional-protection{
        padding: 0;
    }

    .additional-protection-img{
        display: block;
        margin: 0 0 0 auto;
    }

    .section-central-system-img-box{
        order: 1;
        width: 100%;
    }

    .section-central-system{
        padding: 0 0 60px;
    }

    .central-system-img{
        display: block;
        margin: -20px 0 0 auto;
    }

    .section-central-system-text{
        margin: 0;
    }

    .section-form{
        padding: 200px 0;
    }

    .input{
        border-radius: 6px;
    }

    .button-action{
        border-radius: 6px;
    }

    .section-form-img-2{
        width: 310px;
        right: -50px;
    }

}


@media (max-width: 991px){
    .mobile-menu-toggle {
        display: block;
        background: transparent;
        border: none;
        outline: none;
        height: 20px;
        padding: 0;
        cursor: pointer;
        position: relative;
        z-index: 5;
        margin: 0 0 0 34px;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 28px;
        height: 4px;
        background: #fff;
        border-radius: 2px;
    }

    .mobile-menu-toggle:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 28px;
        height: 4px;
        margin: auto;
        background: #fff;
        border-radius: 1px;
        transition: all 0.3s ease-out;
    }

    .mobile-menu-toggle:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 4px;
        margin: auto;
        background: #fff;
        border-radius: 1px;
        transition: all 0.3s ease-out;
    }

    .menu-open {
        overflow: hidden;
    }

    .menu-open .mobile-menu-toggle span {
        visibility: hidden;
    }

    .menu-open .mobile-menu-toggle:before {
        transform: rotate(45deg);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        /*width: 20px;*/
    }

    .menu-open .mobile-menu-toggle:after {
        transform: rotate(-45deg);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        /*width: 20px;*/
    }

    .header__list-items{
        position: absolute;
        width: 100%;
        left: 0;
        top: 86px;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        transition: height 0.3s ease-out;
        background: #262626;
    }

    .menu-open .header .header__list-items {
        height: 50vh;
        z-index: 4;
        overflow: auto;
    }

    .header__list-item{
        margin: 27px 13px;
    }

    .header__list-item:first-child{
        padding: 50px 0 0;
    }

    .header__list-item:last-child{
        padding: 0 0 50px;
    }

    .header__list-item-link{
        font-size: 18px;
        line-height: 1.4;
    }

    .section-front .section-wrap{
        flex-wrap: wrap;
        padding: 150px 0 60px;
    }

    .section-front-text{
        text-align: center;
    }

    .section-front-button-wrap{
        display: flex;
        justify-content: center;
        margin: 50px auto 120px;
    }

    .section-front-img{
        width: 100%;
        max-width: 740px;
        padding: 0 20px;
        margin: auto;
        right: 0;
    }

    .section-front-img-box{
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .benefits-switch-content-item__img{
        width: 663px;
        margin: 10px auto 0;
    }

    .benefits-switch-item{
        padding: 14px 29px;
    }

    .benefits-switch-content-item{
        min-height: 480px;
    }

    .section-benefits{
        padding: 84px 0 40px;
    }
    .section-form-img-2{
        width: 260px;
        right: -100px;
    }
}


@media (max-width: 767px){
    .menu-open .header .header__list-items{
        height: calc(100vh - 86px);
    }
    .header__list-item:first-child{
        margin: auto 13px 27px;
    }
    .header__list-item:last-child{
        margin: 27px 13px auto;
    }
    .section-wrap,
    .section-customer-service .section-wrap{
        padding: 60px 10px;
    }
    .section-pricing .section-wrap{
        padding: 44px 16px 56px;
    }
    .section-pricing__inner{
        padding: 0;
    }
    .section-pricing__body{
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .section-pricing__main{
        gap: 22px;
    }
    .section-pricing__order{
        position: static;
    }
    .section-pricing__order-card{
        padding: 22px 20px;
    }
    .section-pricing__head{
        margin-bottom: 28px;
    }
    .section-pricing__lead{
        font-size: 14px;
    }
    .section-pricing__subtitle{
        font-size: 16px;
    }
    .section-pricing__total-amount{
        font-size: 20px;
    }
    .section-pricing__includes-grid{
        grid-template-columns: 1fr;
    }

    .benefits-switch-content{
        padding: 0 10px;
    }

    .benefits-switch-content-item__img{
        max-width: 100%;
    }

    .benefits-switch-item{
        font-size: 12px;
    }

    .section-form-img{
        width: 218px;
    }

    .section-form-img-2{
        width: 218px;
        right: -20px;
        bottom: -100px;
    }
}


@media (max-width: 575px){
    .h1{
        font-size: 22px;
        max-width: 100%;
    }
    .h2{
        font-size: 18px;
        margin: 0 0 14px;
    }
    .text{
        font-size: 14px;
    }
