/* Font */
@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat/static/Montserrat-Thin.ttf");
    font-weight: 100;
}
@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat/static/Montserrat-ExtraLight.ttf");
    font-weight: 200;
}
@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat/static/Montserrat-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat/static/Montserrat-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat/static/Montserrat-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat/static/Montserrat-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat/static/Montserrat-ExtraBold.ttf");
    font-weight: 800;
}
@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat/static/Montserrat-Black.ttf");
    font-weight: 900;
}


@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/static/Inter-Thin.ttf");
    font-weight: 100;
}
@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/static/Inter-ExtraLight.ttf");
    font-weight: 200;
}
@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/static/Inter-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/static/Inter-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/static/Inter-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/static/Inter-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/static/Inter-ExtraBold.ttf");
    font-weight: 800;
}
@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/static/Inter-Black.ttf");
    font-weight: 900;
}
/* Font */


/* Total */
* {
    font-family: 'Montserrat';
    box-sizing: border-box;
}
html,
body {
    margin: 0;
}
body {
    overflow-x: hidden;
}
body::-webkit-scrollbar,
body::-webkit-scrollbar-thumb {
    width: 2px;
    height: 2px;
}
body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
.page {
    position: relative;
    min-height: 70vh;
}
.container {
    position: relative;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1480px) {
    /* .container {
        padding: 0 20px;
    } */
}
.title {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 600;
    font-size: 36px;
    line-height: 55px;
    color: #000000;
}
/* Total */


/* Header */
.header {
    position: relative;
    width: 100%;
    height: 89px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 70px;
    padding-right: 90px;
}
.header_left {

}
.header_right {
    display: flex;
    align-items: center;
    gap: 72px;

    font-weight: 400;
    font-size: 20px;
    line-height: 55px;
    color: #000000;
}
.header_right a {
    cursor: pointer;
}
.header_lang_block {
    position: relative;
    font-weight: 500;
    font-size: 22px;
    line-height: 50px;
    color: #000000;
    text-transform: uppercase;
}
.header_lang_current {
    cursor: pointer;
}
.header_lang_list {
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    display: none;
    z-index: 1;
}
.header_lang_list.open {
    display: flex;
}

/* Header */


