/* @font-face {
    font-family: 'Open Sans';
    src: url('./fonts/OpenSans-VariableFont_wdth\,wght.ttf');
} */

@keyframes pulse {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    to {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pulse {
    animation: pulse 0.9s infinite;
}






.screen_bg {
    /* width: 100vw; */
    min-height: 100vh;

    position: relative;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    overflow-x: hidden;
    overflow-y: auto;
}
.screen_bg::before {
    content: '';
    background-color: rgba(0,0,0,0.2);

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  	z-index: 550;
}
.screen_bg_1 {
    background-image: url('/upload/landing_assets/agriclime_app/bg1.png');
    position: relative;
    z-index: 15;
  min-height: 80vh;
}
.screen_bg_2 {
    background-image: url('/upload/landing_assets/agriclime_app/bg2.png');
    position: relative;
    z-index: 16;
}
.screen_bg_3 {
    background-image: url('/upload/landing_assets/agriclime_app/bg3.png');
    position: relative;
    z-index: 17;
}
.screen_bg_4 {
    background-image: url('/upload/landing_assets/agriclime_app/bg4.png');
    position: relative;
    z-index: 18;
}
.screen_bg_5 {
    background-image: url('/upload/landing_assets/agriclime_app/bg5.png');
    position: relative;
    z-index: 19;
}
.screen_bg_6 {
    background-image: url('/sites/g/files/kgtney371/files/media/image/2025/03/27/Corn%20field%20in%20early%20morning%20light%20%281%29.jpg');
    position: relative;
    z-index: 19;
}
.screen_hidden {
    display: none;
}

.screen_container {
    position: relative;
    z-index: 600;

    max-width: calc(100vw - 112px);
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
}
@media screen and (min-width: 1440px) {
    .screen_container {
        max-width: calc(1440px - 112px);
    }
}


.screen_content {
    border: 1px solid white;
    flex-grow: 1;
}


.screen_header {
    margin-top: 24px;
}
.screen_title {
    text-align: center;
    color: white;
    font-size: 36px;
    display: block;
/*     font-family: 'Open Sans'; */
    font-weight: 600;
}
.screen_subtitle {
    text-align: center;
    color: white;
    font-size: 24px;
    display: block;
/*     font-family: 'Open Sans'; */
    font-weight: 600;

    margin-top: 21px;
}
.screen_description {
    text-align: center;
    color: white;
    font-size: 18px;
    display: block;
/*     font-family: 'Open Sans'; */
    margin-bottom: 20px;
    padding-left: 112px;
    padding-right: 112px;

    padding-bottom: 20px;
}


.map {
    flex-grow: 1;
    width: 100%;
  
    display: none!important;
}

.map_wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.map_bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 880px;
}
.map_title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    max-width: 300px;
    text-align: center;
  
  display: none;
}
.map_button {
    margin-top: 17px;
    margin-bottom: 17.8px;
}
.map_button:disabled {
    animation: none;
}
.map_empty_place {
    width: 320px;
    max-width: 320px;
}
.map_aside {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    max-width: 320px;
    width: 320px;
    padding-left: 19px;
    box-sizing: border-box;
}
.map_aside p {
    margin: 0;
    margin-bottom: 17px;
    max-width: 320px;

    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
}
.map_aside ol {
    padding: 0;
    margin: 0;
}
.map_aside ol li {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
}


.m_region {
    fill: #eb8200;
    stroke: transparent;
    stroke-width: 1px;
    cursor: pointer;
    position: relative;
    transition: all .3s;
    z-index: 5;
}
.m_region:not(.region_locked):not(text):hover {
    transition: all .3s;
    stroke: black;
    stroke-width: 2.5px;
}

.region_locked {
    fill: #f5f5f5;
    opacity: 0.6;
    stroke: none;
    cursor: not-allowed;

    transition: all .3s;
}

.region_selected {
    fill: #00a0be;

    transition: all .3s;
}
g.region_selected path {
    fill: #00a0be;
    
    transition: all .3s;
}

.m_region text {
    stroke: none!important
}

.buttons_wrap {
    display: flex;
    justify-content: space-between;
}
.button_agriclime {
    background-color: #00A0BE!important;
    border-radius: 20px;
    padding-left: 23px;
    padding-right: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: fit-content;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    outline: none;
}
.button_agriclime:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}










