* {
    padding: 0;
    margin: 0;
    border: 0
}

*,*:before,*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:focus,:active {
    outline: none
}

a:focus,a:active {
    outline: none
}

nav,footer,header,aside {
    display: block
}

input,button,textarea {
    font-family: inherit
}

input::-ms-clear {
    display: none
}

button {
    cursor: pointer
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

a,a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1,h2,h3,h4,h5,h6 {
    font-size: inherit
}

:root {
    --primary-color: rgb(39, 93, 43);
    --secondary-color: #1e9923;
    --gradient: linear-gradient(97.31deg,#1e9923 -20%,#275d2b 112%);
    --gradient-2: linear-gradient(180deg,#1e9923 0%,#275d2b 100%);
    --gradient-hover: linear-gradient(98.12deg,#27b72d2 6.41%,#275d2b 83.02%);
    --main-bg-color: #f1f6f5;
    --white: #fff;
    --black: #000
}

.material-icons {
    font-family: 'Material Icons',sans-serif;
    font-size: 14px;
    width: 14px;
    height: 14px
}

html {
    font-size: 14px;
    scroll-behavior: smooth
}

body {
    font-family: 'Alumni Sans', sans-serif;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-size: 20px;
    background: var(--main-bg-color);
    overflow-x: hidden
}

.wrapper {
    position: relative;
    z-index: 2;
    width: 1200px;
    margin: 0 auto
}

.wrapper-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px
}

#welcome .overlay {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(0 29 27 / 50%);
}

#welcome.welcome-page {
    height: 400px
}

.overlay {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,29,27,.3)
}

.col {
    width: 50%;
    padding: 0
}

.clearfix {
    zoom:1}

.clearfix:before,.clearfix:after {
    content: "";
    display: table
}

.clearfix:after {
    clear: both
}

.typed-cursor {
    color: rgb(236 123 12);
}

.primary-button {
    padding: 18px 60px;
    font-size: 22px;
    font-weight: 500;
    background: var(--gradient);
    border-radius: 10px;
    color: var(--white);
    transition: .3s;
    box-shadow: 0px 10px 20px rgba(14,152,183,.05);
    margin-right: 10px;
    border: none;
    display: inline-block
}

.primary-button:hover {
    transition: .3s;
    box-shadow: 0px 10px 20px rgba(14,152,183,.3)
}

.secondary-button {
    padding: 18px 50px;
    font-size: 22px;
    font-weight: 500;
    background: rgba(255,255,255,0);
    border-radius: 10px;
    color: var(--white);
    transition: .3s;
    box-sizing: border-box;
    box-shadow: inset 0px 0px 0px 1px #fff;
    display: inline-block
}

.secondary-button img {
    height: 12px;
    object-fit: cover;
    vertical-align: middle;
    margin-left: 10px
}

.secondary-button:hover {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(5px);
    transition: .3s
}

.secondary-button i {
    margin-left: 10px
}

.section-title {
    color: var(--white);
    margin: 0 0 40px;
    text-align: center;
    padding: 0;
    font-size: 40px;
    font-weight: 700
}

.section-title-black {
    color: #fff;
    text-align: left
}

.section-subtitle {
    color: var(--white);
    margin: 0;
    text-align: center;
    padding: 0;
    font-size: 28px;
    font-weight: 700
}

.section-subtitle-black {
    color: rgb(39, 93, 43);
    margin: 0;
    text-align: left;
    padding: 0;
    font-size: 40px;
    font-weight: 700
}

.section-subtitle-2 {
    color: var(--white);
    margin: 40px 0;
    text-align: center;
    padding: 0;
    font-size: 23px;
    font-weight: 400;
    opacity: .8
}

.wearefromukraine {
    position: fixed;
    bottom: -50px;
    right: -120px;
    z-index: 15;
    transform: rotate(-45deg);
    cursor: pointer
}

#welcome-navigation {
    position: fixed;
    width: 100%;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-direction: row;
    z-index: 90;
    transition: background .3s ease
}

.welcome-navigation-scroll {
    background: rgb(39, 93, 43);
    transition: background .3s ease;
    box-shadow: 0px 10px 20px rgb(39 93 43 / 32%);
    padding: 10px 20px
}

#mobile-header {
    display: none
}

.welcome-navigation-logo {
    display: block;
    width: 110px;
    transition: .3s ease
}

.welcome-navigation-logo img {
    width: 100%
}

#welcome-navigation nav ul {
    margin: 0;
    padding: 0
}

#welcome-navigation nav ul li {
    float: left;
    list-style: none;
    margin: 0 40px 0 0;
    padding: 0
}

#welcome-navigation nav ul li:last-child {
    margin: 0
}

#welcome-navigation nav ul li a {
    color: #fff
}

#welcome-navigation nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    position: relative
}

#welcome-navigation nav ul li a:hover {
    color: #f37f07;
    transition: .3s
}

#welcome-navigation nav ul li a:after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #218b25;
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    opacity: 0;
    transition: .3s
}

#welcome-navigation nav ul li a:hover:after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #218b25;
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    opacity: 1;
    transition: .3s
}

.welcome-navigation-lang {
    color: var(--white);
    text-align: right;
    transition: .3s ease;
    opacity: 1 !important;
}

.welcome-navigation-lang p {
    color: rgba(255,255,255,.7);
    margin-bottom: 0;
}

.welcome-navigation-lang p i {
    font-style: normal
}

.welcome-navigation-lang a {
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
    transition: .3s;
    opacity: 1
}

.welcome-navigation-lang a:hover {
    color: #f37f07;
    transition: .3s
}

#mobile-navigation {
    display: none
}

.social-icons {
    position: absolute;
    z-index: 5;
    right: 50px;
    top: 50%;
    transform: translateY(-50%)
}

.social-icons ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0
}

.social-icons ul li {
    display: flex;
    margin-bottom: 20px;
    box-sizing: border-box
}

.social-icons ul li:last-child {
    margin-bottom: 0
}

.social-icons ul li a {
    opacity: .7;
    transition: .3s
}

.social-icons ul li a:hover {
    opacity: 1;
    transition: .3s
}

.scroll-down {
    position: absolute;
    bottom: 80px;
    left: -10px;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    transform: rotate(-90deg);
    text-align: center;
    vertical-align: baseline;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 20px;
    z-index: 5
}

.scroll-down img {
    margin-right: 20px;
    transform: rotate(90deg)
}

#welcome {
    width: 100%;
    height: 100vh;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.welcome-cta {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    z-index: 1
}

.welcome-cta.welcome-cta-page h1 {
    width: 70%
}

.welcome-cta h1 {
    font-size: 60px;
    width: 50%;
    height: 126px;
    margin: 20px 0 30px
}

.welcome-descr {
    font-size: 18px;
    width: 58%
}

.welcome-descr p:nth-child(1) {
    margin: 0 0 10px
}

.welcome-descr p:nth-child(2) {
    margin: 10px 0 40px
}

.welcome-content-btns {
    margin-bottom: 60px
}

.welcome-footer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 70px;
    left: 100px;
    z-index: 1
}

.welcome-footer-item span.mobile {
    display: none;
}

.welcome-footer div:first-child {
    margin-right: 60px
}

.welcome-footer-item {
    position: relative;
    padding-left: 20px;
    width: 36%;
}

.welcome-footer-item:before {
    content: '';
    width: 9px;
    height: 100%;
    background: linear-gradient(180deg,#f37f07 0%,rgba(0,131,172,0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px
}

#about {
    position: relative;
    padding: 100px 0 70px
}

#about.single-page:after {
    display: none
}

#about.single-page h2 {
    font-size: 24px;
    margin-bottom: 20px
}

#about.single-page p {
    margin-bottom: 30px;
    font-size: 16px
}

#about.single-page ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 20px;
    margin-bottom: 30px
}

#about.single-page ol li {
    margin-bottom: 15px;
    font-size: 16px
}

#about:before {
    content: '';
    display: block;
    background: url(/wp-content/themes/arnika-organic-2/assets/img/about-top.svg) no-repeat;
    background-size: cover;
    width: 100vw;
    min-height: 80px;
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 3;
    padding: 0;
    margin: 0;
    border: 0
}

#about:after {
    content: '';
    display: block;
    background: url(/wp-content/themes/arnika-organic-2/assets/img/about-bottom.svg) no-repeat;
    background-size: contain;
    width: 100vw;
    min-height: 80px;
    bottom: -70px;
    left: 0;
    z-index: 3;
    position: absolute
}

#about .wrapper {
    width: 1200px
}

.about-ceo {
    width: 100%;
    height: 400px;
    border-radius: 40px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end
}

