:root {
    --bg: #ff0037;
    --col: #B1B1B1;
}
.visible-xs {
    display: none !important;
}
.flex-b {
    display: flex;
    justify-content: space-between;
    align-items: center
}
.flex-s {
    display: flex;
    justify-content: flex-start;
    align-items: center
}
.block {
    padding: 70px 0;
}
.block.container {
    padding: 70px 0
}
.container {
    width: 1170px;
    margin: 0 auto;
    padding: 0;
}
.pad-top {
    padding-top: 70px;
}
.pad-bot {
    padding-bottom: 70px;
}
.nav-control {
    display: none
}

.but {
    height: 70px;
    width: auto;
    background: var(--bg);
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    transition: all linear .2s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    text-transform: uppercase;
    border: 2px solid #fff;
    color: #fff;
    position: relative;
    padding: 0 38px;
    overflow: hidden;
    z-index: 1
}

.over_but {
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-color: #fff;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.but:hover {
    color: var(--bg);
    background: #fff;
    border: 2px solid var(--bg);
}
.but:hover .over_but {
    width: 225%;
    height: calc(2.25*260px);
}

.but:after {
    content: '';
    background: url(../img/icon/arr.svg) center/cover;
    width: 8px;
    height: 15px;
    margin-left: 15px;
    transition: all 0.4s ease-in-out
}
.but:hover:after {
    background: url(../img/icon/arr_red.svg) center/cover;
}

.send-form .but {
    width: 400px
}

.input {
    width: 100%;
    height: 70px;
    padding: 0 40px;
    border: none;
    background: #fff;
    border-radius: 50px;
    outline: none;
    display: block;
    font-size: 24px;
    border: 2px solid var(--bg);
    margin-bottom: 36px;
    font-weight: bold;
    color: var(--bg)
}
.search-field .input {
    font-style: italic;
    text-transform: none;
    font-size: 14px;
    font-weight: 600;
    height: 60px;
    font-weight: 500;
    background: #fff
}
.input-wrap {
    align-items: flex-start;
    flex-wrap: wrap;
}
.input-wrap .input {
    width: 48%;
}
textarea.input {
    height: 200px;
    padding: 30px 40px;
    resize: none
}
.polit {
    font-size: 14px;
    margin-left: 35px;
    font-style: italic;
    font-weight: bold
}
.polit a {
    text-decoration: underline;
}

.main {
    min-height: 880px;
    position: relative;
}
.main>.container {
    opacity: 0;
    transition: all .5s cubic-bezier(0, 0, .2, 1);
}
.main_fix {
    height: 900px
}
.main_factory {
    height: 950px;
}
.main_shop {
    height: 950px;
}
.main_news {
    height: auto;
    min-height: 0;
}
.main_info {
    height: auto;
    min-height: 320px;
}
.main_curtain {
    background: var(--bg);
    position: absolute;
    content: '';
    height: 3000px;
    width: 3000px;
    border-radius: 50%;
    left: calc(50% - 1600px);
    bottom: 100px;
    z-index: -1;
    transition: all .5s cubic-bezier(0, 0, .2, 1);
    transform: scale(0);
}
.main_curtain.show {
    transform: scale(1);
}
.main_info .main_curtain {
    left: calc(50% - 1500px);
    bottom: 0
}
.main_factory .main_curtain {
    height: 3791px;
    width: 3153px;
    left: calc(50% - 1691px);
}
.main_shop .main_curtain {
    height: 3742px;
    width: 3233px;
    left: calc(50% - 1645px);
}
.main_team .main_curtain {
    height: 3847px;
    width: 3186px;
    left: calc(50% - 1592px);
    bottom: 93px;
}
.main_news .main_curtain {
    bottom: 0;
}
.main_eks .main_curtain {
    height: 3847px;
    width: 3186px;
    left: calc(50% - 1592px);
    bottom: 83px;
}
.main_factory .main-content_prod .main-content-img {
    position: relative;
    bottom: 33.8px;
    transform: rotate(-7.7deg);
}
.main_shop .main-content-img {
    clip-path: ellipse(112% 60% at 4% 38%);
    position: relative;
    bottom: -32.8px;
}

header {
    margin-bottom: -45px;
    position: relative;
    opacity: 1;
    transition: all .5s cubic-bezier(0, 0, .2, 1);
}
.main-page header {
    opacity: 1;
}
.head {
    padding-top: 65px;
    align-items: flex-start;
}
.head, .head a {
    color: #fff;
    font-size: 0.875rem
}
.head-left_side, .head-rigth_side {
    width: 100%;
    align-items: flex-start
}
.head-rigth_side {
    display: flex;
    justify-content: flex-end;
}