.blur_block {
    position: relative;
    backdrop-filter: blur(10px);

    border-radius: 24px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
}

.blur_block > div {
    position: relative;
    z-index: 2;
}



.yellow_block {
    background-color: #FCE500;
    border-radius: 12px;
}




.weather_generator {
    width: fit-content;
    margin: 0 auto;
}
.weather_blur_block {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 96px;
    padding-right: 96px;

    margin-bottom: 16px;
}
.slots {
    display: flex;
}
.slot_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: fit-content;
    margin-left: 14px;
    margin-right: 14px;
}
.slot_wrap:first-of-type {
    margin-right: 0;
}
.slot_wrap:last-of-type {
    margin-left: 0;
}
.slot_title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 14px;
}
.slot {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    border: 4px solid #FFFFFF;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}
.slot img {
    position: absolute;
    width: auto;
    height: 80px;
    transition: transform 0.2s ease;
    top: calc(50% - 30px);
    bottom: 0;
}

.scale {
    transform: scale(1.2);
}

.slot_text {
    margin-bottom: 11px;
    font-size: 16px;
    font-weight: 600;
    display: none;
    color: white;
}
.weather_result {
    display: none;
    color: #FFFFFF;
    font-size: 18px;
    text-align: center;
    margin-top: 23px;
    margin-bottom: 16px;
}
.weather_result.active {
    display: block;
}

.fade-in {
    animation: fadeIn 0.5s forwards;
}
.weather_button {
    background-color: #EB8200!important;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}









.calculation {
    max-width: 880px;
    margin: 0 auto; 
}
.calculation_top {
    position: relative;
    margin-bottom: 16px;
    display: flex;
}
.calculation_hot {
    width: 50%;
    margin-right: 8px;

    padding-left: 24px;
    padding-right: 24px;
    padding-top: 24px;
    padding-bottom: 25px;
}
.calculation_rain {
    width: 50%;
    margin-left: 8px;

    padding-left: 24px;
    padding-right: 24px;
    padding-top: 24px;
    padding-bottom: 25px;

    position: relative;
    z-index: 4;
}
.calculation_title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 9px;
}
.calculation_subtitle {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 18px;
}
.calculation_percent {
    height: 43px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 24px;
    
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 16px;
    font-weight: 700;
    color: #262626;
}
.calculation_description {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: white;
    text-align: center;
}
.calculation_top_decor {
    width: 43px;
    height: 43px;
    position: absolute;
    top: calc(50% - 4px);
    right: calc(50% - 21px);
    z-index: 5;

    display: flex;
    justify-content: center;
    align-items: center;
}
.calculation_bottom {
    position: relative;
    z-index: 5;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding-top: 20px;
    padding-bottom: 23px;

    margin-bottom: 16px;
}
.calculation_bottom_decor {
    width: 43px;
    height: 43px;
    position: absolute!important;
    top: calc(0% - 37px);
    right: calc(50% - 21px);
    z-index: 6!important;

    display: flex;
    justify-content: center;
    align-items: center;
}
.calculation_result_title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 13px;
}
.calculation_result {
    padding-left: 32px;
    padding-right: 32px;
    height: 62px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 32px;
    font-weight: 700;
    color: #262626;
}





.payments_top {
    display: flex;
}
.payments_top_left {
    width: 50%;
    display: flex;
    align-items: center;

    padding-left: 57px;
    padding-right: 11px;
    padding-top: 31px;
    padding-bottom: 30px;
    box-sizing: border-box;
}
.payments_top_right {
    width: 50%;
    display: flex;
    align-items: center;

    padding-left: 38px;
    padding-right: 99px;
    padding-top: 31px;
    padding-bottom: 30px;
    box-sizing: border-box;
}
.payments_title {
    font-size: 21px;
    font-weight: 600;
    color: #FFFFFF;
}
.payments_top_left .payments_title {
    margin-right: 48px;
}
.payments_top_right .payments_title {
    margin-right: 43px;
}