.about-ceo:after {
    background: linear-gradient(0deg,rgba(0,132,173,.5),rgba(0,132,173,.5));
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 40px
}

.about-ceo-left {
    width: 100%;
    height: 450px;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    border-radius: 0 0 0 40px;
    object-fit: cover;
    float: left
}

.about-ceo-left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0 0 40px 40px;
}

.about-ceo-right {
    position: relative;
    z-index: 3;
    width: 50%;
    height: 100%;
    padding: 50px 10px 50px 0;
    box-sizing: border-box;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start
}

.about-ceo-right img {
    width: 200px
}

.about-ceo-right-name {
    width: 100%
}

.about-ceo-right-name p:first-child {
    font-size: 40px;
    font-weight: 700;
    color: #275d2b;
    margin: 30px 0 10px
}

.about-ceo-right-name p:last-child {
    font-size: 20px;
    color: #707070;
    margin: 0
}

.about-content {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    font-size: 18px;
    font-weight: 400
}

.about-content div {
    width: 100%
}

.about-content div p {
    margin-bottom: 20px
}

#grow {
    position: relative;
    padding: 50px 0;
}

#grow:after {
    content: '';
    display: block;
    background: url('/wp-content/themes/arnika-organic-2/assets/img/grow-bottom.svg');
    background-size: cover;
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: 3
}

.grow-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start
}

.grow-content-cult-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
    margin-top: 50px
}

.grow-content-cult-item {
    width: calc((100% - 40px)/2);
    vertical-align: middle;
    background: linear-gradient(88.17deg,rgba(255,255,255,.15) 1.04%,rgba(255,255,255,.0255) 103.17%);
    border-radius: 100px 0 150px 100px;
    height: 58px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    align-content: center
}

.grow-content-cult-item img {
    width: 65px;
    height: 58px;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,.13));
    border-radius: 100px 0 100px 100px
}

.grow-content-cult-item span {
    color: #fff;
    margin-left: 10px
}

.grow-content-map {
    text-align: center;
    position: relative
}

.grow-content-map-point {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.grow-content-map-point #point-1 {
    left: 144px;
    top: 22px;
}

.grow-content-map-point #point-2 {
    left: 145px;
    top: 119px;
}

.grow-content-map-point #point-3 {
    left: 273px;
    top: 128px;
}

.grow-content-map-point #point-4 {
    left: 482px;
    top: 125px;
}

.grow-content-map-point #point-5 {
    left: 114px;
    top: 110px;
}

.grow-content-map-point #point-6 {
    left: 326px;
    top: 148px;
}

.grow-content-map-point #point-7 {
    left: 255px;
    top: 87px;
}

.grow-content-map-point #point-8 {
    left: 242px;
    top: 242px;
}

.grow-content-map-point #point-9 {
    left: 339px;
    top: 210px;
}

.grow-content-map-point #point-10 {
    left: 217px;
    top: 135px;
}

.grow-content-map-point #point-11 {
    left: 414px;
    top: 224px;
}

.grow-content-map-point #point-12 {
    left: 439px;
    top: 172px;
}

.grow-content-map-point #point-13 {
    left: 368px;
    top: 102px;
}

.grow-content-map-point #point-14 {
    left: 152px;
    top: 185px;
}

.grow-content-map-point #point-15 {
    left: 181px;
    top: 209px;
}

.grow-map {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 90px
}

.grow-map img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.element {
    background-color: #0a5454;
    border: 6px solid #fff;
    box-sizing: border-box;
    border-radius: 15px;
    position: absolute;
    box-shadow: 0px 10px 20px rgb(0 0 0/20%);
    cursor: pointer;
    width: 20px;
    height: 20px
}

.element-small {
    background-color: #0a5454;
    border: 4px solid #fff;
    box-sizing: border-box;
    border-radius: 15px;
    position: absolute;
    box-shadow: 0px 10px 20px rgb(0 0 0/20%);
    cursor: pointer;
    width: 14px;
    height: 14px
}

.element .tooltip {
    position: absolute;
    background-color: rgba(255,255,255,.4);
    color: #080e10;
    backdrop-filter: blur(2px);
    border-radius: 10px;
    padding: 10px 30px;
    box-shadow: 0 5px 10px -5px #0606063b;
    bottom: calc(100% + 14px);
    left: 50%;
    white-space: nowrap;
    transform: translateX(-50%) scale(0);
    transform-origin: bottom;
    font-size: 20px;
    transition: transform .3s;
    font-weight: 700;
    z-index: 1;
}

.element .tooltip:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(255,255,255,.4);
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%)
}

.element:hover .tooltip {
    transform: translateX(-50%) scale(1)
}

.map-help {
    font-size: 20px;
    color: rgb(255 255 255/80%);
    text-align: center;
    font-weight: 500;
    margin: 20px auto;
    width: 40%
}

.map-arrow {
    position: absolute;
    top: 276px;
    left: 257px;
    animation: map-arrow-anim 2s infinite alternate ease-in-out
}

.map-arrow img {
    width: 60px;
}

@keyframes map-arrow-anim {
    from {
        transform: rotate(0deg) scale(1)
    }

    to {
        transform: rotate(20deg) scale(1.1)
    }
}

.grow-quote {
    width: 100%;
    height: auto;
    padding: 40px 60px;
    background: linear-gradient(96.27deg,#218a25 0%,#275f2b 106.83%);
    box-shadow: 0px 0px 20px rgb(0 0 0/15%);
    box-sizing: border-box;
    margin: 40px 0 60px;
    border-radius: 35px;
    line-height: 1.7;
    position: relative
}

.grow-quote p {
    margin: 10px 0;
    text-align: center;
    color: var(--white)
}

.grow-quote:before {
    content: '\201C';
    font-size: 120px;
    color: var(--white);
    opacity: .5;
    font-weight: 800;
    position: absolute;
    top: -20px;
    left: 20px;
    mix-blend-mode: soft-light
}

.grow-quote:after {
    content: '\201E';
    font-size: 120px;
    color: var(--white);
    opacity: .2;
    font-weight: 800;
    position: absolute;
    bottom: -20px;
    right: 20px;
    mix-blend-mode: soft-light
}

.grow-content-sertificate {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin: 60px 0 0
}

.grow-content-sertificate-item {
    width: calc(90%/5);
    vertical-align: middle;
    background: linear-gradient(88.17deg,rgba(255,255,255,.15) 1.04%,rgba(255,255,255,.0255) 103.17%);
    border-radius: 517px 0 653px 250px;
    height: 58px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    padding-right: 10px;
    box-sizing: border-box;
    line-height: 58px
}

.grow-content-sertificate-item img {
    width: 94px;
    height: 84px;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,.13));
    border-radius: 94px 0 94px 94px;
    object-fit: cover
}

.grow-content-sertificate-item span {
    color: #fff;
    margin-left: 10px
}

#processing {
    padding: 70px 0;
    position: relative
}

.tab-slider--nav {
    width: 100%;
    float: left;
    margin-bottom: 80px
}

.tab-slider--tabs {
    display: flex;
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    background: #fff;
    height: 80px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    flex-direction: row;
    align-content: center;
    align-items: center
}

.tab-slider--tabs:after {
    content: "";
    width: 50%;
    background: var(--gradient);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .25s ease-in-out;
    border-radius: 35px
}

.tab-slider--tabs.slide:after {
    left: 50%
}

.tab-slider--trigger {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: inline-block;
    transition: color .25s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.tab-slider--trigger.active {
    color: #ededed
}

.tab-slider--body {
    margin-bottom: 20px
}

.tabs-oil-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: center;
    margin: 70px 0
}

.tabs-oil-item {
    width: 49%;
    background: linear-gradient(140.71deg,#275d2b 0%,#208c24 100%);
    box-shadow: 0px 4px 6px rgb(0 0 0/6%);
    border-radius: 20px;
    height: 360px;
    padding: 0 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 20px;
    color: var(--white)
}

.tabs-oil-item-number {
    font-weight: 900;
    font-size: 125px;
    opacity: .15;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    user-select: none
}

.tabs-oil-item-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 60px;
    position: relative
}

.tabs-oil-item-text {
    line-height: 1.5
}

.tabs-oil-item-text a {
    color: rgb(255 204 0);
}

.tabs-oil-item-text a:hover {
    color: #a0d1e0;
    text-decoration: underline;
}

.oil-advantages {
    margin: 60px 0;
    display: flex;
    flex-direction: row
}

.oil-advantages-item {
    width: calc(100%/4);
    display: flex;
    flex-direction: column;
    padding-right: 40px;
    box-sizing: border-box
}

.oil-advantages-item-icon {
    width: auto;
    height: 65px
}

.oil-advantages-item img {
    height: 100%;
    object-fit: contain
}