.lang {
    position: relative;
/*    width: 55px;*/
    margin-right: 30px;
    font-weight: bold;
    border: 2px solid #fff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
    z-index: 2;
}
.mobile__img{display: none!important;}
.lang-selected {
/*
    width: 55px;
    height: 55px;
*/
    padding: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.lang .lang-change {
    display: none
}
.to_shop {
    width: 170px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 30px;
    font-weight: bold;
    position: relative;
    transition: all linear .2s;
    z-index: 1;
    overflow: hidden
}
.to_shop:before {
    width: 34px;
    height: 34px;
    content: "";
    background: url(../img/icon/lukas_shop.svg) center/cover;
    margin-right: 15px;
    transition: all linear .2s;
}
.to_shop:hover .over_but {
    width: 225%;
    height: calc(2.25*170px);
}
.to_shop:hover {
/*    border: 2px solid var(--bg);*/
    color: var(--bg);
    background: #fff
}
.to_shop:hover:before {
    background: url(../img/icon/lukas_shop_bl.svg) center/cover;
}

.menu {
/*    border: 2px solid #fff;*/
/*    border-radius: 30px;*/
    height: 55px;
    align-items: stretch;
    overflow: hidden
}
.menu a {
    padding: 0 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    height: 100%;
    transition: all linear .2s;
    z-index: 1;
    overflow: hidden;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.menu a:first-child {
    border-left: 2px solid #fff;
    border-radius: 30px 0 0 30px;
}
.menu a:last-child {
    border-right: 2px solid #fff;
    border-radius: 0 30px 30px 0;
}
.menu a:not(:last-child) .sep {
    position: absolute;
    content: '';
    height: 15px;
    width: 2px;
    background: #fff;
    right: 0
}
.menu a:first-child {
    padding-left: 28px
}
.menu a:last-child {
    padding-right: 28px
}
.menu a:hover .over_but {
    width: 225%;
    height: calc(2.25*120px);
}
.menu a:hover {
    color: var(--bg);
    background: #fff;
}
.logo {
    margin-top: -30px;
    z-index: 2;
}
.logo img {
    width: 303px;
}

.main-content {
    align-items: flex-start;
    margin-top: 40px;

}

.main-content-text {
    color: #fff;
    flex-shrink: 0;
    width: 48%;
    margin-right: 2%;
    padding-top: 50px;
    padding-bottom: 40px
}
.main-content-text.main-content-text-prod{width: 43%}
.main_news .main-content-text {
    width: 80%;
    padding: 100px 0;
    margin: 0 auto;
    text-align: center;
}
.main_title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 125%;
    text-transform: uppercase
}
.main_news .main_title {
    font-weight: 800;
    margin-bottom: 50px
}
.main_title-big {
    font-size: 3.75rem
}
.main_title b {
    font-weight: 800
}
.main_news_crumbs {
    font-size: 14px;
}
.main_news_crumbs span {
    padding: 0 5px
}
.main_subtitle {
    font-size: 1.125rem;
    padding-right: 15%
}
.deco {
    height: 7px;
    width: 464px;
    background-image: url(../img/icon/dots.svg);
    background-position: 0 0;
    background-size: auto 7px;
    background-repeat: repeat-x;
    margin: 30px 0;
    position: relative;
}
.deco_white {
    background-image: url(../img/icon/dots_white.svg);
}

.main-content-img {
    width: 48%;
    position: relative
}
.main-content-img img {
/*    width: 100%*/
/*    margin-left: -100px*/
}
.main-content_prod .main-content-img {
/*    align-self: flex-end*/
}
.main-content_prod .main-content-img img {
    margin-left: -90px;
    display: block
}
.main_eks .main-content-img img {
    margin-left: -160px;
}
.main_eks .main-content-img {
    position: relative;
    bottom: -12.5px
}
.main-content-img .label {
    position: absolute;
    left: 100px;
    bottom: 320px
}

.swiper_banner .swiper-slide img {
    border-radius: 20px;
}
.swiper_banner .swiper-pagination {
    bottom: 40px;
}
.swiper_banner .swiper-pagination .swiper-pagination-bullet {
    width: 110px;
    border-radius: 5px;
    height: 4px;
    background: #fff;
    opacity: .5;
    margin: 0 10px
}
.swiper_banner .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.category_container {
    padding: 30px 0
}

.category-menu {
    align-items: flex-end;
    position: relative;
    padding-bottom: 25px
}
.category-menu:after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 210px;
    background: var(--bg);
    z-index: -1;
    border-radius: 20px;
    bottom: 0;
    left: 0;
}
.category-item {
    width: 25%;
    position: relative;
}
.category-item a {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1
}
.category-item_img {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.category-item_img img {
    margin-bottom: -75px;
    position: relative;
    transition: transform .6s cubic-bezier(0, 0, .2, 1)
}
.category-item:hover img {
    transform: translateY(-15px)
}

.category-item-platte {
    background: url(../img/menu_bottom.png) 10px 0/cover;
    width: 240px;
    height: 123px!important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    margin-left: 10px !important;
}
.category-item_name {
    text-align: center;
    font-weight: bold;
    color: #fff;
}




.banner-row {
    align-items: stretch;
    margin-bottom: 30px
}
.banner  {
    position: relative;
    display: flex;
    border-radius: 26px;
    overflow: hidden;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: flex-end;
}
.over_link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9
}
.banner-hor-bl {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.banner-hor {
    width: 673px;
    height: 387px;
}
.banner-vert {
    width: 467px;
    height: 804px;
}
.banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 26px;
    transition: transform linear 1s
}
.banner:hover img {
    transform: scale(1.03)
}
.banner-text {
    position: relative;
    z-index: 2;
    padding: 0 30px 25px 30px;
    color: #fff;
}
.banner-text p {
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: bold;
}
.link {
    color: #fff;
    position: relative;
    padding-right: 20px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    line-height: 100%;
}
.link_black {
    color: #000
}
.link:after {
    content: '';
    background: url(../img/icon/arr.svg) center/cover;
    width: 7px;
    height: 12px;
    right: 8px;
    position: absolute;
    transition: all cubic-bezier(0,0,.2,1) .3s;
}
.link_black:after {
    background: url(../img/icon/arr_black.svg) center/cover;
}
.link:hover:after {
    right: 0;
}
.banner-vert a {
    margin-top: 20px;
    display: inline-flex;
}

.news-container {
    padding: 150px 0
}
.news_row {
    align-items: flex-start;
}
.news-first {
    margin-right: 60px;
    width: 360px;
    flex-shrink: 0;
    margin-top: 50px
}
.news-first-title {
    font-weight: 800;
    font-size: 48px;
    color: var(--bg);
    margin-bottom: 25px
}
.news-first-subtitle {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 45px;
}
.news-next_slide {
    width: 70px;
    height: 70px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    margin-left: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all linear .2s
}
.news-next_slide:before {
    width: 14px;
    height: 26px;
    content: "";
    background: url(../img/icon/arr.svg) center/cover;
    transition: all linear .2s;
}
.news-next_slide:hover {
    border-color: var(--bg);
    background: #fff
}
.news-next_slide:hover:before {
    background: url(../img/icon/arr_red.svg) center/cover;
}