.payments_field {
    border-radius: 12px;
    background-color: #FFFFFF;
    padding-left: 60px;
    padding-right: 82px;
    height: 54px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: fit-content;
    max-width: 341px;
    box-sizing: border-box;
}
/* .payments_field.overflow {
    overflow-x: scroll;
}
.payments_field.overflow::-webkit-scrollbar {
    width: 1px;
}

.payments_field.overflow::-webkit-scrollbar-track {
    background: white;
}

.payments_field.overflow::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 2px;
    border: 0.5px solid orange;
} */
.payments_input {
    border: none;
    outline: none;
    background-color: transparent;
    flex-grow: 1;
    max-width: 100%;

    font-size: 21px;
    font-weight: 700;
    color: #262626;
    text-align: right;

    /* width: 0;
    height: 0;
    opacity: 0;
    position: absolute; */
}
.payments_input_imitation {
    font-size: 21px;
    font-weight: 700;
    color: #262626;
    text-align: right;
    flex-grow: 1;

                display: flex;
                    /* font-family: monospace;
                    border: 1px solid #ccc;*/
                    padding: 5px; 
                    position: relative;
}
.payments_input_imitation.active::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1em;
    background: black;
    animation: blink 1s steps(1) infinite;
    vertical-align: bottom;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.payments_currency {
    font-size: 21px;
    font-weight: 700;
    color: #262626;

    margin-left: 8px;
}

.payments_result {
    padding-left: 65px;
    padding-right: 64px;
    height: 54px;
    max-width: 250px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    font-size: 21px;
    font-weight: 700;
    color: #262626;
}





.products_title {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;

    margin-top: 8px;
    margin-bottom: 13px;
}
.products_wrap {
    display: flex;

    margin-left: -8px;
    margin-right: -8px;

    margin-bottom: 16px;
}
.products_list {
    display: flex;
    align-items: center;
    flex-direction: column;

    width: calc(25% - 16px);
    margin-left: 8px;
    margin-right: 8px;

    padding-top: 17px;
    padding-bottom: 17px;
    padding-left: 30px;
    padding-right: 30px;
}
.products_list_title {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 9px;
    text-align: center;
}
.products_list ul {
    margin: 0;
    padding: 0;
}
.products_list ul:first-of-type {
    margin-bottom: 17px;
}
.products_list ul li {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    list-style: none;
}