/* Footer */
.footer {
    position: relative;
    background: #056B37;
    padding: 37px 80px 210px;
}
.footer:after {
    content: "";
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: 48px;
    background: linear-gradient(315deg, #056B37 25%, transparent 25%) 10px -48px,
                linear-gradient(45deg, #056B37 25%, transparent 25%) 10px -48px;
    background-size: 96px 96px;
}
.footer_title {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 500;
    font-size: 36px;
    line-height: 55px;
    color: #FFFFFF;
}
.footer_block {
    margin-top: 19px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer_info {

}
.footer_info_line {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 500;
    font-size: 24px;
    line-height: 55px;
    color: #FFFFFF;
    white-space: nowrap;
}
.footer_links {
    font-weight: 500;
    font-size: 24px;
    line-height: 55px;
    color: #FFFFFF;
}
.footer_links a {
    display: block;
}
.footer_logo_soc {

}
.footer_logo {
    max-width: 288px;
    margin-bottom: 43px;
}
.footer_soc_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}
.footer_soc_list a svg {
    display: block;
}
/* Footer */


/* Main */
.main_slider {
    width: 100%;
}
.main_slide {
    position: relative;
    width: 100%;
}
.main_slide_img {
    width: 100%;
    height: auto;
}
.main_slide_data {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    padding-right: 90px;
    padding-bottom: 180px;
}
.main_slide_logo_block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main_slide_logo {
    margin-bottom: 10px;
}
.main_slide_title {
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    line-height: 51px;
    color: #FFFFFF;
    text-align: center;
}
.main_slide_text {
    margin-top: 8px;
    max-width: 729px;
    font-style: normal;
    font-weight: 500;
    font-size: 29px;
    line-height: 45px;
    text-align: right;
    color: #FFFFFF;
}

.desc_title {
    padding: 60px 96px;
}
.desc_list {

}
.desc_line {
    position: relative;
    margin-bottom: 67px;
}
.desc_line:last-child {
    margin-bottom: 0;
}
.desc_line img {
    position: relative;
    width: 100%;
    z-index: 1;
}
.desc_line_data_block {
    position: absolute;
    width: 50%;
    max-width: 693px;
    top: 0;
    z-index: 2;
}
.desc_line_data_block.left {
    left: 0;
}
.desc_line_data_block.right {
    right: 0;
}
.desc_line_data {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    padding-top: 74px;
    padding-right: 80px;
    padding-left: 96px;
    padding-bottom: 80px;

    text-indent: 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
   /* text-align: justify; */
    color: #FFFFFF;
}
.desc_line_data:after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 100%;
    height: 32px;
    background:
            linear-gradient(135deg, rgba(0,0,0,0.6) 25%, transparent 25%) -10px 0,
            linear-gradient(225deg, rgba(0,0,0,0.6) 25%, transparent 25%) -10px 0;
    background-size: 64px 64px;
}

.prod_title {
    padding: 60px 91px 62px;
}

.prod_space {
    position: relative;
    padding: 51px 82px;
    background-size: cover !important;
}
.prod_space:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 107, 55, 0.7);
    z-index: 1;
}
.prod_header {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.prod_block {
    position: relative;
    z-index: 2;
}
.prod_header_line {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    line-height: 55px;
    color: #FFFFFF;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}
.prod_header_line.active {
    border-bottom: 1px solid #FFFFFF;
}

.prod_body {
    position: relative;
    margin-top: 108px;
    margin-bottom: 111px;
}
.prod_body_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.prod_body_arrow.prev {
    left: 15px;
}
.prod_body_arrow.next {
    right: 15px;
}
.prod_body_list {
    /* max-width: 1068px; */
    max-width: 1080px;
    margin: 0 auto;
    /* min-height: 368px; */
}
.prod_body_slider {

}
.prod_body_slider .slick-track {
    display: flex;
    align-items: center;
}
.prod_body_line {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    width: 286px;
    height: 368px;
    background: #FFFFFF;
    box-shadow: 3px 4px 4px 3px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    overflow: hidden;
}
.prod_body_line_space {
    width: calc(286px + 22px);
}
.prod_body_line_space.total_active .prod_body_line,
.prod_body_line_space.active .prod_body_line {
    transform: translateX(-50%);
    left: 50%;
    width: 364px;
    height: 462px;
}

.prod_body_slider .prod_body_line_space,
.prod_body_slider .prod_body_line {
    transition-property: width, opacity;
    transition-duration: 300ms;
}

.prod_body_line_space .prod_body_line_img,
.prod_body_line_space.active .prod_body_line_text {
    display: block;
}
.prod_body_line_space.active .prod_body_line_img,
.prod_body_line_space .prod_body_line_text {
    display: none;
}
.prod_body_line_img {}
.prod_body_line_title {
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    line-height: 55px;
    color: #000000;
}
.prod_body_line_text {
    max-width: 272px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;  
    color: #000000;
}
.prod_body_line_text p {
    margin: 0;
}

.service_title {
    padding: 63px 89px 57px;
}
.service_space {
    position: relative;
    padding: 207px 60px 123px;
}
.service_space:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.service_list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 96px 150px;
    flex-wrap: wrap;
    max-width: 990px;
    margin: 0 auto;
    z-index: 1;
}
.service_line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 226px;
}
.service_line_img {
    margin-bottom: 24px;
}
.service_line_title {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
}

.service_bottom {
    padding-top: 69px;
    padding-left: 96px;
    padding-right: 86px;
    display: flex;
    gap: 56px 50px;
    flex-wrap: wrap;
}

.service_bottom_line {
    position: relative;
    width: calc(50% - 25px);
    border-radius: 30px;
    overflow: hidden;
}
.service_bottom_line.full {
    width: 100%;
}
.service_bottom_line_img {
    width: 100%;
    height: 100%;
    border-radius: 30px 30px 0 0;
}
.service_bottom_line.full .service_bottom_line_img {
    border-radius: 30px 0 0 30px;
}
.service_bottom_line_icon {
    position: absolute;
    top: 38px;
    left: 38px;
    width: 118px;
    z-index: 1;
}
.service_bottom_line_data_block {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.service_bottom_line_data {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 58px 58px 46px;
}
.service_bottom_line_data:after {
    content: "";
    position: absolute;
    top: -32px;
    left: 0;
    width: 100%;
    height: 32px;
    background:
            linear-gradient(315deg, rgba(0, 0, 0, 0.6) 25%, transparent 25%) 10px -32px,
            linear-gradient(45deg, rgba(0, 0, 0, 0.6) 25%, transparent 25%) 10px -32px;
    background-size: 64px 64px;
}

.service_bottom_line.full .service_bottom_line_data_block {
    width: auto;
    height: 100%;
}
.service_bottom_line.full .service_bottom_line_data_block .service_bottom_line_data {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 70px;
}
.service_bottom_line.full .service_bottom_line_data_block .service_bottom_line_data:after {
    content: "";
    position: absolute;
    left: -32px;
    top: 0;
    width: 32px;
    height: 100%;
    background:
            linear-gradient(-135deg, rgba(0,0,0,0.6) 25%, transparent 25%) -32px 0px,
            linear-gradient(-45deg, rgba(0,0,0,0.6) 25%, transparent 25%) -32px 0;
    background-size: 64px 64px;
}
.service_bottom_line_text {
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
}
.service_bottom_line.full .service_bottom_line_text {
    max-width: 278px;
}
.service_bottom_line_btn {
    margin-top: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    height: 44px;
    background: #056B37;
    border-radius: 15px;

    font-weight: 700;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    color: #FFFFFF;
}

.produce_title {
    padding: 62px 94px 60px;
}

.produce_space {
    position: relative;
    padding: 140px 159px 125px;
}
.produce_space:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(181, 179, 179, 0) 0%, rgba(93, 93, 93, 0.241259) 22.12%, rgba(0, 0, 0, 0.5) 59.13%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}
.produce_list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 93px 0;
    z-index: 1;
}
.produce_line {
    min-width: 434px;
    width: auto;
    max-width: 50%;
}
.produce_line.full {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
}