.oil-advantages-item-title {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin: 15px 0
}

.process-oil {
    margin: 60px 0;
    width: 100%
}

.process-oil img {
    width: 100%;
    object-fit: cover
}

.process-oil-big {
    display: block
}

.process-oil-small {
    display: none
}

.feed-description {
    line-height: 1.6;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px
}

.feed-prod {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start
}

.feed-prod-item {
    width: calc(100%/3);
    height: 400px;
    background: linear-gradient(140.99deg,#275d2b 0%,#1e9923 100%);
    box-shadow: 0px 4px 6px rgba(0,0,0,.06);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 60px
}

.feed-prod-item-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative
}

.feed-prod-item-img img {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.feed-prod-item-img:after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0,132,173,.5),rgba(0,132,173,.5));
    background-blend-mode: darken,normal;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2
}

.feed-prod-item-title {
    font-weight: 800;
    font-size: 26px;
    line-height: 32px;
    color: #fff;
    padding: 25px 25px 15px
}

.feed-prod-item-descr {
    color: #fff;
    padding: 0 25px
}

#export {
    position: relative;
    padding: 120px 0
}

#export:before {
    content: '';
    display: block;
    background: url('/wp-content/themes/arnika-organic-2/assets/img/export-top.svg');
    background-size: cover;
    width: 100%;
    height: 70px;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 3
}

#export:after {
    content: '';
    display: block;
    background: url('/wp-content/themes/arnika-organic-2/assets/img/export-bottom.svg');
    background-size: cover;
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: 3
}

#export-map {
    width: 100%;
    position: relative
}

.export-map-points>#canada {
    left: 207.1px;
    top: 100.21px
}

.export-map-points>#usa {
    left: 145.3px;
    top: 173.7px
}

.export-map-points>#norway {
    left: 595px;
    top: 67px
}

.export-map-points>#great-britain {
    left: 540.4px;
    top: 105.22px
}

.export-map-points>#france {
    left: 543px;
    top: 155px
}

.export-map-points>#switzerland {
    left: 583px;
    top: 124px
}

.export-map-points>#germany {
    left: 561px;
    top: 136px
}

.export-map-points>#italy {
    left: 608px;
    top: 163px
}

.export-map-points>#austria {
    left: 590px;
    top: 135px
}

.export-map-points>#netherlands {
    left: 570px;
    top: 115px
}

.export-map-points>#denmark {
    left: 615.53px;
    top: 99.87px
}

.export-map-points>#czech-republic {
    left: 616px;
    top: 135px
}

.export-map-points>#poland {
    left: 636px;
    top: 113px
}

.export-map-points>#lithuania {
    left: 637px;
    top: 97px
}

.export-map-points>#slovakia {
    left: 634.93px;
    top: 131.59px
}

.export-map-points>#israel {
    left: 697.39px;
    top: 205.74px
}

.export-map-points>#japan {
    right: 78px;
    top: 178px
}

.export-description {
    color: var(--white);
    margin: 60px 0;
    display: flex;
    gap: 10px;
    font-size: 16px;
    line-height: 1.6;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start
}

.export-content-sertificate {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin: 60px 0
}

.export-content-sertificate-item {
    width: calc(90%/4);
    vertical-align: middle;
    background: linear-gradient(88.17deg,rgba(255,255,255,.15) 1.04%,rgba(255,255,255,.0255) 103.17%);
    border-radius: 100px 0 100px 100px;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    padding-right: 10px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    flex-direction: row
}

.export-content-sertificate-item img {
    width: 70px;
    height: 70px;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,.13));
    object-fit: contain
}

.export-content-sertificate-item span {
    color: #fff;
    margin-left: 10px
}

#country {
    padding: 120px 0
}

.tab-slider--nav-2 {
    width: 100%;
    float: left;
    margin-bottom: 80px
}

.tab-slider--tabs-2 {
    display: flex;
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    background: #fff;
    height: 80px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    flex-direction: row;
    align-content: center;
    align-items: center
}

.tab-slider--tabs-2:after {
    content: "";
    width: 50%;
    background: var(--gradient);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .25s ease-in-out;
    border-radius: 35px
}

.tab-slider--tabs-2.slide:after {
    left: 50%
}

.tab-slider--trigger-2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: inline-block;
    transition: color .25s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.tab-slider--trigger-2.active {
    color: #ededed
}

.tab-slider--body-2 {
    margin-bottom: 20px
}

#sustainability {
    padding: 120px 0;
    position: relative
}

#sustainability:before {
    content: '';
    display: block;
    background: url('/wp-content/themes/arnika-organic-2/assets/img/sust-top.svg');
    background-size: cover;
    width: 100%;
    height: 70px;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 3
}

#sustainability:after {
    content: '';
    display: block;
    background: url('/wp-content/themes/arnika-organic-2/assets/img/sust-bottom.svg');
    background-size: cover;
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: 3
}

.tabs-sustainability-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    color: var(--white)
}

.tabs-sustainability-item {
    width: 50%;
    border-radius: 20px;
    height: 335px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 0 20px;
    align-items: flex-start;
    align-content: flex-start
}

.tabs-sustainability-item-number {
    font-weight: 900;
    font-size: 125px;
    opacity: .1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    mix-blend-mode: soft-light
}

.tabs-sustainability-item-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px;
    position: relative
}

.tabs-sustainability-item-text {
    line-height: 1.5;
    width: 90%
}

.sustainability-advantages-2 {
    background: var(--gradient-2);
    box-shadow: 0px 0px 20px rgb(0 0 0/15%);
    border-radius: 100px 0 100px 100px;
    width: 100%;
    padding: 40px 0 40px 60px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.sustainability-advantages-2-title {
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: nowrap
}

.sustainability-advantages-2-number {
    font-weight: 700;
    font-size: 46px;
    color: var(--white);
    margin-right: 10px;
    position: relative
}

.sustainability-advantages-2-number>span {
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
    opacity: .7;
    mix-blend-mode: soft-light
}

.number-absolute {
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
    opacity: .7;
    mix-blend-mode: soft-light;
    position: absolute;
    top: -20px;
    left: 0
}

.sustainability-advantages-2-value {
    color: var(--white);
    font-size: 24px;
    opacity: .7;
    mix-blend-mode: soft-light
}

.sustainability-advantages-2-descr {
    color: var(--white);
    margin: 20px 0 0;
    width: 85%
}

#contact-form {
    padding: 120px 0;
    width: 100%
}

.contact-form-content {
    display: flex;
    width: 100%
}

.contact-form {
    padding: 0 30px;
    text-align: center
}

.group {
    position: relative;
    margin-bottom: 45px
}

input {
    font-size: 14px;
    padding: 10px 10px 10px 25px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    background: 0 0
}

input:focus {
    outline: none
}

.contact-form__button {
    background: var(--gradient);
    outline: none;
    border: none;
    padding: 15px 70px;
    font-weight: 400;
    color: var(--white);
    border-radius: 10px;
    font-size: 24px;
    margin-bottom: 20px
}

.contact-form-button:hover,.contact-form-button:focus {
    transition: .3s;
    box-shadow: 0px 10px 20px rgba(14,152,183,.3)
}

label {
    color: rgb(255 255 255 / 100%);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    pointer-events: none;
    left: 25px;
    top: 8px;
    transition: .2s ease all;
    -moz-transition: .2s ease all;
    -webkit-transition: .2s ease all
}

input:focus~label,input:valid~label {
    top: -20px;
    left: 0;
    font-size: 12px;
    color: rgb(255 255 255 / 20%);
}

.icon {
    font-family: 'Material Icons Outlined',sans-serif;
    line-height: 26px;
    text-align: center;
    margin-right: -26px;
    position: absolute;
    z-index: 1;
    float: left;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #13cd1a;
    font-size: 18px
}

input:focus+.icon,input:valid+.icon {
    color: #fec310;
}

.bar {
    position: relative;
    display: block;
    width: 100%
}

.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: var(--gradient);
    transition: .2s ease all;
    -moz-transition: .2s ease all;
    -webkit-transition: .2s ease all;
    left: 0
}

input:focus~.bar:after {
    width: 100%
}

#contacts {
    position: relative;
    padding: 140px 0;
    width: 100%;
    background: var(--primary-color)
}

#contacts:before {
    content: '';
    display: block;
    background: url('/wp-content/themes/arnika-organic-2/assets/img/contacts-top.svg');
    background-size: cover;
    width: 100%;
    height: 70px;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 3
}

#contacts:after {
    content: '';
    display: block;
    background: url('/wp-content/themes/arnika-organic-2/assets/img/contacts-down.svg');
    background-size: cover;
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: 3
}

.contacts-content {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row
}

