*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
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 {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
img{
    display: block;
    user-select: none;
    pointer-events: none;
}
ul, ol {
    list-style: none;
}
button, input, select, textarea {
    outline: none;
    border: none;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    background-color: transparent;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}
html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
input {
    border: none;
    background-color: transparent;
}
body {
    font-family: 'Nunito', sans-serif;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #F2F1EF;
}
main{
    position: relative;
    z-index: 9;
}
section{
    position: relative;
    padding: 50px 0;
    @media(max-width: 1200px){
        padding: 30px 0;
    }
    @media(max-width: 768px){
        padding: 20px 0;
    }
}
.wrapper{
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    @media(max-width: 1280px){
        padding: 0 20px;
    }
    @media(max-width: 575px){
        padding: 0 16px;
    }
}
.header__top{
    width: 100%;
    background-color: #E5E5E5;
    padding: 8px 0;
    @media(max-width: 1200px){
        display: none;
    }
}
.header__top-wrapper{
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    @media(max-width: 1280px){
        padding: 0 20px;
    }
    @media(max-width: 575px){
        padding: 0 16px;
    }
}
.header__time, .header__mail{
    display: flex;
    align-items: center;
    gap: 6px;
}
.header__time svg{
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}
.header__time{
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    color: #28710D;
}
.header__mail-icon{
    width: 24px;
    height: 24px;
}
.header__mail-icon svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.header__mail-link{
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    text-decoration: underline;
    transition: .3s ease-in-out;
    color: #000000;
}
.header__mail-link:hover{
    color: #28710D;
}
.header__main{
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    @media(max-width: 1280px){
        padding: 0 20px;
    }
    @media(max-width: 1200px){
        background-color: #E5E5E5;
    }
    @media(max-width: 768px){
        padding: 0 16px 0 0;
    }
}
.header__main .language{
    @media(max-width: 1200px){
        display: none;
    }
}
.header__logo{
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
}
.header__logo img{
    @media(max-width: 1200px){
        width: 70px;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
}
.header__nav{
    display: flex;
    align-items: center;
    gap: 30px;
    @media(max-width: 1280px){
        gap: 20px;
    }
    @media(max-width: 1200px){
        display: none;
    }
}
.header__nav-item{
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    transition: .3s ease-in-out;
}
.header__nav-item.header__nav-item--active{
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #28710D;
}
.header__nav-item:hover{
    color: #28710D;
}
.header__burger{
    display: none;
    @media(max-width: 1200px){
        display: block;
    }
}
.language{
    position: relative;
}
.language-dropdown{
    position: absolute;
    top: 100%;
    height: 0;
    overflow: hidden;
    transition: .3s ease-in-out;
    transform: translateY(8px);
    z-index: 999;
    width: 100%;
    border-radius: 15px;
    background-color: #FDFDFD;
    padding: 0 20px;
}
.language.open .language-dropdown{
    height: fit-content;
    padding: 15px 20px;
}
.language-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.language-list__item{
    width: 100%;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
}
.language-list__item.language-list__item--active:after{
    content: url("/static/images/language-arrow.svg");
    position: absolute;
    right: 0;
    top: 0;
    height: 24px;
    width: 24px;
}
.language-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 24px;
    border-radius: 35px;
    background-color: #DFF3D8;
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    width: 240px;
}
.language-select{
    display: flex;
    align-items: center;
    gap: 4px;
}









.section__header{
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: space-between;
    width: 100%;
    @media(max-width: 992px){
        flex-direction: column;
        gap: 12px;
        margin-bottom: 8px;
    }
}
.section__header-left{
    display: flex;
    align-items: center;
    gap: 10px;
    height: fit-content;
}
.section__header-back{
    width: 22px;
    height: 22px;
    cursor: pointer;
    color: #000000;
    transition: .3s ease-in-out;
}
.section__header-back:hover{
    color: #28710D;
}
.section__header-text{
    max-width: 496px;
    width: 100%;
    @media(max-width: 1200px){
        max-width: 350px;
    }
    @media(max-width: 992px){
        max-width: unset;
    }
}
.section__header-text h1{
    font-size: 42px;
    line-height: 100%;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    @media(max-width: 1200px){
        font-size: 32px;
    }
    @media(max-width: 768px){
        font-size: 24px;
    }
}
.section__header-text p{
    font-size: 18px;
    line-height: 116%;
    font-weight: 400;
    color: #000000;
    @media(max-width: 1200px){
        font-size: 16px;
    }
}
.stage{
    background-color: #FDFDFD;
    border-radius: 12px;
    height: fit-content;
    width: 100%;
    max-width: 854px;
    padding: 20px 60px;
    display: flex;
    gap: 12px;
    justify-content: space-evenly;
    @media(max-width: 1200px){
        padding: 20px 50px;
    }
    @media(max-width: 992px){
        max-width: unset;
    }
    @media(max-width: 575px){
        padding: 20px 35px;
        gap: 4px;
    }
}
.stage__line{
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #E7E7E7;
    margin-top: 27px;
    @media(max-width: 575px){
        margin-top: 16px;
        height: 2px;
    }
}
.stage__line.filled{
    background-color: #28710D;
}
.stage__item{
    position: relative;
    padding-bottom: 26px;
    @media(max-width: 575px){
        padding-bottom: 14px;
    }
}
.stage__item-icon{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E7E7E7;
    @media(max-width: 575px){
        width: 30px;
        height: 30px;
    }
}
.stage__item-icon svg{
    @media(max-width: 575px){
        width: 16px;
        height: 16px;
        object-fit: contain;
        object-position: center;
    }
}
.stage__item.stage__item--active .stage__item-icon, .stage__item.stage__item--prev .stage__item-icon{
    background-color: #28710D;
}
.stage__item p{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    width: fit-content;
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
    color: #C0C0C0;
    @media(max-width: 575px){
        font-size: 12px;
    }
    @media(max-width: 420px){
        font-size: 10px;
    }
}
.stage__item.stage__item--active p, .stage__item.stage__item--prev p{
    color: #28710D;
}
.stage__main{
    background-color: #FDFDFD;
    border-radius: 15px;
    padding: 30px;
    min-height: 420px;
    @media(max-width: 575px){
        padding: 20px 16px;
    }
}

.stage__header{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #28710D;
    font-size: 22px;
    line-height: 120%;
    font-weight: 400;
    margin-bottom: 30px;
    @media(max-width: 575px){
        font-size: 20px;
        margin-bottom: 20px;
    }
}
.stage__form-steps{
    display: none;
}
.stage__form-steps.stage__form-steps--active{
    display: block;
}
.stage__form-main{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 8px;
    @media(max-width: 1200px){
        gap: 30px;
    }
    @media(max-width: 992px){
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
}
.stage__form-col{
    max-width: 343px;
    width: 100%;
    display: flex;
    flex-direction: column;
    @media(max-width: 992px){
        max-width: unset;
    }
}
.stage__form-title{
    font-size: 18px;
    line-height: 120%;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: #494949;
    margin-bottom: 8px;
    @media(max-width: 575px){
        font-size: 16px;
    }
}
.stage__form-title span{
    color: #E00D29;
}
.stage__form-col label{
    width: 100%;
    height: fit-content;
    position: relative;
}
.stage__form-col input[type="text"]{
    width: 100%;
    height: 52px;
    padding: 14px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    color: #000000;
    background-color: #F2F1EF;
    border-radius: 8px;
}
.stage__form-col input[type="text"]::placeholder{
    color: #919191;
}
.stage__form-radio{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    @media(max-width: 768px){
        margin-top: 0;
    }
}
.stage__form-select{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    @media(max-width: 992px){
        margin-top: 0;
    }
}
.stage__form-radio label{
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #494949;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    @media(max-width: 575px){
        font-size: 14px;
    }
}
.stage__form-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #28710D;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.stage__form-radio input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #28710D;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.stage__second-header{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}
.stage__prev{
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #000000;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.stage__prev:hover{
    color: #28710D;
}
.stage__title{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    line-height: 120%;
    font-weight: 400;
    color: #28710D;
}
.stage__second-main{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 300px;
}
.stage__form-col.stage__second-elems{
    flex-direction: row;
    max-width: unset;
    gap: 60px;
    @media(max-width: 992px){
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
    }
}
.stage__elem{
    max-width: 343px;
    width: 100%;
    @media(max-width: 992px){
        max-width: unset;
    }
}
.stage__elem-header{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}
.stage__elem-header .stage__form-title{
    margin: 0;
}
.stage__elem-info{
    width: 22px;
    height: 22px;
    padding: 0;
    cursor: pointer;
    transition: .3s ease-in-out;
    color: #494949;
}
.stage__elem-info:hover{
    color: #28710D;
}
.stage__help{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}
.stage__help p{
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    color: #000000;
}
.stage__help a{
    max-width: 488px;
    width: 100%;
    height: 52px;
    border-radius: 8px;
    background-color: #28710D;
    color: #FDFDFD;
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    cursor: pointer;
}
.stage__help a:hover{
    filter: brightness(90%);
}
.custom-select{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    border-radius: 8px;
    background-color: #F2F1EF;
    border: 1px solid transparent;
}
.custom-select.selected{
    border-color: #28710D;
}
.custom-select.selected .custom-select__main{
    color: #000000;
}
.custom-select.inactive .custom-select__main{
    color: #C0C0C0;
    cursor: default;
    user-select: none;
    pointer-events: none;
}
.custom-select__main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px;
    cursor: pointer;
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    color: #919191;
}
.custom-select__main svg{
    transition: .3s ease-in-out;
}
.custom-select__dropdown{
    position: absolute;
    top: 100%;
    max-height: 0;
    overflow-y: auto;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    z-index: 99;
    width: 100%;
    background-color: #F2F1EF;
}
.custom-select__dropdown-item{
    width: 100%;
    padding: 12px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.custom-select__dropdown-item:hover{
    background-color: #00000010;
}
.custom-select__dropdown-item.selected{
    background-color: #DFF3D8;
}
.custom-select.open .custom-select__dropdown{
    max-height: 200px;
    opacity: 1;
}
.custom-select.open .custom-select__main svg{
    color: #000000;
    transform: rotate(180deg);
}
.custom-select.open .custom-select__main{
    border-bottom: 1px solid #919191;
}
.stage__form-bottom{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.stage__form-bottom p{
    font-size: 15px;
    line-height: 110%;
    font-weight: 400;
    color: #919191;
    @media(max-width: 575px){
        font-size: 12px;
    }
}
.stage__form-btn{
    position: absolute;
    bottom: 100%;
    transform: translateY(-8px);
    max-width: 343px;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28710D;
    color: #FDFDFD;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s ease-in-out;
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    @media(max-width: 992px){
        position: relative;
        transform: unset;
        bottom: 0;
    }
}
.stage__form-btn:hover{
    filter: brightness(90%);
}
.stage__form-btn.inactive{
    user-select: none;
    pointer-events: none;
    cursor: default;
    background-color: #E7E7E7;
    color: #C0C0C0;
}
.stage__results{
    display: flex;
    flex-direction: column;
    gap: 50px;
    @media(max-width: 768px){
        gap: 30px;
    }
}
.stage__results-main{
    border-radius: 15px;
    background-color: #FDFDFD;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    @media(max-width: 768px){
        padding: 24px;
    }
}
.stage__results-icon{
    width: 94px;
    height: auto;
}
.stage__results-icon img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.stage__results-value{
    font-size: 32px;
    line-height: 120%;
    font-weight: 500;
    color: #28710D;
    text-align: center;
    margin-bottom: 20px;
    @media(max-width: 768px){
        font-size: 24px;
        margin-bottom: 15px;
    }
}
.stage__results-value.bad{
    color: #E00D29;
}
.stage__results-title{
    font-size: 24px;
    line-height: 120%;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    @media(max-width: 768px){
        font-size: 18px;
        margin-bottom: 20px;
    }
}
.stage__results-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    row-gap: 20px;
    max-width: 880px;
    width: 100%;
    @media(max-width: 992px){
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
.stage__results-item{
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    line-height: 120%;
    font-weight: 400;
    color: #000000;
    @media(max-width: 768px){
        font-size: 16px;
    }
}
.stage__results-item:after{
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
    background-color: #E00D29;
}
.stage__status-header{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    @media(max-width: 992px){
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}
.stage__status-title{
    font-size: 24px;
    line-height: 120%;
    font-weight: 500;
    color: #000000;
    margin: 0;
}
.stage__status-header__text{
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
    color: #494949;
}
.stage__status-description{
    font-size: 18px;
    line-height: 120%;
    font-weight: 400;
    color: #494949;
    margin-bottom: 30px;
}
.stage__status-group{
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
    overflow: auto;
    @media(max-width: 768px){
        flex-direction: column;
        gap: 8px;
        margin-bottom: 24px;
    }
}
.stage__status-group::-webkit-scrollbar{
    display: none;
}
.stage__status-item{
    background-color: #FDFDFD;
    border-radius: 8px;
    padding: 16px 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 272px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid transparent;
    @media(max-width: 768px){
        width: 100%;
    }
}
.stage__status-item.stage__status-item--big{
    width: 488px;
    @media(max-width: 768px){
        width: 100%;
    }
}
.stage__status-item__content{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.stage-item__icon{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px 0 8px 0;
    background-color: #28710D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDFDFD;
}
.stage__status-btn{
    max-width: 480px;
    width: 100%;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28710D;
    color: #FDFDFD;
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    transition: .3s ease-in-out;
    cursor: pointer;
}
.stage__status-btn:hover{
    filter: brightness(90%);
}
.stage__status-btn.stage__status-btn--stroke{
    background-color: #28710D;
    border: 2px solid #28710D;
    color: #ffffff;
}
.stage__status-btn.stage__status-btn--stroke:hover{
    background-color:  #23630c
}



.stage__status-item input[type="radio"],
.stage__status-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #28710D; /* зелёная рамка */
    border-radius: 4px; /* лёгкое скругление */
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-right: 8px;
}
.stage__status-item input[type="radio"]:checked,
.stage__status-item input[type="checkbox"]:checked {
    background-color: #28710D;
    border-color: #28710D;
}
.stage__status-item input[type="radio"]:checked::after,
.stage__status-item input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6.5px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}
.stage__status-item.active {
    border-color: #28710D;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.stage__status-item.independent.active{
    border-color: transparent;
}




.duration{
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: #000000;
}
.price{
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    color: #28710D;
}
.price del{
    font-size: 22px;
    color: #000000;
    text-decoration: line-through;
}
.note{
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    max-width: 265px;
    width: 100%;
    color: #494949;
    @media(max-width: 420px){
        max-width: 220px;
    }
}
.stage__status-item.independent .note{
    max-width: 180px;
    @media(max-width: 768px){
        max-width: 265px;
    }
    @media(max-width: 420px){
        max-width: 220px;
    }
}
.badge{
    position: absolute;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: #EDFCE8;
    color: #28710D;
    top: 16px;
    right: 12px;
    @media(max-width: 575px){
        font-size: 10px;
        font-weight: 600;
        padding: 6px 10px;
    }
}
.stage__status-item.independent{
    background-color: #DFF3D8;
}
.stage-item__header{
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.stage-item__header .price{
    font-size: 20px;
    line-height: 120%;
    color: #000000;
}
.stage-item__header button{
    padding: 0;
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: .3s ease-in-out;
    color: #494949;
}
.stage-item__header button:hover{
    color: #28710D;
}





.stats__tabs{
    display: flex;
    justify-content: center;
    padding: 8px;
    background-color: #E7E7E7;
    border-radius: 8px;
    margin: 40px auto 30px;
    width: fit-content;
}
.stats__tabs-item{
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    color: #000000;
    transition: .3s ease-in-out;
    cursor: pointer;
    @media(max-width: 768px){
        padding: 12px;
        font-size: 15px;
        line-height: 18px;
    }
    @media(max-width: 420px){
        font-size: 14px;
        padding: 10px;
        line-height: 16px;
    }
}
.stats__tabs-item:hover{
    background-color: #28710D50;
}
.stats__tabs-item.stats__tabs-item--active{
    background-color: #28710D;
    color: #FDFDFD;
    cursor: default;
}
.stats__content{
    display: none;
}
.stats__content.stats__content--active{
    display: flex;
    flex-direction: column;
    gap: 30px;
    @media(max-width: 768px){
        gap: 20px;
    }
}
.stats__content-title{
    font-size: 24px;
    line-height: 110%;
    font-weight: 500;
    color: #000000;
}
.stats__main{
    background-color: #FDFDFD;
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    @media(max-width: 768px){
        padding: 20px;
    }
}
.stats__header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    @media(max-width: 768px){
        margin-bottom: 15px;
    }
}
.stats__header p{
    font-size: 16px;
    line-height: 110%;
    font-weight: 600;
    color: #919191;
    @media(max-width: 768px){
        font-size: 14px;
    }
}
.stats__main-content{
    display: flex;
    flex-direction: column;
    gap: 45px;
    width: 100%;
    @media(max-width: 768px){
        gap: 30px;
    }
}
.stats__item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    @media(max-width: 992px){
        gap: 20px;
    }
    @media(max-width: 768px){
        gap: 10px;
    }
}
.stats__item-name{
    font-size: 20px;
    line-height: 110%;
    font-weight: 500;
    color: #000000;
    flex-shrink: 0;
    width: 135px;
    @media(max-width: 768px){
        font-size: 16px;
        width: 110px;
    }
}
.stats__item-value{
    text-align: right;
    font-size: 24px;
    line-height: 110%;
    font-weight: 700;
    color: #000000;
    width: 115px;
    flex-shrink: 0;
    @media(max-width: 768px){
        font-size: 16px;
        width: 78px;
    }
}
.stats__item-line{
    width: 100%;
    height: 8px;
    background-color: #F2F1EF;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    @media(max-width: 575px){
        height: 6px;
    }
}
.stat__item-line__progress{
    position: absolute;
    left: 0;
    top: 0;
    height: 8px;
    border-radius: 6px;
    background-color: #28710D;
    @media(max-width: 575px){
        height: 6px;
    }
}
#barUzbekistan{
    width: 100%;
}
#barTadzhikistan{
    width: 88%;
}
#barKirgizia{
    width: 78%;
}
#barKazahstan{
    width: 60%;
}
#barArmenia{
    width: 52%;
}
#barAzeybardzhan{
    width: 42%;
}
.stats__limit{
    background-color: #FDFDFD;
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    @media(max-width: 768px){
        padding: 20px;
    }
}
.stats__limit-text{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    @media(max-width: 575px){
        margin-bottom: 20px;
    }
}
.stats__limit-text p{
    font-size: 18px;
    line-height: 100%;
    font-weight: 400;
    color: #494949;
    @media(max-width: 575px){
        font-size: 16px;
    }
}
.stats__limits-cols{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    @media(max-width: 1280px){
        gap: 30px;
    }
    @media(max-width: 1200px){
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}
.stats__limits-col{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.stats__limits-col:last-child{
    @media(max-width: 1200px){
        padding-top: 15px;
    }
}
.stats__limits-item{
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #C0C0C0;
}
.stats__limits-item:first-child{
    padding: 0 0 15px 0;
    min-height: 66px;
    @media(max-width: 1200px){
        min-height: unset;
    }
}
.stats__limits-item:nth-child(4), .stats__limits-item:nth-child(9), .stats__limits-item:last-child{
    min-height: 81px;
    @media(max-width: 1200px){
        min-height: unset;
    }
}
.stats__limits-item__number{
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: #28710D;
    width: fit-content;
    flex-shrink: 0;
    @media(max-width: 575px){
        font-size: 16px;
        line-height: 20px;
    }
}
.stats__limits-item__text{
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    color: #000000;
    @media(max-width: 575px){
        font-size: 16px;
        line-height: 20px;
    }
}
.stats__scrollable{
    background-color: #FDFDFD;
    border-radius: 15px;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.stats__scrollable-wrapper{
    display: flex;
    overflow: auto;
    scroll-snap-type: x mandatory;
    margin-bottom: 25px;
    @media(max-width: 768px){
        margin-bottom: 20px;
    }
}
.stats__scrollable-wrapper::-webkit-scrollbar{
    display: none;
}
.stats__scrollable-navigation{
    display: flex;
    margin-left: 30px;
    gap: 16px;
    @media(max-width: 768px){
        margin-left: 20px;
        gap: 10px;
    }
}
.stats__scrollable-btn-prev, .stats__scrollable-btn-next{
    width: 26px;
    height: 26px;
    cursor: pointer;
    transition: .3s ease-in-out;
    color: #000000;
}
.stats__scrollable-btn-prev:hover, .stats__scrollable-btn-next:hover{
    color: #28710D;
}
.stats__scrollable-item__wrapper{
    scroll-snap-align: start;
    width: fit-content;
    flex-shrink: 0;
    height: fit-content;
}
.stats__scrollable-item__wrapper:last-child{
    margin-right: 30px;
    @media(max-width: 768px){
        margin-right: 20px;
    }
}
.stats__scrollable-item{
    width: 775px;
    height: 490px;
    margin-left: 30px;
    @media(max-width: 992px){
        width: 600px;
        height: 510px;
    }
    @media(max-width: 768px){
        margin-left: 20px;
        width: 400px;
    }
    @media(max-width: 575px){
        width: 300px;
        height: 680px;
    }
}
.stats__scrollable-item.stats__scrollable-item--green .scrollable-item__header{
    background-color: #DFF3D8;
}
.stats__scrollable-item.stats__scrollable-item--green .scrollable-item__main{
    background-color: #DFF3D8;
}
.scrollable-item__header{
    border-radius: 12px 12px 0 0;
    background-color: #E7E7E7;
    width: 195px;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 110%;
    font-weight: 400;
    color: #919191;
    text-align: center;
    @media(max-width: 768px){
        font-size: 14px;
    }
}
.scrollable-item__main{
    background-color: #E7E7E7;
    border-radius: 0 12px 12px 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 450px;
    @media(max-width: 992px){
        height: 470px;
    }
    @media(max-width: 768px){
        padding: 20px;
    }
    @media(max-width: 575px){
        height: 640px;
    }
}
.scrollable-item__title{
    font-size: 20px !important;
    line-height: 110% !important;
    font-weight: 600 !important;
    color: #28710D !important;
    margin-bottom: 25px !important;
    position: relative;
    padding-left: 30px;
    @media(max-width: 768px){
        font-size: 16px !important;
        margin-bottom: 15px !important;
        padding-left: 20px;
    }
}
.stats__scrollable-item__wrapper:nth-child(2) .scrollable-item__title:after{
    content: "2.";
}
.stats__scrollable-item__wrapper:nth-child(3) .scrollable-item__title:after{
    content: "3.";
}
.scrollable-item__title:after{
    position: absolute;
    left: 0;
    top: 0;
    counter-increment: section;
    content: "1.";
}
.scrollable-item__main p{
    font-size: 18px;
    line-height: 110%;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    @media(max-width: 768px){
        font-size: 16px;
        margin-bottom: 15px;
    }
}
.scrollable-item__main ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    @media(max-width: 768px){
        gap: 15px;
    }
}
.scrollable-item__main ul li{
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    line-height: 110%;
    font-weight: 400;
    color: #000000;
    @media(max-width: 768px){
        font-size: 16px;
        padding-left: 25px;
    }
}
.scrollable-item__main ul li:after{
    content: '—';
    position: absolute;
    left: 0;
    top: 0;
    color: #919191;
}


h2{
    font-size: 42px;
    line-height: 110%;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    @media(max-width: 1200px){
        font-size: 32px;
        margin-bottom: 10px;
    }
    @media(max-width: 768px){
        font-size: 24px;
    }
}
.section__description{
    font-size: 18px;
    line-height: 100%;
    font-weight: 400;
    color: #494949;
    margin-bottom: 30px;
    @media(max-width: 768px){
        font-size: 16px;
        margin-bottom: 20px;
    }
}
.help{
    max-width: 945px;
    width: 100%;
    margin: 0 auto;
    background-color: #FDFDFD;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    @media(max-width: 768px){
        padding: 30px;
    }
    @media(max-width: 575px){
        padding: 20px;
    }
}
.help__title{
    font-size: 32px;
    line-height: 110%;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 15px;
    @media(max-width: 768px){
        font-size: 24px;
        margin-bottom: 10px;
    }
}
.help__description{
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    color: #494949;
    max-width: 512px;
    width: 100%;
    margin: 0 auto 45px;
    text-align: center;
    @media(max-width: 768px){
        font-size: 14px;
        margin: 0 auto 20px;
    }
}
.help__form{
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.help__form-row{
    display: flex;
    width: 100%;
    gap: 30px;
    flex-wrap: nowrap;
    margin-bottom: 25px;
    @media(max-width: 820px){
        flex-direction: column;
        gap: 25px;
    }
}
.help__form label{
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 18px;
    line-height: 120%;
    font-weight: 400;
    color: #494949;
}
.help__form input{
    width: 100%;
    height: fit-content;
    padding: 16px;
    background-color: #F2F1EF;
    border-radius: 8px;
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    color: #000000;
}
.help-form__content .help__form input{
    background-color: #FDFDFD;
}
.help-form__content .help__form-row{
    flex-direction: column;
}
.help-form__content .help__form textarea{
    background-color: #FDFDFD;
}
.help__form input::placeholder, .help__form textarea::placeholder{
    color: #919191;
}
.textarea__label{
    margin-bottom: 30px;
}
.help__form textarea{
    font-family: 'Nunito', sans-serif;
    padding: 12px 16px;
    background-color: #F2F1EF;
    border-radius: 8px;
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    color: #000000;
    resize: none;
    height: 120px;
}
.help__form textarea::placeholder{
    max-width: 370px;
}
.stage__privacy, .help-checkbox{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 120%;
    font-weight: 400;
    color: #494949;
    letter-spacing: -0.04em;
    cursor: pointer;
    @media(max-width: 575px){
        font-size: 13px;
        align-items: flex-start;
    }
}
.help-checkbox{
    max-width: 350px;
    align-items: flex-start;
}
.form__checkbox{
    flex-direction: row !important;
    font-size: 16px !important;
    cursor: pointer;
}
.form__checkbox input[type="checkbox"], .stage__privacy input[type="checkbox"], .help-checkbox input[type="checkbox"]{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.custom-checkbox {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #28710D;
    margin: 2px;
    border-radius: 4px;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.custom-checkbox::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg) scale(0);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.form__checkbox input[type="checkbox"]:checked + .custom-checkbox, .stage__privacy input[type="checkbox"]:checked + .custom-checkbox, .help-checkbox input[type="checkbox"]:checked + .custom-checkbox{
    background-color: #28710D;
    border-color: #28710D;
}
.form__checkbox input[type="checkbox"]:checked + .custom-checkbox::after, .stage__privacy input[type="checkbox"]:checked + .custom-checkbox::after, .help-checkbox input[type="checkbox"]:checked + .custom-checkbox::after{
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    opacity: 1;
}


.help__form-btn{
    max-width: 320px;
    width: 100%;
    height: 52px;
    border-radius: 8px;
    background-color: #28710D;
    color: #FDFDFD;
    font-size: 18px;
    line-height: 100%;
    font-weight: 400;
    cursor: pointer;
    transition: .3s ease-in-out;
    margin: 0 auto 20px;
}
.help__form-btn.inactive{
    background-color: #E7E7E7;
    color: #C0C0C0;
    pointer-events: none;
    user-select: none;
    cursor: default;
}
.help__form-btn:hover{
    filter: brightness(90%);
}




.faq__content{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    @media(max-width: 1200px){
        gap: 30px;
    }
    @media(max-width: 992px){
        flex-direction: column;
        gap: 20px;
    }
}
.faq__content h2{
    max-width: 435px;
    width: 100%;
    height: fit-content;
    flex-shrink: 0;
    @media(max-width: 1200px){
        max-width: 350px;
    }
    @media(max-width: 992px){
        max-width: unset;
        margin-bottom: 0;
    }
}
.faq__list{
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 850px;
    width: 100%;
    counter-reset: faq-counter;
    @media(max-width: 992px){
        max-width: unset;
    }
}
.faq__item{
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    background-color: #FDFDFD;
    transition: background-color 0.3s ease-in-out, gap 0.3s ease-in-out;
    border-radius: 15px;
    @media(max-width: 768px){
        padding: 15px;
    }
}
.faq__item.open{
    background-color: #DFF3D8;
    gap: 15px;
}
.faq__item-header{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    cursor: pointer;
}
.faq__item-title{
    position: relative;
    padding-left: 30px;
    font-size: 20px;
    line-height: 110%;
    font-weight: 500;
    color: #000000;
    max-width: 650px;
    @media(max-width: 768px){
        font-size: 16px;
        padding-left: 20px;
    }
}
.faq__item-title:after{
    counter-increment: faq-counter;
    content: counter(faq-counter) ". ";
    position: absolute;
    left: 5px;
    top: 0;
}

.faq__item-icon{
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28710D;
    color: #FFFFFF;
    transition: .3s ease-in-out;
}
.faq__item.open .faq__item-icon{
    background-color: #000000;
    transform: rotate(-135deg);
}
.faq__item-dropdown{
    height: 0;
    overflow: hidden;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    @media(max-width: 768px){
        padding: 0;
    }
}
.faq__item.open .faq__item-dropdown {
    opacity: 1;
}
.faq__item-dropdown p{
    font-size: 18px;
    line-height: 110%;
    font-weight: 400;
    color: #494949;
    @media(max-width: 768px){
        font-size: 16px;
    }
}
.faq__item-dropdown ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 18px;
    line-height: 110%;
    font-weight: 400;
    color: #494949;
    @media(max-width: 768px){
        font-size: 16px;
    }
}
.faq__item-dropdown ul li{
    position: relative;
    padding-left: 15px;
}
.faq__item-dropdown ul li:after{
    display: block;
    position: absolute;
    content: '';
    left: 5px;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #494949;
    z-index: 9;
}

footer{
    padding: 26px 0;
}
.footer__wrapper{
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    @media(max-width: 1280px){
        padding: 0 20px;
    }
    @media(max-width: 575px){
        padding: 0 16px;
    }
}
.footer__top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 95px 0 70px;
    margin-bottom: 14px;
    gap: 30px;
    @media(max-width: 1280px){
        padding: 0 95px 0 0;
    }
    @media(max-width: 992px){
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
.footer__logo{
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    color: #000000;
    transition: .3s ease-in-out;
}
.footer__logo:hover{
    color: #28710D;
}
.footer__nav{
    display: flex;
    align-items: center;
    gap: 30px;
    @media(max-width: 575px){
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}
.footer__nav-item{
    font-size: 18px;
    line-height: 100%;
    font-weight: 600;
    color: #000000;
    transition: .3s ease-in-out;
    @media(max-width: 575px){
        font-size: 16px;
        line-height: 25px;
    }
}
.footer__nav-item:hover{
    color: #28710D;
}
.footer__contacts{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
    margin: 0 0 20px auto;
    @media(max-width: 992px){
        margin: 0 0 20px 0;
    }
}
.footer__mail{
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer__mail a{
    font-size: 16px;
    line-height: 120%;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #000000;
    transition: .3s ease-in-out;
}
.footer__mail a:hover{
    color: #28710D;
}
.footer__time{
    display: flex;
    align-items: center;
    gap: 6px;
    color: #28710D;
    font-size: 16px;
    line-height: 120%;
    font-weight: 700;
    letter-spacing: -0.04em;
}
.footer__docs{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    @media(max-width: 992px){
        margin-bottom: 20px;
    }
    @media(max-width: 575px){
        flex-direction: column;
        align-items: flex-start;
    }
}
.footer__docs-link{
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    color: #494949;
    transition: .3s ease-in-out;
    @media(max-width: 992px){
        font-size: 16px;
        font-weight: 600;
    }
    @media(max-width: 575px){
        text-decoration: underline;
        text-underline-offset: 3px;
    }
}
.footer__docs-link:hover{
    color: #28710D;
}
.footer__text{
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    color: #494949;
    @media(max-width: 992px){
        font-size: 16px;
        font-weight: 600;
    }
}



.breadcrumbs{
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.breadcrumbs__link, .breadcrumbs__line, .breadcrumbs__page{
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    @media(max-width: 575px){
        font-size: 12px;
        line-height: 16px;
    }
}
.breadcrumbs__link, .breadcrumbs__line{
    color: #919191;
}
.breadcrumbs__link{
    transition: .3s ease-in-out;
}
.breadcrumbs__link:hover{
    color: #000000;
}
.breadcrumbs__page{
    color: #000000;
}
.page__header{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.page__header.page__header-with-description{
    margin-bottom: 15px;
}
.page__header h1{
    font-size: 42px;
    line-height: 100%;
    font-weight: 600;
    color: #000000;
    @media(max-width: 992px){
        font-size: 32px;
    }
    @media(max-width: 575px){
        font-size: 24px;
    }
}
.page__description{
    font-size: 20px;
    line-height: 120%;
    font-weight: 400;
    color: #494949;
    max-width: 900px;
    width: 100%;
    margin-bottom: 20px;
    @media(max-width: 575px){
        font-size: 16px;
    }
}
.page__back{
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: .3s ease-in-out;
    color: #000000;
}
.page__back:hover{
    color: #28710D;
}
.page__back h1{
    font-size: 42px;
    line-height: 57px;
    font-weight: 600;
    color: #000000;
    @media(max-width: 1200px){
        font-size: 32px;
    }
    @media(max-width: 768px){
        font-size: 24px;
    }
}
.text{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    min-height: 600px;
    @media(max-width: 575px){
        margin-bottom: 30px;
    }
}
.text__item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    @media(max-width: 768px){
        gap: 15px;
    }
}
.text__item p{
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.04em;
    @media(max-width: 768px){
        font-size: 16px;
    }
}
.text__item h2{
    font-size: 32px;
    line-height: 120%;
    font-weight: 400;
    color: #000000;
}
.text__item h3{
    font-size: 26px;
    line-height: 120%;
    font-weight: 400;
    color: #000000;
}
.text__item ul{
    list-style: disc;
    padding-left: 25px;
}
.text__item li{
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.04em;
    @media(max-width: 768px){
        font-size: 16px;
    }
}
.text__item ol{
    list-style: decimal;
    padding-left: 20px;
}
.text__list{
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 600px;
    width: 100%;
    counter-reset: item;
}
.text__list p{
    position: relative;
    padding-left: 20px;
}
.text__list p::before{
    position: absolute;
    left: 0;
    top: 0;
    counter-increment: item;
    content: counter(item) " ";
}



.input-radio-group {
    display: flex;
    flex-direction: column;
}
.option__grid{
    display: flex;
    gap: 48px;
    max-width: 670px;
    width: 100%;
    margin-bottom: 30px;
    @media(max-width: 768px){
        flex-direction: column;
        gap: 24px;
        margin-bottom: 20px;
    }
}
.option {
    display: flex;
    flex-direction: column;
    gap: 8px;
    @media(max-width: 768px){
        width: 100%;
    }
}
.option-title {
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    letter-spacing: -0.04em;
}
.option-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.radio-col {
    position: relative;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.radio-col input[type="radio"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 9;
}
.custom-radio {
    width: 20px;
    height: 20px;
    border: 1px solid #28710D;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: border-color 0.2s ease;
}
.custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #28710D;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}
.radio-col input[type="radio"]:checked + .custom-radio {
    border-color: #28710D;
}
.radio-col input[type="radio"]:checked + .custom-radio::after {
    transform: translate(-50%, -50%) scale(1);
}
.label-block {
    position: relative;
    flex: 1;
    cursor: pointer;
}
.field{
    width: 100%;
    padding: 15px 20px;
    background-color: #FDFDFD;
    border-radius: 8px;
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    color: #000000;
}
.field::placeholder{
    color: #919191;
}
.field:disabled {
    color: #C0C0C0;
    background-color: #E7E7E7;
    cursor: not-allowed;
}
.radio-group__btn{
    width: 310px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    cursor: pointer;
    transition: .3s ease-in-out;
    background-color: #28710D;
    color: #FDFDFD;
    border-radius: 8px;
    margin-bottom: 8px;
}
.radio-group__btn.inactive{
    background-color: #E7E7E7;
    color: #C0C0C0;
    user-select: none;
    pointer-events: none;
    cursor: default;
}
.radio-group__btn:hover {
    filter: brightness(90%);
}
.form-notification{
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #494949;
    max-width: 670px;
    width: 100%;
}
.form-notification a{
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: .3s ease-in-out;
}
.form-notification a:hover{
    color: #28710D;
}
input[type="email"], input[type="tel"], input[type="text"], textarea{
    border: 1px solid transparent;
}
input[type="email"].valid, input[type="tel"].valid, input[type="text"].valid, textarea.valid{
    border-color: #28710D;
}
input[type="email"].invalid, input[type="tel"].invalid, input[type="text"].invalid, textarea.invalid{
    border-color:  #E00D29;
}
.input-error {
    position: absolute;
    top: 100%;
    transform: translateY(4px);
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    color: #E00D29;
}


dialog{
    border: none;
    padding: 0;
    @media(max-width: 575px){
        max-width: calc(100% - 30px);
    }
}
dialog::backdrop{
    background: rgba(0, 0, 0, 0.85);
}
.subscribe-dialog, .help-dialog{
    max-width: 754px;
    width: 100%;
    background-color: #F2F1EF;
    border-radius: 15px;
    height: 368px;
    @media(max-width: 768px){
        max-width: calc(100% - 30px);
    }
}
.wait-dialog{
    max-width: 754px;
    width: 100%;
    padding: 60px 20px;
    background-color: #F2F1EF;
    border-radius: 15px;
    @media(max-width: 768px){
        max-width: calc(100% - 30px);
    }
}
.wait-dialog__content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wait-dialog__status{
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}
.wait-dialog__status-elem{
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #1D5806;
    transition: background-color 250ms linear;
    animation: wait-pulse 2000ms infinite ease-in-out;
}
.wait-dialog__status-elem:nth-child(2){
    background-color: #28710D;
}
.wait-dialog__status-elem:nth-child(3){
    background-color: #DFF3D8;
}
.wait-dialog__status-elem:nth-child(4){
    background-color: #E7E7E7;
}
.wait-dialog__title{
    font-size: 32px;
    line-height: 120%;
    font-weight: 400;
    text-align: center;
    color: #000000;
    margin-bottom: 8px;
    @media(max-width: 575px){
        font-size: 24px;
    }
}
.wait-dialog__text{
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.04em;
    color: #919191;
}
.help-form{
    max-width: 754px;
    width: 100%;
    border-radius: 15px;
    background-color: #F2F1EF;
    padding: 24px 40px;
    @media(max-width: 768px){
        max-width: calc(100% - 30px);
        padding: 24px;
    }
}
.help-form__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dialog-close{
    position: absolute;
    top: 24px;
    right: 24px;
    width: 38px;
    height: 38px;
    overflow: hidden;
}
.dialog-close button{
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: #000000;
    transition: .3s ease-in-out;
}
.dialog-close.white{
    top: 0;
    right: 0;
    transform: translate(0, -30%);
}
.dialog-close.white button{
    color: #FFFFFF;
}
.dialog-close button:hover{
    color: #28710D;
}
.subscribe-dialog__content{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}
.subscribe-dialog__icon{
    width: 90px;
    height: 90px;
    overflow: hidden;
    margin-bottom: 12px;
}
.subscribe-dialog__icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.subscribe-dialog__title{
    text-align: center;
    font-size: 32px;
    line-height: 120%;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
    @media(max-width: 575px){
        font-size: 24px;
    }
}
.subscribe-dialog__text{
    font-size: 18px;
    line-height: 120%;
    font-weight: 400;
    color: #494949;
    text-align: center;
    max-width: 410px;
    width: 100%;
    @media(max-width: 575px){
        font-size: 16px;
    }
}
.subscribe-dialog__text a{
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: .3s ease-in-out;
}
.subscribe-dialog__text a:hover{
    color: #28710D;
}
.example-dialog{
    background-color: transparent;
    max-width: 450px;
    width: 100%;
    padding-top: 20px;
    @media(max-width: 575px){
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }
}
.example-dialog.example-dialog--big{
    max-width: 530px;
    @media(max-width: 575px){
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }
}
.example-dialog__content{
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.example-dialog__title{
    font-size: 22px;
    line-height: 120%;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #FFFFFF;
}
.example-dialog__img{
    width: 100%;
    height: fit-content;
}
.example-dialog__img img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.help-form__button{
    width: 350px;
    height: 52px;
    border-radius: 8px;
    background-color: #28710D;
    color: #FDFDFD;
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: .3s ease-in-out;
}
.help-form__button:hover{
    filter: brightness(90%);
}
.help-form__button.inactive{
    background-color: #E7E7E7;
    color: #C0C0C0;
    user-select: none;
    pointer-events: none;
}
.help-form__header{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 560px;
}
.help-form__header h3{
    font-size: 32px;
    line-height: 140%;
    font-weight: 500;
    color: #000000;
    @media(max-width: 575px){
        font-size: 24px;
    }
}
.help-form__semititle{
    font-size: 20px;
    line-height: 120%;
    font-weight: 400;
    text-align: center;
    margin-bottom: 8px;
    @media(max-width: 575px){
        font-size: 16px;
    }
}
.help-form__description{
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    letter-spacing: -0.04em;
    text-align: center;
    color: #000000;
    margin-bottom: 30px;
    @media(max-width: 575px){
        font-size: 14px;
        margin-bottom: 20px;
    }
}
.help-form__order{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 30px;
    @media(max-width: 575px){
        margin-bottom: 20px;
    }
}
.help-form__order-title{
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    color: #000000;
    margin-bottom: 4px;
}
.help-form__order-item{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: baseline;
}
.order-item__name{
    width: fit-content;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 120%;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: #000000;
    @media(max-width: 575px){
        font-size: 16px;
    }
}
.order-item__price{
    width: fit-content;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 120%;
    font-weight: 300;
    letter-spacing: -0.04em;
    color: #000000;
    @media(max-width: 575px){
        font-size: 14px;
    }
}
.order-item__line{
    width: 100%;
    height: 1px;
    border: 1px dashed #C0C0C0;
}



.mobile-menu{
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: 0;
    height: 100%;
    overflow: hidden;
    transition: .3s ease-in-out;
    background-color: #E5E5E5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    z-index: 99;
    padding: 0 20px;
}
.mobile-menu.open{
    max-height: calc(100svh - 70px);
    padding: 20px;
}
.mobile-menu__nav{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.mobile-menu__item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    background-color: #FDFDFD;
}
.mobile-menu__item.mobile-menu__item--active{
    background-color: #28710D;
}
.mobile-menu__item-main{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 120%;
    font-weight: 400;
    color: #000000;
}
.mobile-menu__item.mobile-menu__item--active .mobile-menu__item-main{
    color: #FDFDFD;
}
.mobile-menu__item-arrow{
    width: 24px;
    height: 24px;
    color: #919191;
}
.mobile-menu__item.mobile-menu__item--active .mobile-menu__item-arrow{
    color: #FDFDFD;
}
.mobile-language{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: .3s ease-in-out;
    background-color: #E5E5E5;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.mobile-language.open{
    width: 100%;
    padding: 20px 16px;
}
.mobile-language__header{
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.mobile-language__header h2{
    font-size: 24px;
    line-height: 100%;
    font-weight: 600;
    color: #000000;
    margin: 0;
}
.mobile-language__header svg{
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
}
.mobile-language__description{
    font-size: 14px;
    line-height: 120%;
    font-weight: 400;
    color: #494949;
    margin-bottom: 8px;
}
.mobile-language__list{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.mobile-language__item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 46px;
    padding: 12px;
    border-radius: 8px;
    background-color: #FDFDFD;
    color: #494949;
    font-size: 15px;
    line-height: 120%;
    font-weight: 500;
    transition: .3s ease-in-out;
    border: 1px solid transparent;
    position: relative;
}
.mobile-language__item.checked{
    border-color: #28710D;
}
.mobile-language__item.checked::after{
    content: url("{% static 'images/language-arrow.svg' %}");
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}
.mobile-language__btn{
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
    color: #FDFDFD;
    background-color: #28710D;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
}
.mobile-language__btn.inactive{
    background-color: #E7E7E7;
    color: #C0C0C0;
}
