@font-face {
    font-family: 'Advent Pro', sans-serif;
    src: url("assets/AdventPro-VariableFont_wdth,wght.ttf");
}

:root {
    --bg-body-color: #503b17;
    --head-color: #32b737;
    --button-color: #32b737;
    --a-color: #32b737;
    --text-color: #ffffff;

    --logo-color: #32b737;

    --nav-color: #32b737;
    --nav-a-color: #ffffff;
    --nav-a-mob-color: #5ec268;
    --nav-background-color: #cecbec;
    --nav-background-mob-color: #22223b;

    --content-color: #32b737;

    --table-text-color: #32b737;
    --table-row-color: #32b737;

    --footer-text-color: #32b737;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

.content img {
    display: block;
    max-width: 100%;
    margin: 15px auto;
}
body {
    position: relative;
    max-width: 1440px;
    min-width: 390px;
    margin: 0 auto;
    padding: 0;

    color: var(--text-color);
    font-family: 'Advent Pro', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    background-color: var(--bg-body-color);
}

h3,
h2,
h1 {
    color: var(--head-color);
    text-align: center;
    font-family: 'Advent Pro', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;

    margin-bottom: 16px;
}

h2 {
    font-size: 38px;
    line-height: 64px;

    margin-top: 24px;
}

h3 {
    text-align: start;
    font-size: 32px;
    line-height: 64px;

    margin-top: 24px;
}

a {
    color: var(--a-color);
}

button {
    border: none;
    background: none;

    color: var(--text-color);
    font-family: 'Advent Pro', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    text-decoration: none;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}

.desctop_none {
    display: none;
}

.figure {
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
}

.figure_1 {
    top: 310px;
    right: 0;
}

.figure_2 {
    top: 1100px;
    left: 0;
}

.figure_3 {
    top: 1900px;
    right: 0;
}

/* id для копки возврата наверх */
#arrow_up {
    display: none;

    position: fixed;
    right: 100px;
    bottom: 129.87px;

    width: 34px;
    height: 34px;
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath id='up' d='M20.3892 2.67879L33.1769 27.4061C35.1443 30.9778 33.4228 34 29.7341 34H4.15855C0.469774 34 -1.00574 30.9778 0.715691 27.4061L13.5035 2.67879C15.4708 -0.892929 18.4218 -0.892929 20.3892 2.67879Z' fill='url(%23paint0_linear_137_2593)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_137_2593' x1='17' y1='0' x2='17' y2='34' gradientUnits='userSpaceOnUse' %3E%3Cstop stop-color='%23697bdf' /%3E%3Cstop offset='1' stop-color='%234658bb' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

#arrow_up:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34' fill='none'%3E%3Cpath d='M20.3892 2.67879L33.1769 27.4061C35.1443 30.9778 33.4228 34 29.7341 34H4.15855C0.469774 34 -1.00574 30.9778 0.715691 27.4061L13.5035 2.67879C15.4708 -0.892929 18.4218 -0.892929 20.3892 2.67879Z' fill='url(%23paint0_linear_137_2594)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_137_2594' x1='17' y1='0' x2='17' y2='34' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23a1afff'/%3E%3Cstop offset='1' stop-color='%235871ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.chief {
    position: relative;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 150px;

    border-bottom: 2px solid var(--head-color);
}

