/*HOWTO*/
:root {
    --howto-txt-desk: clamp(10px, calc(10px + (100vw - 640px) * 12 / 1280), 22px);
    --howto-txt-mob: 14px;

    --howto-txt-desk-big: clamp(14px, calc(14px + (100vw - 640px) * 14 / 1280), 28px);
    --howto-txt-mob: 14px;
}

#howto {
    position: relative;
    background-color: #000;
    margin-top: calc(var(--point-width)/3);
    background: url('/expert2026/buy/img/howto.jpg') bottom center no-repeat;
    background-size: auto 100%;
}

#howto .title-block-white {
    padding: calc(var(--point-width)/7);
}

#howto-canvas {
    width: 80%;
    max-width: 1350px;
    margin: auto;
    display: flex;
}

#howto-left {
    width: 40%;
}

#howto-left #buy {
    width: 100%;
    padding: calc(var(--point-width)/10) 0;
    border: solid 2px #fff;
    text-align: center;
    color: #fff;
    font-size: var(--howto-txt-desk);
    line-height: calc(var(--point-width)/12) 0;
    border-radius: 40px;
}

.price {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: var(--howto-txt-desk);
}

.price .price-top {
    line-height: calc(var(--point-width)/4);
    margin-top: calc(var(--point-width)/5);
}

.price .price-bottom {
    background-color: #fff;
    color: var(--orange-color);
    border-radius: 40px;
    padding: calc(var(--point-width)/15);
    width: 100%;
    box-sizing: border-box;
    font-size: var(--howto-txt-desk-big);
}

#howto-left #buy span {
    font-size: calc(var(--howto-txt-desk-big)/0.7);
    font-weight: 800;
}

#howto-mid {
    width: 20%;
    font-size: 60px;
    color: #fff;
    font-weight: 800;
    text-align: center;
    line-height: calc(var(--point-width)/2.4);
}

#howto-right {
    width: 40%;
    color: #fff;
    font-size: var(--howto-txt-desk-big);
    text-align: center;
    display: flex;
    flex-direction: column;
}

#howto-right-top {
    padding: calc(var(--point-width)/10) 0;
    line-height: calc(var(--point-width)/12) 0;
}

#howto-right-top span {
    font-size: var(--howto-txt-desk-big);
    font-weight: 800;
}

#howto-right-bottom {
    display: flex;
    justify-content: center;
}

#howto-right-bottom img {
    width: calc(var(--point-width)/1.2);
    margin-top: calc(var(--point-width)/15);
}

@media (min-width: 641px) {
    #howto {
        padding-bottom: 40px;
    }

    #howto-left #buy {
        font-size: var(--howto-txt-desk);
    }

    #howto-canvas {
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    #howto-canvas {
        flex-direction: column;
    }

    #howto-left {
        width: 100%;
    }

    #howto-mid {
        width: 100%;
        transform: rotate(90deg);
        padding: calc(var(--point-width)/4) 0;
    }

    #howto-right {
        width: 100%;
        flex-direction: column-reverse;
        padding-bottom: 40px;
    }

    .price .price-top {
        margin-top: 0 !important;
    }

    #howto-left #buy {
        font-size: var(--howto-txt-mob);
    }
}

/*HOWTO END*/