.news-next_slide:hover .over_but {
    width: 225%;
    height: calc(2.25*70px);
}

.news_slider {
    width: 100%;
    flex-shrink: 0;
}
.new_slide {
    text-align: center;
    width: 385px;
    position: relative;
}
.new_slide-img {
    border-radius: 50%;
    border: 7px solid #fff;
    margin-bottom: 23px;
    width: 385px;
    height: 385px;
    overflow: hidden;
    display: inline-block;
    justify-content: center;
    align-items: center
}
.new_slide-img img {
    width:100%;
    height:100%;
	object-fit: cover;
    border-radius: 50%;
    transition: all .6s ease-in-out
}
.new_slide:hover .new_slide-img img {
    transform: scale(1.05);
}
.new_slide-title {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}
.new_slide-link {
    margin-top: 20px;
    font-size: 14px;
}

.work {
    height: 210px;
    background: var(--bg);
    border-radius: 26px;
    margin: 100px auto
}
.work p {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
}
.work-img {
    align-self: flex-end;
    margin-left: -50px;
    margin-right: 50px;
    margin-bottom: -6px
}
.work>img {


}
.work .but {
    flex-shrink: 0;
    margin-right: -90px
}

.slogan-container {
    position: relative;
    padding: 200px 0 50px 140px
}
.slogan-img {
    position: absolute;
    left: -40px;
    bottom: 100px;
    animation: key 6s ease-in-out infinite;
}
.slogan {
    font-size: 48px;
    font-weight: 800;
    color: var(--bg);
    line-height: 125%
}
@keyframes key {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

.characteristics {
    padding: 70px 0;
    background: #fff;
    margin-bottom: 70px;
    position: relative;
}
.characteristics>a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 8;
}
.characteristic_item {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    background: var(--bg);
    text-align: center;
    padding: 30px;
    box-shadow: inset 0 0 0 3px #fff;
    border: 7px solid var(--bg)
}

.characteristics > .swiper-wrapper{
    transition-timing-function : linear;
}

.bottom_baners-container {
    padding: 60px 0;
}
.bottom_baner {
    width: 565px;
    width: 48.3%;
}

.get_catalog {
    height: 210px;
    background: var(--bg);
    color: #fff;
    border-radius: 26px;
    margin: 100px auto;
    padding-left: 85px;
}

.adr_banner {
    height: 140px;
    padding-left: 55px;
    width: 90%;
    margin: 80px auto -70px;
    position: relative;
    z-index: 2
}
.get_catalog-img {
    animation: float 6s ease-in-out infinite;
}
.get_catalog-title p:first-child {
    font-weight: 800;
    font-size: 30px;
    text-transform: uppercase;
}

.get_catalog-title p:last-child {
    font-size: 13.6px;
}
.get_catalog-title .get_catalog-headline {
    font-size: 30px !important;
    margin-top: 0 !important
}
.get_catalog .but {
    margin-right: -90px;
}

.get_doc {
    margin: 0 auto;
    padding: 0 70px;
}
.get_doc .get_catalog-title {
    width: 45%;
}
.get_doc .get_catalog-title p:last-child {
    margin-top: 10px
}
.get_doc .but {
    margin-right: 0;
}

.adr_banner-title {
    font-weight: bold;
    font-size: 30px
}
.adr_banner-subtitle {
    font-size: 24px;
}
@keyframes float {
	0% {
		transform: translatey(0px);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.3));
	}
	50% {
		transform: translatey(-20px);
        filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
	}
	100% {
		transform: translatey(0px);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.3));
	}
}

footer {
    margin-top: 100px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
footer:after {
    background: var(--bg);
    position: absolute;
    content: '';
    height: 3000px;
    width: 4000px;
    border-radius: 50%;
    left: calc(48% - 2000px);
    top: 15px;
    z-index: -1;
}
footer a {
    color: #fff;
}
.top-footer {
/*    margin-bottom: 65px;*/
}
.footer_logo {
    width: 236px;
}
.soc a {
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid #fff;
    margin-left: 20px;
}
.soc a:nth-child(1) {
    margin-top: -50px
}
.soc a:nth-child(2) {
    margin-top: -35px
}
.soc a:nth-child(3) {
    margin-top: -10px
}
.soc a:nth-child(4) {
    margin-top: 15px
}
.soc a:nth-child(5) {
    margin-top: 40px
}
.mid-footer {
    align-items: flex-start;
    padding: 70px 0 70px
}
.nav-footer-cont {
    align-items: flex-start;
}
.nav-footer-adress {
    font-size: 14px;
}
.nav-footer-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 17px
}
.nav-footer {
    margin-right: 50px
}
.nav-footer a {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
}
.nav-footer-adress a {
    text-decoration: underline
}
.tel img {
    margin-right: 17px;
}
.tel span {
    display: block;
    font-weight: bold;
    font-size: 18px;
}

.tel a {
    font-weight: bold;
    font-size: 28px;
    color: #fff;
}
.footer-contact .but {
    height: 55px;
    margin-top: 30px;
}
.footer-contact .but:after {
    display: none;
}
.bot-footer {
    padding: 15px 0 30px;
    align-items: flex-end;
    font-size: 14px;
}
.bot-footer .info {
    font-size: 12px;
    margin-left: 60px;
}

.to_top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--bg);
    z-index: -1;
    opacity: 0;
    cursor: pointer
}
.to_top.show {
    opacity: 1;
    z-index: 9
}
.to_top img {
    transform: rotate(-90deg)
}

.popup_menu {
/*    display: none;*/
    width: 100%;
    min-height: 100vh;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -9999;
    -webkit-transition: all 0s cubic-bezier(0,0,.2,1) .6s;
    transition: all 0s cubic-bezier(0,0,.2,1) .6s;
    color: #fff
}
.popup_menu.open {
    overflow: visible;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: all 0s cubic-bezier(0,0,.2,1);
    transition: all 0s cubic-bezier(0,0,.2,1);
    z-index: 9;
/*    display: block;*/
}