.chief_logo {
    color: var(--logo-color);
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

.dropdown_menu {
    display: none;
}

.navigation {
    min-height: 720px;
    position: absolute;
    top: 95px;
    left: 0;

    max-width: 250px;
    width: 100%;
    padding: 42px 0 42px 16px;

    background-color: #634428;

    border-radius: 0px 24px 24px 0px;
    border: 1px solid var(--nav-color);
}

.navigation_link {
    display: block;

    color: var(--a-color);
    text-decoration: none;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;

    padding: 27px 0 27px 60px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1_1188' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' transform='matrix(-1 0 0 1 24 0)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1_1188)'%3E%3Cpath d='M18.15 17.1C17.3 16.45 16.35 15.9375 15.3 15.5625C14.25 15.1875 13.15 15 12 15C10.85 15 9.75 15.1875 8.7 15.5625C7.65 15.9375 6.7 16.45 5.85 17.1C5.26667 16.4167 4.8125 15.6417 4.4875 14.775C4.1625 13.9083 4 12.9833 4 12C4 9.78333 4.77917 7.89583 6.3375 6.3375C7.89583 4.77917 9.78333 4 12 4C14.2167 4 16.1042 4.77917 17.6625 6.3375C19.2208 7.89583 20 9.78333 20 12C20 12.9833 19.8375 13.9083 19.5125 14.775C19.1875 15.6417 18.7333 16.4167 18.15 17.1ZM12 13C12.9833 13 13.8125 12.6625 14.4875 11.9875C15.1625 11.3125 15.5 10.4833 15.5 9.5C15.5 8.51667 15.1625 7.6875 14.4875 7.0125C13.8125 6.3375 12.9833 6 12 6C11.0167 6 10.1875 6.3375 9.5125 7.0125C8.8375 7.6875 8.5 8.51667 8.5 9.5C8.5 10.4833 8.8375 11.3125 9.5125 11.9875C10.1875 12.6625 11.0167 13 12 13ZM12 22C13.3833 22 14.6833 21.7375 15.9 21.2125C17.1167 20.6875 18.175 19.975 19.075 19.075C19.975 18.175 20.6875 17.1167 21.2125 15.9C21.7375 14.6833 22 13.3833 22 12C22 10.6167 21.7375 9.31667 21.2125 8.1C20.6875 6.88333 19.975 5.825 19.075 4.925C18.175 4.025 17.1167 3.3125 15.9 2.7875C14.6833 2.2625 13.3833 2 12 2C10.6167 2 9.31667 2.2625 8.1 2.7875C6.88333 3.3125 5.825 4.025 4.925 4.925C4.025 5.825 3.3125 6.88333 2.7875 8.1C2.2625 9.31667 2 10.6167 2 12C2 13.3833 2.2625 14.6833 2.7875 15.9C3.3125 17.1167 4.025 18.175 4.925 19.075C5.825 19.975 6.88333 20.6875 8.1 21.2125C9.31667 21.7375 10.6167 22 12 22ZM12 20C11.1167 20 10.2833 19.8708 9.5 19.6125C8.71667 19.3542 8 18.9833 7.35 18.5C8 18.0167 8.71667 17.6458 9.5 17.3875C10.2833 17.1292 11.1167 17 12 17C12.8833 17 13.7167 17.1292 14.5 17.3875C15.2833 17.6458 16 18.0167 16.65 18.5C16 18.9833 15.2833 19.3542 14.5 19.6125C13.7167 19.8708 12.8833 20 12 20ZM12 11C11.5667 11 11.2083 10.8583 10.925 10.575C10.6417 10.2917 10.5 9.93333 10.5 9.5C10.5 9.06667 10.6417 8.70833 10.925 8.425C11.2083 8.14167 11.5667 8 12 8C12.4333 8 12.7917 8.14167 13.075 8.425C13.3583 8.70833 13.5 9.06667 13.5 9.5C13.5 9.93333 13.3583 10.2917 13.075 10.575C12.7917 10.8583 12.4333 11 12 11Z' fill='%2332b737'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 26px center;
}

.navigation_link:hover {
    color: var(--text-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1_1437' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' transform='matrix(-1 0 0 1 24 0)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1_1437)'%3E%3Cpath d='M18.15 17.1C17.3 16.45 16.35 15.9375 15.3 15.5625C14.25 15.1875 13.15 15 12 15C10.85 15 9.75 15.1875 8.7 15.5625C7.65 15.9375 6.7 16.45 5.85 17.1C5.26667 16.4167 4.8125 15.6417 4.4875 14.775C4.1625 13.9083 4 12.9833 4 12C4 9.78333 4.77917 7.89583 6.3375 6.3375C7.89583 4.77917 9.78333 4 12 4C14.2167 4 16.1042 4.77917 17.6625 6.3375C19.2208 7.89583 20 9.78333 20 12C20 12.9833 19.8375 13.9083 19.5125 14.775C19.1875 15.6417 18.7333 16.4167 18.15 17.1ZM12 13C12.9833 13 13.8125 12.6625 14.4875 11.9875C15.1625 11.3125 15.5 10.4833 15.5 9.5C15.5 8.51667 15.1625 7.6875 14.4875 7.0125C13.8125 6.3375 12.9833 6 12 6C11.0167 6 10.1875 6.3375 9.5125 7.0125C8.8375 7.6875 8.5 8.51667 8.5 9.5C8.5 10.4833 8.8375 11.3125 9.5125 11.9875C10.1875 12.6625 11.0167 13 12 13ZM12 22C13.3833 22 14.6833 21.7375 15.9 21.2125C17.1167 20.6875 18.175 19.975 19.075 19.075C19.975 18.175 20.6875 17.1167 21.2125 15.9C21.7375 14.6833 22 13.3833 22 12C22 10.6167 21.7375 9.31667 21.2125 8.1C20.6875 6.88333 19.975 5.825 19.075 4.925C18.175 4.025 17.1167 3.3125 15.9 2.7875C14.6833 2.2625 13.3833 2 12 2C10.6167 2 9.31667 2.2625 8.1 2.7875C6.88333 3.3125 5.825 4.025 4.925 4.925C4.025 5.825 3.3125 6.88333 2.7875 8.1C2.2625 9.31667 2 10.6167 2 12C2 13.3833 2.2625 14.6833 2.7875 15.9C3.3125 17.1167 4.025 18.175 4.925 19.075C5.825 19.975 6.88333 20.6875 8.1 21.2125C9.31667 21.7375 10.6167 22 12 22ZM12 20C11.1167 20 10.2833 19.8708 9.5 19.6125C8.71667 19.3542 8 18.9833 7.35 18.5C8 18.0167 8.71667 17.6458 9.5 17.3875C10.2833 17.1292 11.1167 17 12 17C12.8833 17 13.7167 17.1292 14.5 17.3875C15.2833 17.6458 16 18.0167 16.65 18.5C16 18.9833 15.2833 19.3542 14.5 19.6125C13.7167 19.8708 12.8833 20 12 20ZM12 11C11.5667 11 11.2083 10.8583 10.925 10.575C10.6417 10.2917 10.5 9.93333 10.5 9.5C10.5 9.06667 10.6417 8.70833 10.925 8.425C11.2083 8.14167 11.5667 8 12 8C12.4333 8 12.7917 8.14167 13.075 8.425C13.3583 8.70833 13.5 9.06667 13.5 9.5C13.5 9.93333 13.3583 10.2917 13.075 10.575C12.7917 10.8583 12.4333 11 12 11Z' fill='white'/%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='233' height='78' viewBox='0 0 233 78' fill='none'%3E%3Cpath d='M0 40C0 28.9543 8.90069 16 19.8802 16H200.846C209.6 16 226.971 6.38491 233 0V78C226.971 71.6151 209.6 64 200.846 64H19.8802C8.90069 64 0 51.0457 0 40Z' fill='%2332b737'/%3E%3C/svg%3E");
    background-position: 26px center, center right;
}

.link_active {
    color: var(--text-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1_1437' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' transform='matrix(-1 0 0 1 24 0)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1_1437)'%3E%3Cpath d='M18.15 17.1C17.3 16.45 16.35 15.9375 15.3 15.5625C14.25 15.1875 13.15 15 12 15C10.85 15 9.75 15.1875 8.7 15.5625C7.65 15.9375 6.7 16.45 5.85 17.1C5.26667 16.4167 4.8125 15.6417 4.4875 14.775C4.1625 13.9083 4 12.9833 4 12C4 9.78333 4.77917 7.89583 6.3375 6.3375C7.89583 4.77917 9.78333 4 12 4C14.2167 4 16.1042 4.77917 17.6625 6.3375C19.2208 7.89583 20 9.78333 20 12C20 12.9833 19.8375 13.9083 19.5125 14.775C19.1875 15.6417 18.7333 16.4167 18.15 17.1ZM12 13C12.9833 13 13.8125 12.6625 14.4875 11.9875C15.1625 11.3125 15.5 10.4833 15.5 9.5C15.5 8.51667 15.1625 7.6875 14.4875 7.0125C13.8125 6.3375 12.9833 6 12 6C11.0167 6 10.1875 6.3375 9.5125 7.0125C8.8375 7.6875 8.5 8.51667 8.5 9.5C8.5 10.4833 8.8375 11.3125 9.5125 11.9875C10.1875 12.6625 11.0167 13 12 13ZM12 22C13.3833 22 14.6833 21.7375 15.9 21.2125C17.1167 20.6875 18.175 19.975 19.075 19.075C19.975 18.175 20.6875 17.1167 21.2125 15.9C21.7375 14.6833 22 13.3833 22 12C22 10.6167 21.7375 9.31667 21.2125 8.1C20.6875 6.88333 19.975 5.825 19.075 4.925C18.175 4.025 17.1167 3.3125 15.9 2.7875C14.6833 2.2625 13.3833 2 12 2C10.6167 2 9.31667 2.2625 8.1 2.7875C6.88333 3.3125 5.825 4.025 4.925 4.925C4.025 5.825 3.3125 6.88333 2.7875 8.1C2.2625 9.31667 2 10.6167 2 12C2 13.3833 2.2625 14.6833 2.7875 15.9C3.3125 17.1167 4.025 18.175 4.925 19.075C5.825 19.975 6.88333 20.6875 8.1 21.2125C9.31667 21.7375 10.6167 22 12 22ZM12 20C11.1167 20 10.2833 19.8708 9.5 19.6125C8.71667 19.3542 8 18.9833 7.35 18.5C8 18.0167 8.71667 17.6458 9.5 17.3875C10.2833 17.1292 11.1167 17 12 17C12.8833 17 13.7167 17.1292 14.5 17.3875C15.2833 17.6458 16 18.0167 16.65 18.5C16 18.9833 15.2833 19.3542 14.5 19.6125C13.7167 19.8708 12.8833 20 12 20ZM12 11C11.5667 11 11.2083 10.8583 10.925 10.575C10.6417 10.2917 10.5 9.93333 10.5 9.5C10.5 9.06667 10.6417 8.70833 10.925 8.425C11.2083 8.14167 11.5667 8 12 8C12.4333 8 12.7917 8.14167 13.075 8.425C13.3583 8.70833 13.5 9.06667 13.5 9.5C13.5 9.93333 13.3583 10.2917 13.075 10.575C12.7917 10.8583 12.4333 11 12 11Z' fill='white'/%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='233' height='78' viewBox='0 0 233 78' fill='none'%3E%3Cpath d='M0 40C0 28.9543 8.90069 16 19.8802 16H200.846C209.6 16 226.971 6.38491 233 0V78C226.971 71.6151 209.6 64 200.846 64H19.8802C8.90069 64 0 51.0457 0 40Z' fill='%2332b737'/%3E%3C/svg%3E");
    background-position: 26px center, center right;
}

.chief__btns {
    display: flex;
    align-items: center;
}

.btns_in {
    margin-right: 15px;
    padding: 10px 25px;

    color: var(--button-color);
    font-weight: 700;

    border-radius: 10px;
    border: 1px solid var(--button-color);
}

.btns_in:hover {
    color: var(--text-color);
    background-color: var(--button-color);
    transition: all 0.3s;
}

.btns_in:active {
    color: var(--text-color);
    background-color: var(--button-color);
}

.btns_up {
    padding: 10px 25px;

    font-weight: 700;
    background-color: var(--button-color);

    border-radius: 10px;
    border: 1px solid var(--button-color);
}

.btns_up:hover {
    color: var(--button-color);
    background-color: unset;
    transition: all 0.3s;
}

.btns_up:active {
    color: var(--button-color);
    background-color: unset;
}

.content {
    padding: 25px 0 0 15px;
    margin: 0 150px 30px 279px;

    border-left: 1px solid var(--content-color);
}

.banner_main,
.banner_header {
    display: block;
    max-width: 987px;
    max-height: 200px;
    width: 100%;
    margin: 0 auto;
}

.banner_main {
    max-width: 495px;
}

.main_btn {
    display: block;
    width: max-content;
    margin: 0 auto;
    padding: 13px 32px;

    color: var(--a-color);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Advent Pro', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;

    border-radius: 10px;
    border: 1px solid var(--a-color);
    background-color: transparent;
}

.main_btn:hover {
    color: var(--text-color);
    background-color: var(--a-color);
    transition: all 0.3s;
}

.main_content {
    margin-bottom: 50px;
}

table {
    width: 100%;
    margin-bottom: 50px;

    color: var(--table-text-color);
    text-align: center;
    background: transparent;

    border-collapse: collapse;
    border-spacing: 0;
}

table > tbody > tr {
    padding: 10px 0;
}

table > tbody > tr:nth-child(odd) {
    display: none;
}

.table_item {
    color: var(--text-color);
    background-color: var(--table-row-color);
}

table > tbody > tr > td {
    width: 25%;
    padding: 10px 20px;
}

table > tbody > tr > td:first-child {
    border-radius: 20px 0 0 20px;
}

table > tbody > tr > td:last-child {
    border-radius: 0 20px 20px 0;
}

footer {
    padding: 20px 0;
    text-align: center;
}

.footer_text {
    display: inline;
    color: var(--footer-text-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
}

@media (max-width: 1024px) {
    .mob_none {
        display: none;
    }

    .figure {
        display: none;
    }

    #arrow_up {
        right: 20px;
        bottom: 100px;
    }

    .chief {
        padding: 25px 15px;
    }

    .dropdown_menu {
        position: relative;
        z-index: 2;
        display: block;
        width: 40px;
        height: 40px;
        background-image: url("data:image/svg+xml,%3Csvg width='40' height='25' viewBox='0 0 40 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='3' rx='1.5' fill='%2332b737'/%3E%3Crect y='11' width='40' height='3' rx='1.5' fill='%2332b737'/%3E%3Crect y='22' width='40' height='3' rx='1.5' fill='%2332b737'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-position: center;

        cursor: pointer;
    }

    .menu_active {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M0.452179 29.548C-0.150416 28.9454 -0.150416 27.9684 0.452179 27.3658L27.3659 0.45195C27.9685 -0.150649 28.9455 -0.15065 29.5481 0.451949C30.1506 1.05455 30.1506 2.03156 29.5481 2.63415L2.63437 29.548C2.03178 30.1506 1.05477 30.1506 0.452179 29.548Z' fill='white'/%3E%3Cpath d='M0.451946 0.45198C1.05454 -0.150619 2.03154 -0.150619 2.63414 0.45198L29.5478 27.3658C30.1504 27.9684 30.1504 28.9455 29.5478 29.5481C28.9452 30.1507 27.9682 30.1507 27.3656 29.5481L0.451947 2.63419C-0.150648 2.03159 -0.150649 1.05458 0.451946 0.45198Z' fill='white'/%3E%3C/svg%3E");
    }

    .navigation {
        position: absolute;
        top: 0;
        z-index: 1;

        max-width: 100%;
        padding: 109px 15px 470px;

        background-color: #684506;

        border-radius: 0;
        border: none;
    }

    .navigation_link {
        max-width: 360px;
        width: 100%;
        margin: 0 auto 65px;
        padding: 10px 0;

        color: var(--text-color);
        text-align: center;

        background-image: unset;
    }

    .navigation_link:hover {
        color: var(--nav-a-mob-color);
        border-radius: 10px;
        background-image: unset;
        background-color: var(--nav-a-color);
    }

    .link_active {
        color: var(--nav-a-mob-color);
        border-radius: 10px;
        background-image: unset;
        background-color: var(--nav-a-color);
    }

    .chief__btns {
        display: block;
        width: 330px;
        margin: 30px auto 0;

        position: absolute;
        top: 86px;
        left: calc(50% - 330px / 2);
    }

    .btns_in {
        display: block;
        margin-right: 0;
        margin-bottom: 13px;
        width: 100%;
    }

    .btns_up {
        display: block;
        width: 100%;
    }

    .content {
        padding: 149px 15px 0;
        margin: 0 0 80px;

        border-left: 0;
    }
}

@media (max-width: 840px) {
    table {
        margin: 0 auto 10px;
        font-size: 14px;
        line-height: 19px;
        word-wrap: break-word;
    }

    table > tbody > tr:nth-child(odd) {
        display: contents;
    }

    table > tbody > tr > th {
        padding: 10px 20px;
        border-radius: 20px 20px 0 0;
    }

    table > tbody > tr > td {
        width: 33%;
    }

    table > tbody > tr > td:first-child {
        display: none;
    }

    table > tbody > tr > td:nth-child(2) {
        border-radius: 0 0 0 20px;
    }

    table > tbody > tr > td:last-child {
        border-radius: 0 0 20px 0;
    }

    .last_table > tbody > tr > td {
        border-radius: 0 0 20px 20px !important;
    }
}

@media (max-width: 390px) {
    .desctop_none {
        display: contents;
    }

    .bunch_4 {
        top: 4300px;
        right: calc(50% - 1px / 2);
        box-shadow: 0 0 100px 100px rgba(255, 150, 121, 0.349),
            0 0 100px 150px rgba(117, 62, 55, 0.219);
    }

    .bunch_5 {
        top: 6100px;
        right: calc(50% - 1px / 2);
        box-shadow: 0 0 100px 100px rgba(255, 150, 121, 0.349),
            0 0 100px 150px rgba(117, 62, 55, 0.219);
    }

    .bunch_6 {
        top: 7100px;
        right: calc(50% - 1px / 2);
        box-shadow: 0 0 100px 100px rgba(255, 150, 121, 0.349),
            0 0 100px 150px rgba(117, 62, 55, 0.219);
    }
}