.contacts-item {
    color: #fff;
    width: calc(100%/3);
    margin-top: 40px
}

.contacts-item-logo {
    width: auto;
    height: 50px;
    margin-bottom: 40px
}

.contacts-item-logo img {
    height: 50px
}

.contact-form-descr {
    margin-bottom: 40px;
}

.contacts-item-info {
    position: relative;
}

.contacts-item-info:after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background: #fff;
    opacity: .2;
    margin: 20px 0
}

.contacts-item-info:last-child:after {
    display: none
}

.contacts-item-info p {
    opacity: .8
}

.contacts-item-info a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    transition: .3s
}

.contacts-item-info a:hover {
    color: #27b7b7;
    transition: .3s
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 20px 0 30px;
    align-items: center;
    align-content: center
}

footer.single-page_footer {
    border-top: 1px solid rgba(0,0,0,.1)
}

.footer-social ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    box-sizing: border-box;
    align-items: center
}

.footer-social ul li {
    list-style: none;
    float: left;
    margin-right: 20px
}

.footer-social ul li a {
    opacity: .7;
    transition: .3s
}

.footer-social ul li a svg path {
    fill: var(--primary-color)
}

.footer-social ul li a:hover {
    opacity: 1;
    transition: .3s
}

.footer-social ul li:last-child {
    margin-right: 0
}

.footer-made {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;
    margin-top: 0
}

.footer-made a {
    position: relative;
    height: 40px;
    transition: .3s
}

.footer-made a:hover {
    opacity: .7;
    transition: .3s
}

.footer-made a:after {
    content: '';
    width: 1px;
    height: 50%;
    background: #000;
    opacity: .3;
    display: inline-block;
    white-space: nowrap;
    margin: 0 20px;
    vertical-align: bottom
}

.footer-made a:last-child:after {
    display: none
}

.footer-made img {
    height: 40px;
}

.footer-copyright {
    font-size: 18px;
}

.preloader {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    position: relative
}

.preloader_active {
    display: block
}

.preloader .dot {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--primary-color);
    position: absolute;
    left: 30%;
    -webkit-animation: easeInAndOut 2.5s ease-in-out infinite;
    animation: easeInAndOut 2.5s ease-in-out infinite
}

.preloader .dot:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    opacity: 0
}

.preloader .dot:nth-child(2) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    opacity: .8
}

.preloader .dot:nth-child(3) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    opacity: .5
}

.preloader .dot:nth-child(4) {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    opacity: .2
}

@-webkit-keyframes easeInAndOut {
    0% {
        left: 30%;
        opacity: 0
    }

    48% {
        left: 49%;
        opacity: 1
    }

    50% {
        left: 51%;
        opacity: 1
    }

    100% {
        left: 70%;
        opacity: 0
    }
}

@keyframes easeInAndOut {
    0% {
        left: 30%;
        opacity: 0
    }

    48% {
        left: 49%;
        opacity: 1
    }

    50% {
        left: 51%;
        opacity: 1
    }

    100% {
        left: 70%;
        opacity: 0
    }
}

.popup {
    width: 100%;
    height: 100vh;
    z-index: 120;
    display: none;
    position: fixed;
    top: 0;
    right: 0
}

.popup-show {
    display: flex
}

.popup:before {
    content: "";
    box-sizing: border-box;
    width: 100%;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 50%
}

.popup:after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #f0f0f0;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px
}

.popup__container {
    box-sizing: border-box;
    padding: 5% 15%;
    height: calc(100vh - 40px);
    margin: auto;
    overflow: auto;
    overscroll-behavior: contain
}

.popup__title {
    --rTitleMarginBottom: 1.5rem;
    font-size: 1.5rem
}

.popup__close {
    width: 2rem;
    height: 2rem;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTE5IDYuNDFMMTcuNTkgNSAxMiAxMC41OSA2LjQxIDUgNSA2LjQxIDEwLjU5IDEyIDUgMTcuNTkgNi40MSAxOSAxMiAxMy40MSAxNy41OSAxOSAxOSAxNy41OSAxMy40MSAxMnoiLz4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==)
}

.popup__content p {
    line-height: 150%;
    margin-bottom: 20px;
    font-size: 16px
}

.popup:before {
    will-change: height,top;
    animation: open-animation .6s cubic-bezier(.83,.04,0,1.16) .65s both
}

.popup:after {
    will-change: width,opacity;
    animation: line-animation .6s cubic-bezier(.83,.04,0,1.16) both
}

@keyframes line-animation {
    0% {
        width: 0;
        opacity: 1
    }

    99% {
        width: 100%;
        opacity: 1
    }

    100% {
        width: 100%;
        opacity: 0
    }
}

@keyframes open-animation {
    0% {
        height: 0;
        top: 50%
    }

    100% {
        height: 100vh;
        top: 0
    }
}

.popup__container {
    animation: fade .5s ease-out 1.3s both
}

@keyframes fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.overflow-block {
    overflow: hidden
}

#menu {
    background: var(--primary-color);
    height: 100vh;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    text-align: center;
    top: 0;
    transition: all .7s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 60
}

#menu.open {
    opacity: 1;
    visibility: visible
}

#menu.open li:nth-child(1) {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

#menu.open li:nth-child(2) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

#menu.open li:nth-child(3) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

#menu.open li:nth-child(4) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

#menu.open li:nth-child(5) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

#menu.open li:nth-child(6) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

#menu.open li:nth-child(7) {
    -webkit-animation-delay: .7s;
    animation-delay: .7s
}

#menu.open li:nth-child(8) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

#menu.open li:nth-child(9) {
    -webkit-animation-delay: .9s;
    animation-delay: .9s
}

#menu.open li:nth-child(10) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

#menu.open li {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

#menu ul:hover a {
    opacity: .5
}

#menu ul a {
    -webkit-transform: translateZ(0);
    transition: opacity .3s ease-in-out
}

#menu ul a:hover {
    opacity: 1
}

#menu .main-nav {
    position: relative;
    top: 42%;
    transform: translateY(-50%)
}

#menu .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0
}

#menu .main-nav a {
    color: #fff;
    display: block;
    font-size: 28px;
    font-weight: 700;
    padding: 1rem;
    text-decoration: none;
    text-transform: uppercase
}

#menu .main-nav a:first {
    padding-top: 0
}

#menu .menu-footer {
    padding: 2rem;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0
}

.toggle-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: none;
    float: right;
    height: 50px;
    outline: none;
    padding: 0;
    pointer-events: initial;
    position: relative;
    vertical-align: middle;
    width: 50px;
    z-index: 90
}

.toggle-menu span {
    background-color: #fff;
    content: "";
    display: block;
    height: 2px;
    left: calc(50% - 13px);
    position: absolute;
    top: calc(50% - 1px);
    transform-origin: 50% 50%;
    transition: background-color .2s ease-in-out,top .2s .2s ease-out,transform .2s linear;
    width: 26px
}

.toggle-menu span:before,.toggle-menu span:after {
    background-color: #fff;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transform-origin: 50% 50%;
    transition: background-color .2s ease-in-out,top .2s .2s ease-out,transform .2s linear;
    width: 26px
}

.toggle-menu span:before {
    top: 7px
}

.toggle-menu span:after {
    top: -7px
}

.toggle-menu.active span {
    background-color: transparent;
    transition: background .2s ease-out
}

.toggle-menu.active span:before,.toggle-menu.active span:after {
    transition: top .2s ease-out,transform .2s .2s ease-out
}

.toggle-menu.active span:before {
    top: 0;
    transform: rotate3d(0,0,1,-45deg)
}

.toggle-menu.active span:after {
    top: 0;
    transform: rotate3d(0,0,1,45deg)
}

.visibilty {
    opacity: 0;
    transition: .3s
}

.visibilty-bg {
    background: rgb(0 131 172/0%);
    transition: background .2s ease-out;
    box-shadow: 0px 10px 20px rgb(5 113 147/0%)
}

.welcome-navigation-right {
    display: flex;
    align-items: center;
    gap: 20px
}

#background-video .video,#background-vide .canvas {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%)
}

#site-preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: 999
}

.site-preloader-done {
    opacity: 0;
    visibility: hidden
}

.site-preloader-container {
    top: 50%;
    left: 50%;
    position: absolute
}

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50% 0 50% 50%;
    background: #fff;
    animation: 2s spin linear infinite
}

.circle:nth-child(2) {
    animation-delay: .2s
}

.circle:nth-child(3) {
    ;animation-delay: .4s
}

@keyframes spin {
    0% {
        transform-origin: 300% 50%;
        transform: rotate(0deg)
    }

    50% {
        transform-origin: 300% 50%;
        transform: rotate(360deg)
    }

    50.1% {
        transform-origin: -300% 50%;
        transform: rotate(360deg)
    }

    100% {
        transform-origin: -300% 50%;
        transform: rotate(0deg)
    }
}