.popup_menu-overlay-backdrop {
    width: 140vmax;
    height: 140vmax;
    background-color: var(--bg);
    background-image: radial-gradient(circle at 27% 50%,var(--bg),var(--bg) 56%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    pointer-events: none;
    -webkit-transition: opacity .3s cubic-bezier(0, 0, .2, 1) .3s,
    -webkit-transform .6s cubic-bezier(0, 0, .2, 1);
    transition: opacity .3s cubic-bezier(0, 0, .2, 1) .3s,
    -webkit-transform .6s cubic-bezier(0, 0, .2, 1);
    transition: transform .6s cubic-bezier(0, 0, .2, 1),
    opacity .3s cubic-bezier(0, 0, .2, 1) .3s;
    transition: transform .6s cubic-bezier(0, 0, .2, 1),
    opacity .3s cubic-bezier(0, 0, .2, 1) .3s,
    -webkit-transform .6s cubic-bezier(0, 0, .2, 1);
}
.open .popup_menu-overlay-backdrop {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity .3333333333s cubic-bezier(0, 0, .2, 1), -webkit-transform 1s cubic-bezier(0, 0, .2, 1);
    transition: opacity .3333333333s cubic-bezier(0, 0, .2, 1), -webkit-transform 1s cubic-bezier(0, 0, .2, 1);
    transition: transform 1s cubic-bezier(0, 0, .2, 1), opacity .3333333333s cubic-bezier(0, 0, .2, 1);
    transition: transform 1s cubic-bezier(0, 0, .2, 1), opacity .3333333333s cubic-bezier(0, 0, .2, 1), -webkit-transform 1s cubic-bezier(0, 0, .2, 1);
}
.popup_menu-inner {
    opacity: 0;
    transition: opacity .3s cubic-bezier(0,0,.2,1) 0s;
}
.open .popup_menu-inner {
    opacity: 1;
    -webkit-transition: opacity .5s cubic-bezier(0,0,.2,1) .3333333333s;
    transition: opacity .5s cubic-bezier(0,0,.2,1) .3333333333s;
}
.popup_menu .container {
    position: relative;
    min-height: 100vh;
}
.popup_menu-content {
    height: 100%;
    padding-top: 50px;
    align-items: flex-start
}
.popup_menu-img {
    margin: 0 0 0 -60px;
    position: relative;
    width: 664px;
    height: 636px;
    z-index: -1
}
.popup_menu-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/menu_img_deco.png) center/cover;
    opacity: 0;
    transform: scale(0);
    transition: all linear .7s;
}
.open .popup_menu-deco {
    opacity: 1;
    transform: scale(1);
}
.popup_menu-img img {
    border-radius: 50%;
    position: relative;
    z-index: 2;
    top: 40px;
    left: 110px
}
.popup_menu-links {
    width: 48%;
    flex-shrink: 0;
    padding-top: 100px
}
.popup_menu-links p {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 45px;
}
.popup_menu-links a {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    display: block;
    line-height: 48px;
    transition: all linear .2s
}
.popup_menu-links a:hover {
    padding-left: 20px;
}
.popup_menu-soc {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 48%;
}
.popup_menu .popup_menu-soc a {
    margin: 0 20px 0 0
}