.produce_line_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 45px;
    color: #FFFFFF;
}
.produce_line_text {
    margin-top: 24px;
    font-weight: 700;
    font-size: 64px;
    line-height: 40px;
    color: #FFFFFF;
}

.text_block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 77px;
    padding: 40px 130px;
}
.text_block img {
    max-width: 118px;
}
.text_block div {
    max-width: 949px;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
   
    color: #000000;
}

.agro_space {
    position: relative;
    padding: 140px;
}
.agro_space:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
.agro_list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 110px 168px;
    z-index: 1;
}
.agro_line {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 28px;
    max-width: 230px;
}
.agro_line_text {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
}

.adv_block {
    padding: 133px 222px 183px;
}
.adv_list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 68px 80px;
}
.adv_line {
    width: calc(50% - 40px);
    max-width: 393px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.adv_line img {
    max-width: 120px;
}
.adv_line_text {
    text-indent: 45px;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    
    color: #000000;
}


.global_block {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}
.global_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 137px;
    background: linear-gradient(180deg, #0AAD5A 0%, #056B37 100%);
    border-radius: 25px 0px 0px 24px;
}


.cert_block {
    padding: 17px 90px 155px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 125px;
}
.cert_half {
    width: 50%;
}
.cert_half.big {
    width: 100%;
    max-width: 633px;
}
.cert_half.little {
    width: 100%;
    max-width: calc(100% - 633px - 125px);
}
.cert_title {
    margin-bottom: 50px;
}
.cert_list {
    font-weight: 500;
    font-size: 16px;
    line-height: 50px;
    color: #000000;
    white-space: nowrap;
}
.cert_line {
    display: flex;
    align-items: center;
    gap: 37px;
}
.cert_line svg {
    min-width: 28px;
}

.newcert_block {
    padding: 0 145px 171px;
}
.newcert_subtitle {
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: #056B37;
}
.newcert_text {
    margin-top: 22px;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    
    color: #000000;
    margin-bottom: 25px;
}
.newcert_text p {
    margin: 0;
}
.newcert_bottom_text {
    margin-top: 33px;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #000000;
}
.newcert_bottom_text p {
    margin: 0;
}

/* Main */

/* Animation */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.from_below {
    transform: translateY(100px);
}
.animate-on-scroll.from_left {
    transform: translateY(0) translateX(-100px);
}
.animate-on-scroll.from_right {
    transform: translateY(0) translateX(100px);
}
.animate-on-scroll.no_move {
    transform: translateY(0) translateX(0);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}



.animate-on-scroll.slow {
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* Animation */


/* Cookies */
.cookies {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 30px 30px 0 0;
    width: 100%;
    min-height: 100px;
    max-width: 1440px;
    padding: 20px;
    z-index: 9;
}
.cookies_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    max-width: 640px;
}
.cookies_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #056B37;
    border-radius: 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 45px;
    color: #FFFFFF;
    cursor: pointer;
}
/* Cookies */

/* Scroll up */
.scroll_up {
    position: fixed;
    right: 50px;
    bottom: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background: #056B37;
    border-radius: 100px;
    border: solid thin #ffffff;
    cursor: pointer;
    z-index: 10;
}
.scroll_up svg {
    width: 35px;
}
/* Scroll up */

/* Copyright */
.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    padding: 20px 40px;
}
/* Copyright */