.wrapper-cookies {
    position: fixed;
    z-index: 20;
    bottom: 10px;
    left: 10px
}

.hide {
    visibility: hidden;
    pointer-events: none;
    z-index: -1
}

.cookies {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    background: #292c30e0;
    height: 80px;
    padding: 22px 22px 22px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgb(65 72 86/6%);
    transition: all .4s ease-in-out
}

.cookies-icon {
    height: 36px;
    width: 36px;
    animation: spin-cookies 2s linear infinite
}

.cookies-message {
    height: 36px;
    padding: 0 10px;
    line-height: 36px;
    color: #fff;
    font-size: 16px;
    font-weight: 600
}

.cookies-accept {
    height: 30px;
    padding: 0 10px;
    line-height: 30px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    background: #616b75;
    cursor: pointer;
    outline: none;
    transition: background .25s ease-in-out;
    font-family: 'Alumni Sans', sans-serif;
    user-select: none
}

.cookies-accept:hover {
    background: #0071ff
}

@keyframes spin-cookies {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.cd-popup-trigger {
    position: fixed;
    z-index: 500;
    left: 20px;
    bottom: 0;
    display: block;
    width: 170px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px 20px 0 0;
    background: #35a785;
    box-shadow: 0 3px 0 rgba(0,0,0,.07)
}

.cd-popup {
    position: fixed;
    left: 0;
    z-index: 900;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0/70%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s,visibility 0s .3s;
    -moz-transition: opacity .3s 0s,visibility 0s .3s;
    transition: opacity .3s 0s,visibility 0s .3s
}

.cd-popup.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .3s 0s,visibility 0s 0s;
    -moz-transition: opacity .3s 0s,visibility 0s 0s;
    transition: opacity .3s 0s,visibility 0s 0s
}

.cd-popup-container {
    position: relative;
    width: 90%;
    max-width: 50%;
    margin: 4em auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    transition-duration: .3s
}

.cd-popup-container p {
    padding: 3em 1em
}

.cd-popup-container .cd-buttons:after {
    content: "";
    display: table;
    clear: both
}

.cd-popup-container .cd-buttons li {
    float: left;
    width: 50%;
    list-style: none
}

.cd-popup-container .cd-buttons a {
    display: block;
    height: 60px;
    line-height: 60px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: background-color .2s;
    -moz-transition: background-color .2s;
    transition: background-color .2s
}

.cd-popup-container .cd-buttons li:first-child a {
    background: #fc7169;
    border-radius: 0 0 0 .25em
}

.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
    background-color: #fc8982
}

.cd-popup-container .cd-buttons li:last-child a {
    background: #b6bece;
    border-radius: 0 0 .25em
}

.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
    background-color: #c5ccd8
}

.cd-popup-container .cd-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px
}

.cd-popup-container .cd-popup-close:before,.cd-popup-container .cd-popup-close:after {
    content: '';
    position: absolute;
    top: 12px;
    width: 14px;
    height: 3px;
    background-color: #8f9cb5
}

.cd-popup-container .cd-popup-close:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 8px
}

.cd-popup-container .cd-popup-close:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 8px
}

.is-visible .cd-popup-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

@media only screen and (min-width: 1170px) {
    .cd-popup-container {
        margin:8em auto
    }
}

.cd-popup-container img {
    width: 100%
}

.biofach-mob {
    display: none
}

@media screen and (min-width: 1920px) {
    .biofach-pc {
        display:block
    }

    .welcome-cta h1 {
        font-size: 70px;
        width: 50%;
        height: 175px
    }

    .welcome-descr {
        font-size: 24px;
        width: 60%;
        line-height: 1.5
    }

    .primary-button,.secondary-button {
        padding: 35px 75px;
        font-size: 18px
    }

    .welcome-cta,.welcome-footer {
        left: 200px
    }

    .welcome-footer-item {
        font-size: 18px
    }

    .welcome-footer div:first-child {
        margin-right: 80px
    }

    #welcome-navigation {
        padding: 40px 80px
    }

    .welcome-navigation-logo {
        width: 160px
    }

    #welcome-navigation nav ul li a {
        font-size: 16px
    }

    #welcome-navigation nav ul li {
        margin: 0 80px 0 0
    }

    .scroll-down {
        left: 0
    }

    .welcome-navigation-lang i {
        font-size: 15px
    }

    .welcome-navigation-lang a {
        font-size: 22px
    }
}

@media screen and (max-width: 767px) {
    .wrapper {
        width:100%;
        padding: 0 50px
    }

    #about .wrapper {
        width: 100%
    }
}

@media screen and (max-width: 1199px) {
    .biofach-pc {
        display:block
    }

    .wrapper {
        width: 100%;
        padding: 0 40px
    }

    #about .wrapper {
        width: 100%
    }

    #welcome-navigation {
        padding: 10px 10px 10px 20px;
    }

    .welcome-cta {
        left: 40px
    }

    .scroll-down {
        display: none
    }

    #welcome-navigation nav ul li {
        float: left;
        list-style: none;
        margin: 0 20px 0 0;
        padding: 0
    }

    .welcome-navigation-lang p i {
        font-size: 12px
    }

    .welcome-navigation-lang p br {
        display: none
    }

    #welcome-navigation nav ul li a {
        font-size: 14px
    }

    .welcome-navigation-logo {
        display: block;
        width: 120px;
        transition: .3s ease;
        z-index: 100;
        opacity: 1;
    }

    .welcome-navigation-lang a {
        font-size: 20px;
    }

    .welcome-cta h1 {
        font-size: 44px;
        height: auto;
        min-height: 108px
    }

    .welcome-descr {
        font-size: 15px;
        width: 70%
    }

    .welcome-footer div:first-child {
        margin-right: 30px
    }

    .social-icons {
        right: 40px
    }

    .welcome-footer {
        left: 40px
    }

    .about-ceo-left {
        height: 420px
    }

    .about-ceo-left img {
        width: 100%;
        border-radius: 0 0 40px 40px
    }

    .map-arrow {
        position: absolute;
        top: 141px;
        left: 67px;
        animation: map-arrow-anim 2s infinite alternate ease-in-out
    }

    .grow-map {
        padding: 0 60px
    }

    .map-points-wrapper {
        position: absolute;
        top: 0;
        left: -40px
    }

    .grow-content-sertificate-item {
        width: calc(100%/4)
    }

    .grow-content-sertificate {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        margin: 60px 0 0;
        flex-wrap: wrap;
        gap: 40px
    }

    .export-map-points>#canada {
        left: 157px;
        top: 75px
    }

    .export-map-points>#usa {
        left: 112px;
        top: 133px
    }

    .export-map-points>#norway {
        left: 468px;
        top: 53px
    }

    .export-map-points>#great-britain {
        left: 425px;
        top: 82.22px
    }

    .export-map-points>#france {
        left: 430px;
        top: 117px
    }

    .export-map-points>#switzerland {
        left: 463px;
        top: 91px
    }

    .export-map-points>#germany {
        left: 447px;
        top: 104px
    }

    .export-map-points>#italy {
        left: 484px;
        top: 131px
    }

    .export-map-points>#austria {
        left: 468px;
        top: 105px
    }

    .export-map-points>#netherlands {
        left: 448px;
        top: 90px
    }

    .export-map-points>#denmark {
        left: 479px;
        top: 79px
    }

    .export-map-points>#czech-republic {
        left: 483px;
        top: 105px
    }

    .export-map-points>#poland {
        left: 507px;
        top: 86px
    }

    .export-map-points>#lithuania {
        left: 496px;
        top: 76px
    }

    .export-map-points>#slovakia {
        left: 497px;
        top: 99px
    }

    .export-map-points>#israel {
        left: 544.39px;
        top: 160px
    }

    .export-map-points>#japan {
        right: 62px;
        top: 145px
    }
}