.popup_product {
    padding: 60px 0;
    width: 85%;
    margin: 0 auto;
}
.popup_product-img {
    width: 45%;
    flex-shrink: 0;
    margin-right: 60px;
}
.popup_product-img img {
    width: 100%;
}
.popup_product-text {
    width: 100%;
}
.popup_product-title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px
}
.popup_product-desc p {
    font-size: 16px;
    margin-bottom: 20px
}
.popup_product-footer {
    width: 90%;
    margin: 0 auto 60px;
    align-items: flex-start
}
.popup_product-footer-item {
    font-size: 14px;
    line-height: 160%;
    align-items: center;
}
.popup_product-footer-item img {
    margin-right: 10px
}
.popup_contact-form {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup_contact-form form {
    width: 65%;
    margin: 0 auto;
}
.popup_contact-form .input {
    margin-bottom: 30px;
    font-size: 22px
}
.popup_contact-form .polit a {
    color: #fff
}

.popup_menu-close {
    position: absolute;
    top: 60px;
    right: 60px;
    cursor: pointer;
}

.gallery {
    padding: 50px 0 70px
}
.gallery > .swiper-wrapper{
    transition-timing-function : linear;
}

.gallery_item {
    width: 565px;
}
.gallery_item img {
    width: 100%;
    border: 1px solid #898989;
    border-radius: 26px;
}

.prod_content-container {
    background: #fff;
    padding-bottom: 20px;
    margin-top: 105px;
}

.prod_content-bl {
    background: var(--bg);
    color: #fff;
    border-radius: 26px;
    padding: 0 90px;
    height: 210px;
    position: relative;
    top: -105px;
    margin-bottom: -50px
}
.prod_content-bl-mod {
    justify-content: space-around;
}
.prod_content-it {
    width: auto;
}
.prod_content-it img {
    margin-right: 30px
}
.prod_content-it p {
    font-size: 1.4rem;
}

.content-block {
    width: 100%;
}
.prod_content-text {
    text-align: center;
    width: 82%;
    margin: 0 auto;
}
.center_text {
    text-align: center;
}
.content-block p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px
}
.content-block .deco {
    margin: 30px auto
}
.content-block .content-title {
    color: var(--bg);
    font-size: 48px;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 30px;
    text-transform: uppercase
}
.content-block .content-title_small {
    font-size: 36px
}
.content-block .content-title_mod {
    font-weight: 500;
}
.content-block .content-title_mod b {
    font-weight: 800;
}
.catalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 50px 0 0;
    gap: 96px
}
.product {
    width: 326px;
    height: 250px;
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.product_img {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    margin-right: -35px;
    width: 100%;
    transition: transform .6s cubic-bezier(0, 0, .2, 1)
}
.catalog_cruasan .product_img {
    margin-right: -15px;
    bottom: 30px
}
.catalog_cookies .product_img {
    margin-right: -65px;
    bottom: 30px;
    width: 100%;
}
.product:hover .product_img {
    transform: translateY(-10px)
}
.catalog_cruasan  .cruasan-image-veritcal {
    margin-right: 0px;
}
.candy-image-horizontal {
    margin-right: -15px;
    bottom: 30px
}
.prod_bottom {
    background: url(../img/prod_bottom.png) center/cover;
    width: 326px;
    height: 128px;
    position: static;
    left: 0;
    bottom: 0;
}
.prod_plus {
    background: url(../img/icon/plus.svg) center/cover;
    width: 57px;
    height: 57px;
    display: block;
    position: absolute;
    bottom: 50px;
    right: 40px;
    z-index: 3;
    cursor: pointer
}


.pryncyp_row {
    margin-top: 50px;
    border-radius: 26px;
    background: var(--bg);
    color: #fff;
    padding: 60px 60px 40px;
    align-items: flex-start
}
.pryncyp-title {
    width: 350px;
    width: 32%;
    margin-right: 1%;
    flex-shrink: 0
}
.pryncyp-title p {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 20px;
}
.pryncyp-text p {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 128%
}

.video {
    height: 650px;
    background: url(../img/video.jpg) center/cover;
    border-radius: 26px;
    overflow: hidden;
    margin-top: 20px;
    cursor: pointer;
}
.video iframe {
    width: 100%;
    height: 100%;
}

.about_char {
    margin-top: -150px;
    position: relative;
    z-index: -1;
    padding-top: 200px;
    background: #fff;
    padding-bottom: 60px
}
.about_char .container {
    align-items: flex-start
}
.about_char-it {
    text-align: center;
    color: var(--bg);
    width: 19%
}
.about_char-it span {
    display: block;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}
.about_char-it span b {
    font-size: .7em;
}
.about_char-it p {
    font-size: 18px;
    text-transform: uppercase;
}

.about_row:nth-of-type(2n) {
    flex-direction: row-reverse
}
.about_row-content {
    width: 50%;
    flex-shrink: 0
}
.about_row-img {
    width: 50%;
    text-align: center;
}
.about_row .about_row-title {
    font-size: 24px;
    margin-bottom: 0;
}
.about_row .deco {
    margin: 15px 0;
}
.deco_left {
    margin: 30px 0 !important
}
.about_row .about_row-text {
    font-size: 24px;
    line-height: 137%
}

.info_block {
    background: var(--bg);
    color: #fff;
    border-radius: 26px;
    padding: 60px;
    text-align: center;
    font-weight: bold;
    font-size: 21px
}
.info_block-contact {
    height: 140px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -70px;
    position: relative;
    z-index: 1;
}

.addresses_head {
    border-radius: 26px;
    background: var(--bg);
    color: #fff;
    padding: 20px 40px;
    width: 90%;
    margin: 0 auto 50px
}
.addresses_head-desc {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px
}
.addresses_head-desc img {
    margin-left: 15px
}

.addresses_select {
    position: relative;
    width: 360px;
    z-index: 3
}

.distr-contact .addresses_select {
    width: 100%;

}
.distr-contact .tab .all_contacts-tel {
    text-align: center
}

.addresses_select-selected {
    width: 100%;
    background: #fff;
    color: var(--bg);
    border-radius: 40px;
    height: 70px;
    padding: 0 30px 0 40px;
    cursor: pointer;
}
.distr-contact .addresses_select-selected {
    border: 2px solid var(--bg)
}
.addresses_select-selected span {
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
}
.addresses_select-selected img {
    transform: rotate(90deg);
    transition: transform .3s cubic-bezier(0, 0, .2, 1)
}
.addresses_select-selected.open img {
    transform: rotate(-90deg);
}
.addresses_select-list {
    background: #fff;
    border-radius: 0 0 26px 26px;
    overflow: hidden;
    padding: 40px 0 10px;
    position: absolute;
    width: 100%;
    z-index: -1;
    left: 0;
    top: calc(100% - 35px);
    display: none;
    box-shadow: 0 0 5px 0 #eee;
    max-height: 290px;
    overflow-y: scroll;
}
.addresses_select-list a {
    color: var(--bg);
    display: block;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    font-size: 18px;
    background: #fff;
    text-transform: uppercase;
}
.addresses_select-list a.active, .addresses_select-list a:hover {
    background: #efefef
}

.tab {
    display: none
}

.tab-contact {
    flex-wrap: wrap;
    align-items: stretch;
}
.tab-contact-item {
    width: 48%;
    background: var(--bg);
    border-radius: 26px;
    color: #fff;
    padding: 40px 40px 0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
    text-transform: uppercase;
}
.tab-contact-adr {
    font-weight: 800;
    font-size: 32px
}
.tab-contact-tel {
    font-size: 32px;
    color: #fff;
}
.tab-contact-work {
    font-size: 18px;
    margin-top: 30px;
}
.map_link {
    margin-bottom: -35px;
}

.contact-container {
    background: #fff;
    padding-top: 130px
}


.all_contacts {
    align-items: flex-start;

}
.all_contacts>div {
    width: 45%;
}
.all_contacts-item {
    padding-bottom: 0px;
}
.all_contacts-item .deco.deco_left {
    margin: 50px 0 !important
}
.all_contacts-title {
    color: var(--bg);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase
}
.all_contacts-text {
    font-style: italic;
    font-size: 14px
}
.all_contacts-tel {
    margin-top: 15px;
}
.all_contacts-tel span {
    display: block;
    font-style: italic;
    font-size: 14px
}
.all_contacts-tel p {
    font-size: 24px;
    font-weight: bold
}

.distr {
    align-items: flex-end;
}
.distr>div {
    width: 45%;
}
.map_under {
    padding: 30px 0 20px
}


.history_line {
    padding: 0px 0;
    overflow: visible
}
.history-container {
    background: url(../img/icon/dot.svg) 0px 120px repeat-x;
    position: relative;

}
.history-block {
    position: relative;
    padding: 0px 0 50px
}
.history_pre {
    position: absolute;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.history_pre p {
    font-size: 26px;
    font-weight: bold;
    line-height: 125%;
    margin-bottom: 60px;
}
.history_pre img {
    transform-origin: 0;
    position: relative;
    left: 25px;
    animation: swipe 1.2s ease infinite;
}
.history_item {
    width: 240px;
    margin: 0 15px;
    transition: all .6s cubic-bezier(0, 0, .2, 1);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .6s cubic-bezier(0, 0, .2, 1)
}
.history_item .history_text {
    display: none
}

.history_item.swiper-slide-active {
    width: 240px;
    height: 240px;
}
.history_line_wrapper {
    display: flex;
    align-items: center;
}
.history_circle {
    width: 150px;
    height: 150px;
    background: var(--bg);
    border-radius: 50%;
    box-shadow:
        -7px -7px 9px -3px rgba(255, 255, 255, 0.9),
        7px 7px 7px 0px rgba(167, 25, 34, 0.1),
        10px 10px 20px 5px rgba(0, 0, 0, 0.3),
        0 0 0 7px var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    transition: all .6s cubic-bezier(0, 0, .2, 1);
    z-index: 2
}
.history_item.swiper-slide-active .history_circle {
    width: 240px;
    height: 240px;
    font-size: 48px
}
.history_circle-mod {
    width: 240px;
    height: 240px;
    flex-direction: column;
    flex-shrink: 0;
    margin: 0 -120px
}

.history_circle-mod span {
    display: block;
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 0px;
}
.history_circle-mod span b {
    font-size: .7em;
    position: relative;
    left: -5px
}
.history_circle-mod p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: normal;
    padding: 0 20px
}
.text_from_slide {
    text-align: center;
/*    width: 80%;*/
    margin: 0 auto;
    font-size: 20px;
    opacity: 0;
    transition: all .3s cubic-bezier(0, 0, .2, 1)
}
.text_from_slide.show {
    opacity: 1
}
.text_from_slide span {
    background: var(--bg);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    margin: 5px 5px
}
.company {
    position: relative;
    padding-bottom: 150px;
    padding-top: 100px;
    margin-bottom: 100px
}
.company:after {
    position: absolute;
    width: 7px;
    content: '';
    height: 70%;
    top: 15%;
    left: calc(50% - 3.5px);
    background: url(../img/icon/dot1.svg) 0 repeat-y;
    z-index: -1
}
.company_row {
    margin-bottom: -150px
}
.company_row:nth-child(2n) {
    flex-direction: row-reverse;
/*    margin-top: -150px*/
}
.company_img {
    width: 80%;
}
.company_img img {
    border-radius: 50%;
}
.company_title {
    color: var(--bg);
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    width: 80%;
}
.company_row:nth-child(2n) .company_title {
    text-align: right;
    position: relative;
    right: 15%
}
.company_row:nth-child(2n+1) .company_title {
    text-align: left;
    position: relative;
    left: 15%
}
/*
.company_title-large {
    text-align: right
}
.company_title-large span {
    padding-right: 10%
}
.company_row:nth-child(2n) .company_title-large {
    text-align: left
}
.company_row:nth-child(2n) .company_title-large span {
    padding-left: 10%
}
*/

.news_filter {
    width: 80%;
    margin: 0 auto;
}
.news_filter-tags {
    margin-bottom: 30px;
}
.news-tags {
    background: #fff;
    border: 2px solid var(--bg);
    color: var(--bg);
    margin-bottom: 20px
}
.news-tags:hover, .news-tags.active {
    background: var(--bg);
    color: #fff;
}
.news-tags:after, .search_but:after {
    display: none
}
.news_search {
    margin-bottom: 20px;
}
.search_but {
    background: var(--bg);
    color: #fff;
    margin-left: 30px;
    flex-shrink: 0;
    height: 60px
}
.search-field {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.search-field:before {
    background: url(../img/icon/search.svg) center/cover;
    width: 42px;
    height: 42px;
    position: absolute;
    content: '';
    left: 12px
}
.search-field .input {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    padding-left: 70px;
    color: #000
}

.news_wrapper {
    display: none
}
.news_list {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 70px;
}
.main_new {
    width: 48.5%;
    margin-bottom: 50px;
    position: relative;
}
.main_new-img {
    margin-bottom: 20px;
    width: 100%;
    height: 380px
}
.main_new-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px
}
.main_new-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px
}
.main_new-intro {
    font-size: 14px;
    margin-bottom: 18px
}
.main_new-bot {
    margin-top: 18px
}
.main_new-link {
    font-size: 14px;
}