.frost {
    display: flex;

    margin-bottom: 16px;
}
.frost_text {
    width: calc(50% - 8px);
    margin-right: 8px;

    padding-left: 24px;
    padding-right: 90px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.frost_text p, .frost_text li {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 22.5px;
    margin-bottom: 16px;
}
.frost_products {
    width: calc(50% - 8px);
    margin-left: 8px;

    display: flex;

}
.frost_products_list {
    width: calc(50% - 8px);
    margin-right: 8px;

    padding-left: 30px;
    padding-right: 30px;
    padding-top: 24px;
    padding-bottom: 39px;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.frost_products_title {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 17px;
}
.frost_products ul {
    margin: 0;
    padding: 0;
}
.frost_products ul:first-of-type {
    margin-bottom: 17px;
}
.frost_products ul li {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    list-style: none;
}


.frost_benefit {
    width: calc(50% - 8px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    padding: 5px;
    font-size: 53px;
    font-weight: 600;
    color: #000000;
    text-align: center;
}


.region_select_button {
    background-color: #FFFFFF;
    border-radius: 20px;
    width: 240px;
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 22px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;

    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #262626;
}
.region_select_button::after {
    content: '';
    background-image: url('/upload/landing_assets/agriclime_app/arrow-down.svg');
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 10px;
    top: 8px;
}
.region_select_button.active::after {
    transform: rotate(180deg);
}

.region_select_list_wrap {
    height: 0;
    overflow: hidden;
    color: transparent;
    background: transparent;

    position: absolute;
    top: -148px;

    width: 240px;
    overflow: hidden;
}
.region_select_list_wrap.active {
    height: auto;
    max-height: 70vh;
    

    padding-bottom: 40px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    overflow-x: hidden;
}
.region_select_list {
    color: #262626;
    background: #FFFFFF;

    overflow-y: auto;
    height: calc(70vh + 40px);
    box-sizing: border-box;
    padding-bottom: 40px;
}



.region_select_item {
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 22px;
    box-sizing: border-box;
    padding-right: 5px;

    cursor: pointer;
}





.products_title_wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.products_culture_list {
    height: 0;
    overflow: hidden;
    color: transparent;
    background: transparent;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;

    width: 190px;
    overflow: hidden;

    background: #FFFFFF;
    color: #262626;
}

.products_culture_list.active {
    height: auto;
    max-height: 70vh;

    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    overflow-x: hidden;
}


.products_culture {}
.products_culture {
    background-color: #FFFFFF;
    border-radius: 20px;
    width: 190px;
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 22px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    margin-left: 50px;

    z-index: 6000;

    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #262626;
}

.products_culture::after {
    content: '';
    background-image: url('/upload/landing_assets/agriclime_app/arrow-down.svg');
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 10px;
    top: 8px;

    z-index: 6000;
}

.products_culture.active::after {
    transform: rotate(180deg);
}


.products_tab {
    display: none;
}
.products_tab.active {
    display: block;
}


.products_culture_item {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #262626;

    padding-left: 22px;
    padding-right: 5px;
    height: 40px;
    display: flex;
    align-items: center;
}

.screen_header__relative {
    position: relative;
}
.region_select {
    display: flex;
    justify-content: center;
    z-index: 10000;
    position: absolute;
    bottom: -90px;
    left: 0;
    right: 0;
}
.region_select_list_wrap.active {
    height: 50vh;
    max-height: 50vh;
    top: 0;
}
.region_select_list {
    height: 55vh;
    padding-top: 40px;
    padding-bottom: 20px;
}

.marked_list {
	list-style: disc;
  	padding-left: 18px;
  	margin-top: 8px;
}

@media screen and (-webkit-device-pixel-ratio: 1.25) {
    * {
        zoom: 98%;
    }
    body {
        overflow-x: hidden;
    }
    .screen_bg {
        height: 125vh;
        overflow-y: auto;
    }


    .region_select {
        position: relative;
    }
    .region_select_list {
        padding-bottom: 60px;
    }
    .region_select_list_wrap {
        top: -70vh;
        top: calc(-70vh + 40px);
    }
    .region_select_list_wrap.active {
        padding-bottom: 0;
    }
}


/* medium */
@media screen and (max-width: 1120px) {
    .payments_top {
        flex-direction: column;
    }
    .payments_top_left,
    .payments_top_right {
        width: 100%;
        flex-direction: column;

        padding-top: 12px;
        padding-left: 54px;
        padding-right: 54px;
        padding-bottom: 19px;
    }
    .payments_title {
        font-size: 16px;
        margin-right: 0!important;
        margin-bottom: 16px;
    }
    .payments_field {
        max-width: 100%;
        padding-left: 60px;
        padding-right: 92px;
    }
    .products_title_wrap {
        flex-direction: column;
    }
    .products_title {
        font-size: 16px;
        margin-top: 16px;
        margin-bottom: 11px;
        line-height: 21px;
    }
    .products_culture {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .products_wrap {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 6px;
        flex-wrap: wrap;
    }
    .products_list {
        width: calc(50% - 5px);
        margin: 0;
        margin-bottom: 10px;
        box-sizing: border-box;

        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .products_list:nth-child(odd) {
        margin-right: 5px;
    }
    .products_list:nth-child(even) {
        margin-left: 5px;
    }
    .products_list_title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .products_list ul li {
        font-size: 12px;
    }
}


@media screen and (max-width: 991px) {
  	.screen_bg {
      	margin-left: -1rem;
    	margin-right: -1rem;
  	}
    .screen_container {
        max-width: calc(100vw - 32px);
    }
    .screen_header {
        margin-top: 16px;
    }
    .logo {
        display: block;
        width: 174px;
        margin-bottom: 44px;
    }
    .logo img {
        width: 100%;
    }
    .screen_title {
        font-size: 24px;
        /* font-weight: 600; */
        line-height: 32px;
    }
    .screen_subtitle {
        margin-top: 20px;
        font-size: 18px;
    }

    .region_select {
        position: relative;
        bottom: 0;
        margin-top: 44px;
    }
    .region_select_button {
        font-size: 14px;
    }
    
    
    .map {
        display: none;
    }
    .map_bottom {
        flex-direction: column;
    }
    .map_title {
        height: 32px;
        margin-top: 36px;
    }
    .map_button {
        margin-top: 36px;
    }
    .screen_description {
        font-size: 12px;
        line-height: 16px;
        padding: 0;
        padding-bottom: 20px;
    }



    .weather_generator {
        width: 100%;
    }
    .weather_blur_block {
        padding-top: 30px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 28px;
    }

    .slot_wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        width: calc(100% / 3);
    }
    .slot_wrap:first-of-type {
        margin-left: 0;
    }
    .slot_wrap:last-of-type {
        margin-right: 0;
    }
    .slot_title {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .slot {
        width: 25vw;
        height: 25vw;
        justify-content: center;
        box-sizing: border-box;
        padding: 5px;
    }
    .slot img {
        position: static;
        max-height: 100%;
        max-width: 100%;
    }
    .scale {
        transform: scale(1.1)!important;
    }
    .slot_text {
        font-size: 10px;
        margin-bottom: 0;
        line-height: 16px;
        height: 16px;
    }
    .weather_result {
        font-size: 15px;
        margin-top: 20px;
        margin-bottom: 50px;
        min-height: 63px;

        opacity: 0;
        display: block;
    }
    .weather_result.active {
        display: block;
        opacity: 1;
    }


    .calculation {
        max-width: 100%;
        margin-top: 16px;
    }
    .calculation_top {
        flex-direction: column;
    }
    .calculation_hot,
    .calculation_rain {
        width: 100%;
        box-sizing: border-box;

        padding-top: 14px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 22px;
    }
    .calculation_hot {
        margin-right: 0;
        margin-bottom: 16px;
    }
    .calculation_rain {
        margin-left: 0;
    }
    .calculation_title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .calculation_subtitle {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .calculation_percent {
        height: 38px;
        font-size: 12px;
        margin-bottom: 8px;
    }
    .calculation_description {
        font-size: 12px;
        line-height: 16px;
    }
    .calculation_top_decor {
        top: calc(50% - 16px);
    }
    .calculation_result_title {
        font-size: 16px;
        line-height: 21px;
    }
    .calculation_result {
        font-size: 18px;
        height: 45px;
    }


    .payments_top {
        flex-direction: column;
    }
    .payments_top_left,
    .payments_top_right {
        width: 100%;
        flex-direction: column;

        padding-top: 12px;
        padding-left: 54px;
        padding-right: 54px;
        padding-bottom: 19px;
    }
    .payments_title {
        font-size: 16px;
        margin-right: 0!important;
        margin-bottom: 16px;
    }
    .payments_field {
        max-width: 100%;
        padding-left: 60px;
        padding-right: 92px;
    }
    .products_title_wrap {
        flex-direction: column;
    }
    .products_title {
        font-size: 16px;
        margin-top: 16px;
        margin-bottom: 11px;
        line-height: 21px;
    }
    .products_culture {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .products_wrap {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 6px;
        flex-wrap: wrap;
    }
    .products_list {
        width: calc(50% - 5px);
        margin: 0;
        margin-bottom: 10px;
        box-sizing: border-box;

        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .products_list:nth-child(odd) {
        margin-right: 5px;
    }
    .products_list:nth-child(even) {
        margin-left: 5px;
    }
    .products_list_title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .products_list ul li {
        font-size: 12px;
    }



    .frost {
        flex-wrap: wrap;
        margin-top: 24px;
    }
    .frost_text {
        width: 100%;
        padding: 14px;
        margin-bottom: 10px;
        margin-right: 0;
    }
    .frost_text p {
        margin-top: 0;
        margin-bottom: 16px;
        font-size: 12px;
        line-height: 16px;
    }
    .frost_products {
        width: 100%;
        margin-left: 0;
    }
    .frost_products_list {
        width: calc(50% - 5px);
        margin-right: 5px;
        padding-top: 12px;
        padding-bottom: 16px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .frost_products_title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .frost_products ul li {
        font-size: 12px;
    }
    .frost_products ul:first-of-type {
        margin-bottom: 16px;
    }
    .frost_benefit {
        width: calc(50% - 5px);
        margin-left: 5px;
        font-size: 33px;
        font-weight: 700;
        padding-left: 5px;
        padding-right: 5px;
    }

    .sup-wrap {
        position: relative;
        padding-right: 6px;
    }
    .sup-wrap sup {
        position: absolute;
        top: -6px;
        right: 0;
    }
}