@media screen and (max-width: 991px) {
    .wrapper {
        width:100%;
        padding: 0 50px
    }

    #about .wrapper {
        width: 100%
    }

    #welcome-navigation nav {
        display: none
    }

    #menu .menu-footer {
        display: none
    }

    .toggle-menu {
        display: inline-block
    }

    .welcome-cta {
        position: absolute;
        top: 50%;
        left: 50px;
        transform: translateY(-50%);
        z-index: 1
    }

    .scroll-down {
        display: none
    }

    .welcome-footer {
        left: 50px
    }

    .welcome-cta h1 {
        font-size: 48px;
        width: 75%;
        height: 120px;
        margin: 20px 0 30px
    }

    .welcome-descr {
        font-size: 16px;
        width: 80%
    }

    .welcome-descr p:nth-child(2) {
        margin: 10px 0 20px
    }

    .primary-button {
        padding: 35px 60px;
        font-size: 14px;
        font-weight: 500;
        background: var(--gradient);
        border-radius: 100px;
        color: var(--white);
        transition: .3s;
        box-shadow: 0px 10px 20px rgb(14 152 183/5%);
        margin-right: 10px;
        border: none;
        display: inline-block
    }

    .secondary-button {
        padding: 35px 60px
    }

    .welcome-footer {
        flex-direction: column;
        align-items: flex-start
    }

    .welcome-footer div:first-child {
        margin-right: 0;
        margin-bottom: 30px
    }

    .about-ceo-left {
        width: 100%;
        height: 300px;
        position: absolute;
        z-index: 3;
        bottom: 0;
        left: 0;
        border-radius: 0 0 0 40px;
        object-fit: cover;
        float: left
    }

    .about-ceo-left img {
        width: 100%;
        border-radius: 0 0 40px 40px
    }

    .about-ceo {
        width: 100%;
        height: 286px;
        border-radius: 40px;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-end
    }

    .about-ceo-right img {
        height: 40px;
        width: auto
    }

    .about-ceo-right-name p:first-child {
        font-size: 30px
    }

    .about-ceo-right-name p:last-child {
        font-size: 18px
    }

    .about-content {
        flex-direction: column
    }

    .about-content div {
        width: 100%;
        padding-right: 0
    }

    .grow-content-cult-item img {
        width: 100%;
        height: 60px;
        object-fit: cover;
        filter: drop-shadow(5px 5px 15px rgba(0,0,0,.13));
        border-radius: 20px 20px 0 0
    }

    .grow-content-cult-item {
        width: calc((100% - 30px)/4);
        vertical-align: middle;
        background: linear-gradient(88.17deg,rgba(255,255,255,.15) 1.04%,rgba(255,255,255,.0255) 103.17%);
        border-radius: 20px;
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        backdrop-filter: blur(10px);
        margin-bottom: 10px;
        align-content: center
    }

    .grow-content-cult-item span {
        height: 60px;
        display: flex;
        align-items: center;
        text-align: center;
        margin-left: 0
    }

    .grow-content {
        flex-direction: column
    }

    .grow-content .col {
        width: 100%
    }

    .grow-content-cult-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
        width: 100%;
        margin-top: 40px;
        margin-bottom: 40px
    }

    .section-title {
        color: var(--white);
        margin: 0 0 40px;
        text-align: center;
        padding: 0;
        font-size: 32px;
        font-weight: 700
    }

    .map-points-wrapper {
        position: absolute;
        left: 40px;
        top: 40px
    }

    .map-arrow {
        position: absolute;
        top: 290px;
        left: 150px;
        animation: map-arrow-anim 2s infinite alternate ease-in-out
    }

    .grow-content-sertificate {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px
    }

    .grow-content-sertificate-item {
        width: calc(90%/3)
    }

    .tabs-oil-items {
        flex-direction: column
    }

    .tabs-oil-item {
        width: 100%;
        height: auto;
        padding: 60px 50px
    }

    .tabs-oil-item-title {
        width: 59%;
        margin: 0 0 30px
    }

    .tabs-oil-item-text {
        width: 90%
    }

    .oil-advantages {
        flex-wrap: wrap;
        gap: 30px
    }

    .oil-advantages-item {
        width: calc(95%/2);
        padding-right: 0
    }

    .export-map-points>#canada {
        left: 100px;
        top: 52px
    }

    .export-map-points>#usa {
        left: 75px;
        top: 91px
    }

    .export-map-points>#norway {
        left: 329px;
        top: 36px
    }

    .export-map-points>#great-britain {
        left: 294px;
        top: 55.22px
    }

    .export-map-points>#france {
        left: 290px;
        top: 81px
    }

    .export-map-points>#switzerland {
        left: 317px;
        top: 73px
    }

    .export-map-points>#germany {
        left: 302px;
        top: 74px
    }

    .export-map-points>#italy {
        left: 339px;
        top: 90px
    }

    .export-map-points>#austria {
        left: 332px;
        top: 76px
    }

    .export-map-points>#netherlands {
        left: 309px;
        top: 63px
    }

    .export-map-points>#denmark {
        left: 330px;
        top: 55px
    }

    .export-map-points>#czech-republic {
        left: 346px;
        top: 75px
    }

    .export-map-points>#poland {
        left: 349px;
        top: 61px
    }

    .export-map-points>#lithuania {
        left: 353px;
        top: 48px
    }

    .export-map-points>#slovakia {
        left: 360px;
        top: 70px
    }

    .export-map-points>#israel {
        left: 383.39px;
        top: 109px
    }

    .export-map-points>#japan {
        right: 35px;
        top: 102px
    }

    .export-content-sertificate {
        flex-wrap: wrap;
        gap: 30px
    }

    .export-content-sertificate-item {
        width: calc(95%/2)
    }

    .tab-slider--trigger-2 {
        font-size: 18px
    }

    .tabs-sustainability-item {
        height: 390px
    }

    .sustainability-advantages-2-item {
        width: 50%;
        padding: 10px
    }

    .sustainability-advantages-2 {
        flex-wrap: wrap;
        border-radius: 100px 0 100px 100px;
        padding: 40px 60px;
        align-items: flex-start
    }

    .section-title-black {
        color: var(--black);
        text-align: center
    }

    .contact-form-content {
        flex-direction: column
    }

    .contact-form-content .col {
        width: 100%;
        padding: 0
    }

    .contact-form-descr {
        text-align: center;
        width: 80%;
        margin: 0 auto
    }

    .contact-form {
        margin-top: 50px;
        padding: 0 60px
    }

    .contacts-item-logo img {
        height: 40px
    }

    .contacts-item-info a {
        font-size: 20px;
    }
}