.main_new-date {
    font-size: 14px
}
.more_news {
    margin: 0 auto;
    display: flex;
    width: 260px
}

.new-content {
    width: 87%;
    margin: 0 auto;
    text-align: center
}
.new-content img {
    width: 100%;
    border-radius: 26px;
    margin: 40px 0
}
.new-content p {
    font-size: 18px;
    margin-bottom: 20px
}

.share {
    text-align: center;
    margin-top: 40px
}
.share span {
    font-size: 18px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.57);
    display: block;
    margin-bottom: 20px
}
.share_ic {
    justify-content: center;
}
.share_ic a {
    margin: 0 10px !important
}


.records {
    position: relative;
    padding-bottom: 110px;
/*    padding-top: 100px;*/
/*    margin-bottom: 100px*/
}

.records_row {
    margin-bottom: -110px;
    position: relative;
}
.records_row:nth-child(2n) {
    flex-direction: row-reverse;
/*    margin-top: -150px*/
}
.records_prise {
    position: absolute;
    background: url(../img/prise.png) center/100% 100%;
    width: 204px;
    height: 291px;
    text-align: center;
    padding-top: 78px;
    left: calc(50% - 100px);
}
.records_img {
    width: 48.5%;
    flex-shrink: 0;
}
.records_img img {
    border-radius: 50%;
    width: 100%;
}
.records_text {
    flex-shrink: 0;
    width: 38%;
    margin-top: -50px;
}
.records_text-title {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--bg);
    font-weight: bold;
    margin-bottom: 10px;
}
.records_text-desc {
    margin-bottom: 20px;
}
.records_text>a {
    margin-top: 20px;
}