@media screen and (max-width: 575px) {
    html,body {
        font-family: 'Alumni Sans', sans-serif;
        height: 100%
    }

    .never {
        display: none;
    }

    .wrapper {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 0 20px;
        margin: 0 auto
    }

    .wrapper-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px
    }

    #about .wrapper {
        width: 100%
    }

    .toggle-menu {
        display: inline-block
    }

    #welcome {
        height: 100%
    }

    .welcome-cta {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        z-index: 1
    }

    .welcome-cta h1 {
        font-size: 40px;
        width: 90%;
        height: 58px;
        margin: 0 0 15px
    }

    .welcome-descr {
        font-size: 19px;
        width: 100%
    }

    .welcome-descr p:nth-child(2) {
        margin: 10px 0 20px
    }

    .welcome-content-btns {
        margin-bottom: 0
    }

    .video {
        width: auto !important;
        height: 100%;
    }

    .scroll-down {
        display: none
    }

    .mobile-hide {
        display: none
    }

    .welcome-footer {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: flex-start;
        align-items: flex-start;
        position: absolute;
        bottom: 40px;
        left: 20px;
        width: 80%;
    }

    .welcome-footer-item span {
        display: none
    }

    .welcome-footer-item span.mobile {
        display: inherit;
    }

    .welcome-footer-item {
        width: 40%;
    }

    #menu .menu-footer {
        display: block
    }

    #menu .menu-footer .footer-nav ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 0;
        margin-bottom: 25%;
    }

    .primary-button {
        padding: 0;
        width: 180px;
        height: 50px;
        font-size: 22px;
        font-weight: 500;
        background: var(--gradient);
        border-radius: 10px;
        color: var(--white);
        transition: .3s;
        box-shadow: 0px 10px 20px rgb(14 152 183/5%);
        margin-right: 0;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px
    }

    .secondary-button {
        padding: 0;
        width: 180px;
        height: 50px;
        font-size: 22px;
        font-weight: 500;
        background: rgba(255,255,255,0);
        border-radius: 10px;
        color: var(--white);
        transition: .3s;
        box-sizing: border-box;
        box-shadow: inset 0px 0px 0px 1px #fff;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .welcome-footer div:first-child {
        margin-right: 30px
    }

    .about-content {
        flex-direction: column
    }

    .about-content div {
        width: 100%;
        padding-right: 0
    }

    .about-ceo {
        width: 100%;
        height: auto;
        border-radius: 20px;
        position: relative;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-end;
        overflow: hidden
    }

    .about-ceo:after {
        background: linear-gradient(0deg,rgba(0,132,173,.5),rgba(0,132,173,.5));
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 20px
    }

    .about-ceo-left {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 3;
        bottom: 0;
        left: 0;
        border-radius: 0;
        object-fit: cover;
        float: left
    }

    .about-ceo-left img {
        height: auto;
        width: 100%;
        object-fit: contain;
        border-radius: 0;
        vertical-align: bottom
    }

    .about-ceo-right {
        position: relative;
        z-index: 3;
        width: 100%;
        height: auto;
        padding: 30px 15px;
        box-sizing: border-box;
        float: right;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center
    }

    .about-ceo-right-logo {
        margin-bottom: 20px
    }

    .about-ceo-right img {
        width: auto;
        height: 40px
    }

    .about-ceo-right-name p:first-child {
        font-size: 40px;
    }

    .about-ceo-right-name p:last-child {
        font-size: 20px;
        margin: 0
    }

    .section-title {
        color: var(--white);
        margin: 0 0 30px;
        text-align: center;
        padding: 0;
        font-size: 38px;
        font-weight: 700
    }

    .section-subtitle {
        color: var(--white);
        margin: 0;
        text-align: center;
        padding: 0;
        font-size: 24px;
        font-weight: 700
    }

    .grow-content {
        flex-direction: column
    }

    .col {
        width: 100%;
        padding: 0
    }

    .grow-content-cult-item img {
        width: 100%;
        height: 60px;
        object-fit: cover;
        filter: drop-shadow(5px 5px 15px rgba(0,0,0,.13));
        border-radius: 15px 15px 0 0
    }

    .grow-content-cult-item {
        width: calc((100% - 10px)/2);
        vertical-align: middle;
        background: linear-gradient(88.17deg,rgba(255,255,255,.15) 1.04%,rgba(255,255,255,.0255) 103.17%);
        border-radius: 15px;
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        backdrop-filter: blur(10px);
        margin-bottom: 10px;
        align-content: center
    }

    .grow-content-cult-item span {
        height: 60px;
        display: flex;
        align-items: center;
        text-align: center;
        margin-left: 0
    }

    .grow-quote {
        width: 100%;
        height: auto;
        padding: 30px;
        background: linear-gradient(96.27deg,#208c25 0%,#26662a 106.83%);
        box-shadow: 0px 0px 20px rgb(0 0 0/15%);
        box-sizing: border-box;
        margin: 40px 0 60px;
        border-radius: 35px;
        line-height: 1.7;
        position: relative
    }

    .grow-content-cult-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
        width: 100%;
        margin-top: 50px;
        margin-bottom: 35px
    }

    .section-subtitle-2 {
        color: var(--white);
        margin: 15px 0 35px;
        text-align: center;
        padding: 0;
        font-size: 20px;
        font-weight: 400;
        opacity: .8
    }

    .grow-map {
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 0
    }

    .map-points-wrapper {
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        position: absolute;
        left: 40px;
        top: -40px;
        clear: both
    }

    .grow-content-map-point #point-1 {
        left: 176px;
        top: 56px;
    }

    .grow-content-map-point #point-2 {
        left: 184px;
        top: 133px
    }

    .grow-content-map-point #point-3 {
        left: 281px;
        top: 125px;
    }

    .grow-content-map-point #point-4 {
        left: 462px;
        top: 142px;
    }

    .grow-content-map-point #point-5 {
        left: 152px;
        top: 136px;
    }

    .grow-content-map-point #point-6 {
        left: 321px;
        top: 173px;
    }

    .grow-content-map-point #point-7 {
        left: 334px;
        top: 118px;
    }

    .grow-content-map-point #point-8 {
        left: 253px;
        top: 230px
    }

    .grow-content-map-point #point-9 {
        left: 342px;
        top: 218px;
    }

    .grow-content-map-point #point-10 {
        left: 238px;
        top: 156px;
    }

    .grow-content-map-point #point-11 {
        left: 396px;
        top: 220px;
    }

    .grow-content-map-point #point-12 {
        left: 423px;
        top: 178px;
    }

    .grow-content-map-point #point-13 {
        left: 390px;
        top: 129px;
    }

    .grow-content-map-point #point-14 {
        left: 180px;
        top: 179px;
    }

    .grow-content-map-point #point-15 {
        left: 204px;
        top: 199px;
    }

    .map-arrow {
        position: absolute;
        top: 222px;
        left: 132px;
        animation: map-arrow-anim 2s infinite alternate ease-in-out
    }

    @keyframes map-arrow-anim {
        from {
            transform: rotate(0deg) scale(.6)
        }

        to {
            transform: rotate(20deg) scale(.8)
        }
    }

    .grow-content-sertificate-item {
        width: calc((100% - 10px)/2);
        vertical-align: middle;
        background: linear-gradient(88.17deg,rgba(255,255,255,.15) 1.04%,rgba(255,255,255,.0255) 103.17%);
        border-radius: 15px;
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        backdrop-filter: blur(10px);
        margin-bottom: 10px;
        align-content: center;
        padding-right: 0
    }

    .map-help {
        font-size: 20px;
        color: rgb(255 255 255/80%);
        text-align: center;
        font-weight: 500;
        margin: 20px auto;
        width: 80%
    }

    .grow-content-sertificate-item img {
        width: 100%;
        height: 60px;
        object-fit: cover;
        filter: drop-shadow(5px 5px 15px rgba(0,0,0,.13));
        border-radius: 15px 15px 0 0
    }

    .grow-content-sertificate-item span {
        height: 60px;
        display: flex;
        align-items: center;
        text-align: center;
        margin-left: 0
    }

    .grow-content-sertificate {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        margin: 60px 0 0;
        flex-wrap: wrap;
        gap: 10px
    }

    .tab-slider--trigger {
        font-size: 28px;
        font-weight: 600;
        color: var(--black);
        text-align: center;
        position: relative;
        z-index: 2;
        cursor: pointer;
        display: inline-block;
        transition: color .25s ease-in-out;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .tab-slider--tabs {
        display: flex;
        width: 100%;
        float: left;
        margin: 0;
        padding: 0;
        list-style: none;
        position: relative;
        border-radius: 35px;
        overflow: hidden;
        background: #fff;
        height: 160px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        flex-direction: column;
        align-content: center;
        align-items: center
    }

    .tab-slider--tabs:after {
        content: "";
        width: 100%;
        background: var(--gradient);
        height: 50%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all .25s ease-in-out;
        border-radius: 35px
    }

    .tab-slider--tabs.slide:after {
        top: 50%;
        left: 0
    }

    .tabs-oil-items {
        margin: 30px 0;
        flex-direction: column
    }

    .tabs-oil-item {
        width: 100%;
        padding: 40px 30px;
        height: auto
    }

    .tabs-oil-item-title {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 20px;
        position: relative
    }

    .tabs-oil-item-number {
        font-size: 80px
    }

    .oil-advantages {
        margin: 30px 0;
        flex-direction: column
    }

    .oil-advantages-item {
        width: 100%;
        align-items: center;
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px
    }

    .section-subtitle-black {
        text-align: center;
    }

    .oil-advantages-item:last-child {
        margin-bottom: 0
    }

    .process-oil-big {
        display: none
    }

    .process-oil-small {
        display: block
    }

    .feed-description {
        flex-direction: column
    }

    .feed-prod {
        flex-direction: column;
        gap: 0
    }

    .feed-prod-item {
        width: 100%;
        height: auto;
        padding: 0 0 35px;
        margin-top: 20px
    }

    .feed-prod-item-title {
        font-weight: 800;
        font-size: 20px;
        line-height: 24px;
        color: #fff;
        padding: 25px 25px 10px
    }

    .feed-prod-item-img {
        height: 160px
    }

    .export-description {
        flex-direction: column;
        font-size: 14px;
        margin: 30px 0
    }

    .tab-slider--trigger-2 {
        font-size: 16px;
        font-weight: 600;
        color: var(--black);
        text-align: center;
        position: relative;
        z-index: 2;
        cursor: pointer;
        display: inline-block;
        transition: color .25s ease-in-out;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .tab-slider--tabs-2 {
        display: flex;
        width: 100%;
        float: left;
        margin: 0;
        padding: 0;
        list-style: none;
        position: relative;
        border-radius: 35px;
        overflow: hidden;
        background: #fff;
        height: 160px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        flex-direction: column;
        align-content: center;
        align-items: center
    }

    .tab-slider--tabs-2:after {
        content: "";
        width: 100%;
        background: var(--gradient);
        height: 50%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all .25s ease-in-out;
        border-radius: 35px
    }

    .tab-slider--tabs-2.slide:after {
        top: 50%;
        left: 0
    }

    .export-content-sertificate-item {
        width: 100%;
        vertical-align: middle;
        background: linear-gradient(88.17deg,rgba(255,255,255,.15) 1.04%,rgba(255,255,255,.0255) 103.17%);
        border-radius: 100px 0 100px 100px;
        height: 70px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        backdrop-filter: blur(10px);
        padding-right: 10px;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        flex-direction: row;
        margin: 10px auto
    }

    .export-content-sertificate {
        flex-wrap: wrap;
        margin: 30px 0
    }

    #country {
        padding: 60px 0
    }

    .tabs-sustainability-item {
        width: 100%;
        height: auto;
        margin: 0 0 60px
    }

    .tabs-sustainability-item-number {
        font-size: 80px
    }

    .tabs-sustainability-item-title {
        font-size: 20px;
        margin: 0 0 15px
    }

    .sustainability-advantages-2 {
        flex-direction: column;
        padding: 40px 30px 10px;
        border-radius: 50px 0 50px 50px;
        grid-template-columns: repeat(2,1fr)
    }

    .sustainability-advantages-2-item {
        width: 100%
    }

    .sustainability-advantages-2-number {
        font-size: 36px
    }

    .sustainability-advantages-2-value {
        font-size: 24px
    }

    .sustainability-advantages-2-title {
        justify-content: center
    }

    .sustainability-advantages-2-descr {
        color: var(--white);
        margin: 0 0 40px;
        width: 100%;
        text-align: left
    }

    .section-title-black {
        color: var(--black)
    }

    .contact-form-content {
        flex-direction: column
    }

    .contact-form {
        padding: 0;
        text-align: center;
        margin-top: 40px
    }

    .contact-form-descr {
        text-align: center
    }

    .contacts-content {
        flex-direction: column
    }

    .contacts-item {
        width: 100%;
        text-align: center
    }

    .contacts-item-logo {
        margin-bottom: 30px
    }

    .footer {
        flex-direction: column
    }

    .footer-social {
        margin: 20px 0
    }

    .footer-copyright {
        text-align: center
    }

    .footer-copyright br {
        display: none
    }

    .footer-made {
        margin: 20px 0
    }

    .wearefromukraine {
        bottom: -18px;
        right: -195px
    }

    .export-map-points>#canada {
        left: 40px;
        top: 10px
    }

    .export-map-points>#usa {
        left: 25px;
        top: 30px
    }

    .export-map-points>#norway {
        left: 134px;
        top: 4px
    }

    .export-map-points>#great-britain {
        left: 120px;
        top: 17.22px
    }

    .export-map-points>#france {
        left: 123px;
        top: 30px
    }

    .export-map-points>#switzerland {
        left: 136px;
        top: 20px
    }

    .export-map-points>#germany {
        left: 146px;
        top: 14px
    }

    .export-map-points>#italy {
        left: 137px;
        top: 31px
    }

    .export-map-points>#austria {
        left: 154px;
        top: 26px
    }

    .export-map-points>#netherlands {
        left: 128px;
        top: 13px
    }

    .export-map-points>#denmark {
        left: 159px;
        top: 11px
    }

    .export-map-points>#czech-republic {
        left: 150px;
        top: 34px
    }

    .export-map-points>#poland {
        left: 165px;
        top: 23px
    }

    .export-map-points>#lithuania {
        left: 173px;
        top: 14px
    }

    .export-map-points>#slovakia {
        left: 175px;
        top: 29px
    }

    .export-map-points>#israel {
        left: 158.39px;
        top: 41px
    }

    .export-map-points>#japan {
        right: 30px;
        top: 34px
    }
}