.team_info-container {
    background: #fff;
    padding-top: 150px;
    margin-top: -270px
}
.team_info {
    border-radius: 26px;
    background: var(--bg);
    height: 210px;
    position: relative;
    bottom: -105px;
    padding: 20px 0px;
    margin-bottom: 100px
}
.team_info-simp {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 150px
}
.team_info-text {
    color: #fff;
    font-style: italic;
    font-size: 21px;
    line-height: 130%;
    padding: 0 40px;
}
.team_info-center {
    align-items: stretch;
}
.team_info-center .team_info-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    font-size: 19px
}
.team_info-bor .team_info-text:not(:last-child) {
    border-right: 2px solid #fff
}
.team_info-text b {
    font-style: normal
}

/* new team section start */

.container.team {
    margin-bottom: 50px;
}
.team {
    margin-top: -50px;
}
.team .team-row.flex-b {
    margin-top: 0px;
    flex-wrap: wrap;
}
.team .team-item {
/*    width: calc(46.5% - 30px);*/
    margin: 25px 0px;
    height: auto;
    flex-wrap: wrap;
    width: 436px;
}
.team_slider {
    width: 100%;
}
.team-block {
    height: 94px;
    background: var(--bg);
    border-radius: 20px;
    margin: 230px auto 50px auto;
    width: 100%;
}
.team-block p {
    font-size: 16px;
    line-height: 22px;
}
.team-img {
    align-self: flex-end;
    min-width: 218px;
}
.team-img img {
    margin-bottom: -4px;
    width: 100%;
    height: auto;
}
.team-info {
    padding-bottom: 22px;
    position: relative;
    text-align: left;
    margin-left: 14px;
}
.team-info .team-name {
    color: var(--bg);
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: bold;
    max-width: 260px;
    text-align: left;
    margin-bottom: 10px;
    min-height: 48px;
}
.team-info .team-data {
    max-width: 204px;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #2D2C2C;
    min-height: 114px;
    max-height: 114px;
    overflow: hidden;
    display: flex;
    align-items: inherit;
    flex-wrap: wrap;
}
.team-text {
    width: 221px;
    text-align: left;
    padding-bottom: 20px;
}
.team-block.flex-b {
    align-items: end;
}
.popup_video {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}
.popup_video .video-team {
    width: 50%;
    display: block;
}
.popup_video .video-team video {
    border-radius: 30px;
    width: 100%;
}
.team-info .soc a  {
    margin: 0 5px !important;
    width: 37px;
    height: 37px;
}
.team-info .soc.flex-s {
    justify-content: left;
    min-height: 37px;
}
.team_more-video .search_but {
    background: #fff;
    color: var(--bg);
    margin-left: 0px;
    flex-shrink: 0;
    height: 40px;
    border: 1px solid var(--bg);
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-transform: none;
    margin-bottom: 15px;
    width: 189px;
}
.team_more-video .search_but:hover {
    color: #fff;
    margin-left: 0px;
    flex-shrink: 0;
    height: 40px;
    border: 1px solid #fff;
}
.team_more-video .over_but {
    border-radius: 20px;
    background-color: var(--bg);
}
.video-team p {
    margin-bottom: 15px;
}
@media (max-width: 980px) {
.popup_video .video-team {
    width: 65%;
    display: block;
}
}
@media (max-width: 767px) {

.team .team-item {
/*    width: calc(46.5% - 30px);*/
    margin: 0px;
    height: auto;
    flex-wrap: wrap;
    width: 279px;
}
.team_more-video .search_but {
    min-width: 180px;
    width: 180px;
    margin-bottom: 21px;
}
.team-info .team-name {
    font-size: 20px;
}
.popup_video .video-team {
    width: 80%;
    display: block;
}
.team-block.flex-b {
    flex-wrap: wrap;
}
.team-img {
    width: 100%;
}
.team-img img {
    width: 250px;
    margin: -246px auto 0px auto;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
}
.team-info {
    padding-bottom: 30px;
    position: relative;
    text-align: center;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.team_more-video {
        margin-top: 85px;
}
.team_more-video {
    margin-top: 83px;
    order: 1;
    width: 100%;
}
.team-info .soc.flex-s {
    justify-content: center;
    order: 2;
    width: 100%;
    min-height: auto;
}
.team-text {
    order: 3;
    margin: 0 auto;
}
.team-block {
    height: 104px;
    background: var(--bg);
    border-radius: 26px;
    margin: 440px auto 280px auto;
}
.new_slide .team-block:first-child {
        margin-top: 255px;
}
.team-info  .team-data {
         text-align: center;
    margin: 10px auto 10px auto;
    max-height: 90px;
    overflow: hidden;
        align-items: inherit;
}
.team-info .team-name {
    text-align: center;
    margin: 20px auto 10px auto;
}
.team_more-video .search_but:hover {
    background: #fff;
    color: var(--bg);
}

}
@media (max-width: 480px) {
    .team-item {
    width: 100%;
    margin: 20px 0;
}
.popup_video .video-team {
    width: 90%;
    display: block;
}

}

/* new team section end */

.vacat_item {
    padding: 18px 30px;
    background: var(--bg);
    color: #fff;
    border-radius: 40px;
    margin-bottom: 25px
}
.vacat_item span {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase
}
.vacat_item .link {
    font-size: 19px
}
.eks_item {
    text-align: center;
    font-size: 21px;
    font-style: italic;
    height: 72px;
    padding: 0 30px;
    line-height: 120%;
    display: flex;
    justify-content: center;
    align-items: center
}
.eks_item b {
    font-style: normal
}
.eks_aten {
    text-align: center;
    color: var(--bg);
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
}
.vacations_more {
    align-items: flex-start;
    margin-top: 50px
}
.vacations_more>div {
    width: 48%;
}
.vacations_more-text {
    font-size: 24px
}
.vacations_more-anketa p {
    font-size: 24px;
    color: var(--bg);
    text-transform: uppercase;
    font-weight: 800
}
.vacations_more-anketa .but {
    margin: 20px 0 0;
    font-size: 14px;
}
.zaglushka {
    position: relative;
    margin-top: -80px;
    display: flex;
    justify-content: center
}
.zaglushka img {
    margin: 0 auto;
    display: block;
}
.err {
    position: absolute;
    top: 40%;
    text-align: center;
    margin: 0 auto;
}
.err-title {
    color: var(--bg);
    font-size: 46px;
    font-weight: 800;
    text-transform: uppercase;
}
.err-text {
    color: var(--bg);
    font-size: 32px;
    text-transform: uppercase;
}



.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg);
/*    display: none;*/
    background: #fff;
}
.preloader img, .preloader svg {
    width: 470px;
}
.preloader .litera {
    animation-name: pulse;
    animation-delay: 0s;
    animation-duration: .3s;
    animation-timing-function: linear;
    opacity: 0;
    animation-fill-mode: forwards;
/*    animation-iteration-count: infinite;*/
}
.preloader #L {
    animation-delay: 0s;
}
.preloader #U {
    animation-delay: .2s
}
.preloader #K {
    animation-delay: .4s
}
.preloader #A {
    animation-delay: .6s
}
.preloader #S {
    animation-delay: .8s
}
.loaded .preloader {
    display: none;
}

@keyframes pulse {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes preloader {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes swipe {
    to {
        left: -25px;
    }
}

.popup_product-footer.flex-b {
    justify-content: space-evenly;
}
.flex_inputs p{
    display: flex;
}
.input_first{
    width: 95%;
}


.copyend{opacity: 0.5; cursor: default;}


.wpcf7-response-output{border: none!important; margin: 20px 0 0!important; text-align: center!important; font-style: italic!important; font-size: 20px!important}
.wpcf7-not-valid-tip{position: relative; top: -20px; font-style: italic!important; display: inline-block; padding-left: 40px;}
.popup_contact-form .wpcf7-not-valid-tip{color: #fff!important;}



#job{overflow: visible; overflow-y: scroll; pointer-events: all; min-height: 100vh; height: 100vh; padding-bottom: 40px;}
.form__job form{width: 900px!important; max-width: 100%!important;}

.form__job select{background: #fff url(../img/arr-down-gray.svg) 96% 50% no-repeat!important;}

.popup_menu.popup_job{overflow-y: scroll;}
.popup_contact-form.form__job{padding-top: 90px}
.popup_contact-form.form__job .input{font-size: 20px; font-weight: normal; color: #a3a3a3}

.popup_contact-form.form__job .input::-webkit-input-placeholder {color: #a3a3a3;}

.popup_contact-form.form__job .input:-ms-input-placeholder {color: #a3a3a3;}

.popup_contact-form.form__job .input::placeholder{color: #a3a3a3;}

.popup_menu-close{right: calc(50% - 580px)}

.popup_contact-form .polit br{display: none;}


@media screen and (max-width: 1024px){
    .wpcf7-not-valid-tip{font-size: 12px}
    .form__job form{width: 90%!important; max-width: 100%!important;}
}

@media screen and (max-width: 768px){
    .wpcf7-not-valid-tip{padding-left: 20px;}

    .slogan br{display: none;}

    .main-content-text p br{display: none;}

    .content-block p{text-align: left1;} /* ---------------------------  */


    .prod_content-text br,.all_contacts-text br{display: none;}
    .prod_content-text p{text-align: center!important;}

    .news_filter-tags{margin-top: 30px;}


    .prod_content-it{width: 240px!important; margin: 0 auto!important;}
    .prod_content-it:nth-child(2){margin: 20px auto!important}
    .prod_content-it p br{display: none;}

    .prod_content-it img.mrm{margin-right: 22px!important;}

    .eks_item{margin-bottom: 15px!important;}

    .popup_menu.popup_job{padding-bottom: 40px;}


    .container-factory{margin-bottom: 50px;}

    .prod_bottom{padding: 0 100px 100px 0;}

    /*.main_factory .main-content_prod .main-content-img{bottom: 3px!important;}*/
    .main_factory .main-content_prod .main-content-img{bottom: -2px!important;}

    .factory__heads{position: absolute; z-index: 2; background: url('../../../uploads/2023/02/lukas_factory_head.png') 50% 100% no-repeat; background-size: 400px; height: 2100px; width: 1943px; left: calc(50% - 1052px); bottom: 22px; border-radius: 50%;}
    .main_factory_bg{overflow: hidden; /*left: calc(50% - 1200px)!important*/}
    .container-factory_m .main-content-img{transform: none!important;}

    .factory__heads_in{height: 500px; position: absolute; bottom: -10px; left: calc(50% - 10px); background: url('../../../uploads/2023/02/l_heads-4.png') 50% 100% no-repeat; background-size: 90%;}


    .mcig{overflow: hidden; border-radius: 0 0 155px 155px; transform: rotate(2deg);}
    .mcig img{position: relative; top: 26px;}


    .main-content-ex .main-content-img{overflow: hidden; border-radius: 0 0 50% 50%; transform: none; width: 1070px; position: relative; left: calc(50% - 535px)!important;}
    .main-content-ex .main-content-img img{width: 400px; position: relative; transform: none;}
    .main_eks .main_curtain{left: calc(50% - 535px)!important}


    .radius__over{margin: 0 auto; overflow: hidden; width: 400px; border-radius: 0 0 46% 46%}

    .desk__img{display: none!important;}
    .mobile__img{display: block!important;}
}