@media (max-width: 320px) {
    .export-map-points>#canada {
        left:40px;
        top: 10px
    }

    .export-map-points>#usa {
        left: 25px;
        top: 30px
    }

    .export-map-points>#norway {
        left: 134px;
        top: 4px
    }

    .export-map-points>#great-britain {
        left: 120px;
        top: 17.22px
    }

    .export-map-points>#france {
        left: 123px;
        top: 30px
    }

    .export-map-points>#switzerland {
        left: 136px;
        top: 20px
    }

    .export-map-points>#germany {
        left: 146px;
        top: 14px
    }

    .export-map-points>#italy {
        left: 137px;
        top: 31px
    }

    .export-map-points>#austria {
        left: 154px;
        top: 26px
    }

    .export-map-points>#netherlands {
        left: 128px;
        top: 13px
    }

    .export-map-points>#denmark {
        left: 159px;
        top: 11px
    }

    .export-map-points>#czech-republic {
        left: 150px;
        top: 34px
    }

    .export-map-points>#poland {
        left: 165px;
        top: 23px
    }

    .export-map-points>#lithuania {
        left: 173px;
        top: 14px
    }

    .export-map-points>#slovakia {
        left: 175px;
        top: 29px
    }

    .export-map-points>#israel {
        left: 158.39px;
        top: 41px
    }

    .export-map-points>#japan {
        right: 30px;
        top: 34px
    }

    .export-map-points {
        transform: translate(0,0)
    }
}

@media (max-width: 375px) {
    .export-map-points>#canada {
        left:40px;
        top: 10px
    }

    .export-map-points>#usa {
        left: 25px;
        top: 30px
    }

    .export-map-points>#norway {
        left: 134px;
        top: 4px
    }

    .export-map-points>#great-britain {
        left: 120px;
        top: 17.22px
    }

    .export-map-points>#france {
        left: 123px;
        top: 30px
    }

    .export-map-points>#switzerland {
        left: 136px;
        top: 20px
    }

    .export-map-points>#germany {
        left: 146px;
        top: 14px
    }

    .export-map-points>#italy {
        left: 137px;
        top: 31px
    }

    .export-map-points>#austria {
        left: 154px;
        top: 26px
    }

    .export-map-points>#netherlands {
        left: 128px;
        top: 13px
    }

    .export-map-points>#denmark {
        left: 159px;
        top: 11px
    }

    .export-map-points>#czech-republic {
        left: 150px;
        top: 34px
    }

    .export-map-points>#poland {
        left: 165px;
        top: 23px
    }

    .export-map-points>#lithuania {
        left: 173px;
        top: 14px
    }

    .export-map-points>#slovakia {
        left: 175px;
        top: 29px
    }

    .export-map-points>#israel {
        left: 158.39px;
        top: 41px
    }

    .export-map-points>#japan {
        right: 20px;
        top: 34px
    }

    .export-map-points {
        transform: translate(18px,10px)
    }
}

@media (max-width: 425px) {
    .biofach-pc {
        display:none
    }

    .biofach-mob {
        display: block
    }

    .cd-popup-container {
        max-width: 80%;
        margin: 13em auto
    }

    .export-map-points>#canada {
        left: 40px;
        top: 19px
    }

    .export-map-points>#usa {
        left: 25px;
        top: 41px
    }

    .export-map-points>#norway {
        left: 173px;
        top: -3px
    }

    .export-map-points>#great-britain {
        left: 141px;
        top: 13.219999999999999px
    }

    .export-map-points>#france {
        left: 143px;
        top: 37px
    }

    .export-map-points>#switzerland {
        left: 156px;
        top: 35px
    }

    .export-map-points>#germany {
        left: 149px;
        top: 25px
    }

    .export-map-points>#italy {
        left: 179px;
        top: 42px
    }

    .export-map-points>#austria {
        left: 163px;
        top: 26px
    }

    .export-map-points>#netherlands {
        left: 156px;
        top: 13px
    }

    .export-map-points>#denmark {
        left: 166px;
        top: 11px
    }

    .export-map-points>#czech-republic {
        left: 173px;
        top: 32px
    }

    .export-map-points>#poland {
        left: 174px;
        top: 20px
    }

    .export-map-points>#lithuania {
        left: 182px;
        top: 14px
    }

    .export-map-points>#slovakia {
        left: 184px;
        top: 29px
    }

    .export-map-points>#israel {
        left: 197.39px;
        top: 50px
    }

    .export-map-points>#japan {
        right: 30px;
        top: 34px
    }

    .export-map-points {
        transform: translate(18px,10px)
    }

    .welcome-navigation-lang p i {
        display: none
    }

    .welcome-navigation-lang p br {
        display: none
    }

    .welcome-navigation-lang a {
        font-size: 24px;
        color: var(--white);
        font-weight: 700;
        transition: .3s;
        opacity: 1
    }

    .welcome-navigation-logo {
        display: block;
        width: 100px;
        opacity: 1;
    }

    #welcome-navigation {
        padding: 20px;
        z-index: 90
    }

    #menu .social-icons ul {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        margin: 0;
        padding: 0;
        align-content: center
    }

    #menu .social-icons {
        position: absolute;
        z-index: 5;
        top: 0;
        transform: translatex(-50%);
        left: 50%
    }

    #menu .social-icons ul li {
        margin: 0 10px
    }
}

@media (max-width: 480px) {
    .welcome-navigation-lang p i {
        display: none
    }
}