/*--------------------general--------------------*/
:root {
    --base-color: rgba(0, 128, 66, 1);
    --base-color-2: rgba(104, 189, 69, 1);
    --base-color-3: rgba(207, 231, 199, 1);
    --base-color-4: rgba(56, 142, 67, 1);
    --base-color-5: rgba(15, 77, 58, 1);

    --add-color: rgba(244, 188, 206, 1);
    --add-color-2: rgba(197, 119, 137, 1);
    --add-color-3: rgba(191, 98, 116, 1);
    --add-color-4: rgba(150, 67, 87, 1);
    --add-color-5: rgba(122, 42, 71, 1);

    --neutral-color: rgba(248, 242, 235, 1);
}
* {
    box-sizing: border-box;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0;
    line-height: 120%;
}

p {
    margin: 14px 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 18px;
}

body.lock {
    overflow: hidden
}

a, a:visited, a:hover {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    line-height: 0 !important;
}

ul, li {
    list-style-position: inside
}

button, button:focus, button:active {
    outline: unset;
    cursor: pointer;
    border: unset;
}

.container {
    width: 100%;
    max-width: 1595px;
    padding: 0 20px;
    margin: 0 auto;
}

.container-smaller {
    width: 100%;
    max-width: 1378px;
    margin: 0 auto;
}

section, .blog-page .info-blocks {
    margin-bottom: 80px !important;
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex;
    align-items: center;
}

.link-btn {
    border-bottom: 1px dashed var(--base-color);
    color: var(--base-color);
    background-color: transparent
}

.green-btn, .green-btn-link a, .form input[type="submit"], .green-btn-light {
    color: #fff !important;
    background: var(--base-color-5);
    border-radius: 44px;
    padding: 12px 34px;
    display: inline-block;
    border: 1px solid var(--base-color-5);
    cursor: pointer;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.green-btn:hover, form input[type="submit"]:hover, .green-btn-link a:hover {
    background: #fff !important;
    color: var(--base-color-5) !important;
}

.green-btn-light{
    background: var(--base-color);
    border: 1px solid var(--base-color);
}

.green-btn-light:hover{
    background: #fff !important;
    color: var(--base-color) !important;
}

.white-btn {
    background: #fff;
    color: var(--base-color) !important;
    border-radius: 44px;
    padding: 12px 34px;
    display: inline-block;
    cursor: pointer;
}

.white-btn:hover {
    background: var(--base-color);
    color: #fff !important;
}

.border-green-btn {
    background: #fff;
    color: var(--base-color) !important;
    border-radius: 44px;
    padding: 12px 34px;
    display: inline-flex;
    cursor: pointer;
    border: 1px solid var(--base-color);
    align-items: center;
    justify-content: center;
}

.border-green-btn:hover, .border-green-btn.current {
    background: var(--base-color) !important;
    color: #fff !important;
}

.slider-arr {
    background: #FFFFFF;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.22);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
}

.slider-arr img {
    width: 20%;
}

.slider-arr:hover {
    border-color: var(--base-color-4);
}

.slider-arr__prev img {
    transform: rotate(180deg) translateX(2px);
}

.slider-arr__next img {
    transform: translateX(1px);
}

.main__title, h1 {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px;
}

.social img {
    width: 100%;
}

.social:hover {
    opacity: 0.7
}

.t-orange {
    color: #AC9830;
}

.main-about, .main-why, .main-where, .main-news, .about-why {
    margin-bottom: 0 !important;
}

main {
    padding-top: 155px
}

@media screen and (max-width: 1250px) {
    .container {
        max-width: 1100px;
    }
}

@media screen and (max-width: 986px) {
    .main__title, h1 {
        font-size: 34px;
    }

    section, .bg-light-blue .info-blocks, .blog-page .info-blocks {
        margin-bottom: 60px !important;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .slider-arr {
        width: 42px;
        height: 42px;
    }

    .main__title, h1 {
        font-size: 32px;
    }

    .green-btn, .form input[type="submit"], .green-btn-link a {
        padding: 10px 26px;
    }

    .border-green-btn {
        padding: 9px 27px;
    }
}

@media screen and (max-width: 600px) {
    .main__title, h1 {
        font-size: 26px;
    }

    section, .bg-light-blue .info-blocks, .blog-page .info-blocks {
        margin-bottom: 40px !important;
    }
}

/*btn-up*/
.btn-up {
    position: fixed;
    right: 20px;
    bottom: 40px;
    background: #E0CA58;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.btn-up img {
    transform: rotate(-90deg);
    width: 25%;
}

.btn-up.active {
    display: flex;
}

.btn-up:hover {
    background: #AC9830
}

/*float-banner*/
.float-banner {
    padding: 13px 0;
    background: var(--base-color-2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
}

.float-banner .container {
    text-align: center;
    position: relative;
    padding-right: 140px;
    color: #FFFFFF;
}

.float-banner .container > a {
    display: inline-flex;
    align-items: center;
}

.float-banner .d-flex {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.float-banner .d-flex a {
    width: 35px;
    margin-left: 10px;
    line-height: 0;
}

@media screen and (max-width: 768px) {
    .float-banner .d-flex {
        display: none;
    }

    .float-banner .container {
        padding-right: 0
    }

}

/*breadcrumbs*/
.breadcrumbs {
    padding: 30px 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
}

.breadcrumbs a {
    color: var(--base-color-4);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/*header*/
.header {
    border-image-source: linear-gradient(90deg, #AC9830 0%, #F2DE9F 52.6%, #AC9830 100%);
    border-image-slice: 4;
    border-bottom: 4px solid;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
}

.header > .container {
    display: flex;
    align-items: center;
}

.header__logo {
    max-width: 280px;
    margin-right: auto;
}

.header__content > .container {
    display: flex;
    align-items: center;
    padding: 0;
}

.header__menu ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.header__menu li {
    margin-right: 25px;
}

.header__menu li:not(.green-btn-link) {
    padding: 40px 0;
}

.header__menu li a {
    font-size: 18px;
    font-weight: 700;
}

.header__menu a:hover {
    color: var(--base-color-4);
}

.header__menu .sub-menu {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0px 9px 14px rgba(0, 0, 0, 0.1);
}

.header__menu .sub-menu a {
    font-weight: 500
}

@media screen and (max-width: 1400px) {
    .header__menu li {
        margin-right: 20px;
    }
}

@media screen and (min-width: 986px) {
    .header__menu li:hover .sub-menu {
        display: block;
    }
}

.header__menu li.menu-products {
    position: unset;
}

.header__menu li.menu-products > a {
    display: flex;
    align-items: center;
}

.header__menu li.menu-products > a:after {
    display: block;
    content: '';
    width: 14px;
    height: 8px;
    background: url(/wp-content/themes/baunti/img/arr-menu.svg) no-repeat center/contain;
    margin-left: 10px;
}

.category-menu.sub-menu {
    z-index: 1000;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    padding: 30px 0;
    border-image-source: linear-gradient(90deg, #AC9830 0%, #F2DE9F 52.6%, #AC9830 100%);
    border-image-slice: 4;
    border-top: 4px solid;
}

.category-menu.sub-menu .container {
    display: flex;
    position: relative;
}

.header__menu .category-menu__wrap {
    padding: 20px 0;
    width: 45%;
}

.header__menu .category-menu__list {
    column-count: 3;
}

.category-menu__img {
    opacity: 0;
}

.category-menu.sub-menu .category-menu__item,
.custom-menu ul li {
    margin-bottom: 25px;
    display: block;
    padding: 0 !important;
}

.custom-menu ul {
    display: block;
    padding-top: 20px;
    font-size: 16px;
}

.custom-menu {
    padding: 20px 0;
    margin-left: 20px;
}

.custom-menu .title,
.header__menu .category-menu__wrap .title {
    color: var(--base-color-4);
    font-weight: 700;
    margin-bottom: 22px;
}

.menu-banner {
    max-width: 420px;
    padding: 45px 20px;
    background: var(--base-color-3);
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-left: auto;
    align-self: center;
}

.menu-banner .title {
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    color: #000c;
    margin-bottom: 20px;
}

.menu-banner .subtitle {
    text-align: center;
    color: #000c;
    margin-bottom: auto;
}

.menu-banner .white-btn {
    margin-top: 20px;
}

.header__menu-burger {
    display: none;
}

@media screen and (max-width: 1400px) {
    .header__logo {
        max-width: 200px;
    }

    .header__menu li:not(.green-btn-link) {
        padding: 30px 0;
    }
}

@media screen and (max-width: 1250px) {
    .header__menu-burger {
        border-radius: 50%;
        height: 48px;
        position: relative;
        width: 48px;
        background: var(--base-color-2);
        flex-shrink: 0;
        transform: translateX(9px);
        display: block;
        cursor: pointer;
        margin: 10px 0;
    }

    .header__menu-burger span {
        width: 45%;
        height: 2px;
        background: #fff;
        display: block;
        position: absolute;
        top: 50%;
        transition: .3s;
        transform: translate(50%, -50%);
        right: 50%;
    }

    .header__menu-burger::after, .header__menu-burger::before {
        width: 45%;
        height: 2px;
        background: #fff;
        display: block;
        content: "";
        position: absolute;
        transition: .3s;
        transform: translateX(50%);
        right: 50%;
    }

    .header__menu-burger::before {
        top: 17px;
    }

    .header__menu-burger::after {
        bottom: 17px;
    }

    .header.active .header__menu-burger::after {
        transform: translateX(50%) rotate(-45deg);
        bottom: 23px;
    }

    .header.active .header__menu-burger::before {
        transform: translateX(50%) rotate(45deg);
        top: 23px;
    }

    .header.active .header__menu-burger span {
        transform: scale(0);
    }

    .header__content {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 64px;
        background: #fff;
        left: 0;
        z-index: 10000;
        padding: 25px 10px 120px 10px;
        transform: translateX(-100%);
        transition: all 0.3s ease;
        overflow: scroll;
    }

    .header__content > .container {
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 0 20px;
    }

    .header.active .header__content {
        transform: translateX(0);
    }

    .header__menu ul {
        display: block;
    }

    .header__menu li:not(.green-btn-link) {
        padding: 15px 0;
    }

    .header__menu .green-btn-link {
        margin-top: 15px;
    }

    #searchform {
        margin-bottom: 15px;
    }

    .header__menu .sub-menu {
        position: unset;
        box-shadow: unset;
    }

    .category-menu.sub-menu {
        transform: unset;
        border-image-source: unset;
        border-image-slice: unset;
        border-top: unset;
        padding: 30px 0 0 0;
    }

    .category-menu.sub-menu .container {
        display: block;
    }

    .header__menu .category-menu__list {
        column-count: unset;
    }

    .header__menu .category-menu__wrap {
        padding: unset;
        width: unset;
    }

    .menu-banner {
        display: none;
    }

    .header__menu .sub-menu a {
        color: rgba(0, 0, 0, 0.7);
    }

    .header__menu .sub-menu a:hover {
        color: var(--base-color-4);
    }

    .custom-menu {
        margin-left: 0
    }
}

@media screen and (max-width: 986px) {
    .header__menu li.menu-products > a:after {
        display: none;
    }

    .header__menu .menu-products svg {
        transform: rotate(-90deg) translateX(-4px);
        margin-left: 20px;
        width: 9px !important;
        margin-top: -3px;
        display: inline-block;
    }

    .header__menu li:not(.green-btn-lonk) {
        display: flex;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .header__logo {
        max-width: 140px;
    }

    .header__menu-burger {
        width: 34px;
        height: 34px;
    }

    .header__menu-burger::before {
        top: 20px;
    }

    .header__menu-burger::after {
        bottom: 20px;
    }

    .header.active .header__menu-burger::before {
        top: 16px;
    }

    .header.active .header__menu-burger::after {
        bottom: 16px;
    }
}

/*searchform*/
#searchform {
    position: relative;
    width: 300px;
}

#searchform input {
    background: var(--base-color-3);
    border-radius: 30px;
    padding: 9px 40px 9px 20px;
    width: 100%;
    border: unset;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    height: 44px;
}

#searchform input::placeholder {
    font-size: 14px;
}

#searchform input:focus {
    outline: unset;
    border: unset;
}

#searchform button {
    position: absolute;
    border: unset;
    background: unset;
    width: 24px;
    height: 24px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1400px) {
    #searchform {
        width: 250px;
    }
}

@media screen and (max-width: 1250px) {
    #searchform {
        max-width: 400px;
        width: 100%;
    }
}

/*main-page*/
.main-slider__item {
    min-height: 590px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.main-slider__item .container {
    padding: 0 5% 85px 5%;
}

.main-slider .main__title {
    width: 40%;
}

.main-slider__subtitle {
    margin-bottom: 40px;
    width: 58%;
}

.main-slider-block {
    position: relative;
}

.main-slider-block .slider-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.main-slider-block .slider-arr__prev {
    left: 4%;
}

.main-slider-block .slider-arr__next {
    right: 4%;
}

.main-slider.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
    position: absolute;
    width: 100%;
    max-width: 1595px;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    bottom: 80px;
    padding: 0 5% 0 5%;
}

.main-slider.owl-theme .owl-dots .owl-dot span {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: #cacdd2 !important;
    margin: 0 15px 0 0 !important;
}

.main-slider.owl-theme .owl-dots .owl-dot.active span,
.main-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--base-color-4) !important;
}

@media screen and (max-width: 1700px) {
    .main-slider-block .slider-arr__next {
        right: 0.5%;
    }

    .main-slider-block .slider-arr__prev {
        left: 0.5%;
    }
}

@media screen and (max-width: 1250px) {
    .main-slider .main__title,
    .main-slider__subtitle {
        width: 80%;
    }

    .main-slider.owl-theme .owl-nav.disabled + .owl-dots {
        max-width: 980px;
    }
}

@media screen and (max-width: 986px) {
    .main-slider-block .slider-arr__next {
        right: 20px;
    }

    .main-slider-block .slider-arr__prev {
        left: 20px;
    }

    .main-slider-block .slider-arr {
        top: unset;
        bottom: 0;
        transform: translate(0, -100%);
    }

    .main-slider__item .container {
        padding: 55px 20px 190px 20px;
    }

    .main-slider.owl-theme .owl-nav.disabled + .owl-dots {
        bottom: 135px;
        padding: 0 20px;
    }

    .main-slider__item {
        min-height: 430px;
    }
}

@media screen and (max-width: 768px) {
    .main-slider.owl-theme .owl-dots .owl-dot span {
        width: 24px;
    }

    .main-slider.owl-theme .owl-nav.disabled + .owl-dots {
        bottom: 125px;
    }

    .main-slider .main__title, .main-slider__subtitle {
        width: 100%;
    }
}

/*main-category*/
.main-category {
    margin-bottom: 0 !important;
}

.main-category .container {
    display: flex;
    flex-wrap: wrap;
}

.main-category .item {
    text-align: center;
    width: calc(100% / 5);
    margin-bottom: 40px;
    padding-top: 95px;
    position: relative;
}

.main-category .item img {
    width: 90px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    transition: width 0.3s ease;
    top: 0;
}

.main-category .item:hover img {
    width: 95px;
}

.main-category .item .category {
    max-width: 170px;
    margin: 0 auto 0 auto;
}

@media screen and (max-width: 986px) {
    .main-category .item {
        width: calc(100% / 4);
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .main-category .item {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 600px) {
    .main-category .item {
        width: calc(100% / 2);
        margin-bottom: 30px;
    }
}

/*main-fos*/
.main-fos .container-bigger {
    padding: 55px 0;
    background: var(--base-color-3);
}

.main-fos .main__title {
    width: 60%;
}

.main-fos__subtitle {
    width: 60%;
    margin-bottom: 35px;
}

.main-fos .green-btn {
    width: 200px;
    text-align: center;
    margin-right: 25px;
}

.main-fos .social {
    width: 36px;
    margin-right: 25px;
    flex-shrink: 0;
}

/*main-about*/
.main-about {
    background: var(--base-color-3);
    overflow: hidden;
}

.info-blocks .main-about{
    background: #F3F9F6;
}

.main-about .container {
    display: flex;
    position: relative;
    min-height: 575px;
}

.main-about__text {
    width: 53%;
    margin-left: auto;
    padding: 50px 0 50px 6.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-about img {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    max-width: unset;
    left: 47%;
    transform: translateX(-100%);
}

.main-about__subtitle {
    margin-bottom: 70px;
}

.main-about__subtitle strong{
    display: block;
    color: var(--base-color-4);
}

.big-br{
    margin-top: 40px;
}

.main-about__mission {
    font-size: 26px;
    margin-bottom: 40px;
    color: var(--base-color-4);
}

.main-about__btn{
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}
.main-about__btn a{
    width: 100%;
    max-width: 300px;
    padding-left: 15px;
    padding-right: 15px;
}

.main-about__under-mission {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.info-blocks .main-about__text {
    width: 50%;
}

.info-blocks .main-about:nth-child(2n) .main-about__text {
    margin-left: unset;
    padding: 50px 6.5% 50px 0;
}

.info-blocks .main-about img {
    left: 50%;
}

.info-blocks .main-about:nth-child(2n) img {
    right: 50%;
    left: unset;
    transform: translateX(100%);
}

.about .main-about .container {
    min-height: 740px
}

@media screen and (max-width: 1250px) {
    /*.main-about img {left: 75%;}*/
    .main-about__text {
        z-index: 1;
        background: var(--base-color-3);
    }

    .info-blocks .main-about img {
        left: 75%;
    }

    .info-blocks .main-about:nth-child(2n) img {
        right: 75%;
    }
}

@media screen and (max-width: 986px) {
    .main-about__subtitle {
        margin-bottom: 60px;
    }

    .main-about__mission {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .main-about img {
        left: 75%;
    }
}

@media screen and (max-width: 768px) {
    .main-about .container {
        flex-direction: column;
        min-height: unset;
    }

    .about .main-about .container {
        min-height: unset
    }

    .main-about img {
        min-height: unset;
        position: unset;
        top: unset;
        left: unset;
        transform: unset !important;
        margin: 0 -20px;
        height: auto;
        width: calc(100% + 40px);
        right: unset !important;
    }

    .main-about__text {
        width: 100%;
        margin-left: unset;
        padding: 30px 0 50px 0;
        display: block;
    }

    .main-about__subtitle {
        margin-bottom: 30px;
    }

    .main-about__mission {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .main-about__btn{
        justify-content: flex-start;
    }

    .info-blocks .main-about__text {
        width: 100%;
    }
}

/*main-why*/
.main-why, .about-why {
    background: var(--neutral-color);
    padding: 90px 0 40px 0;
}

.main-why .container {
    display: flex;
}

.main-why__left {
    width: 47%;
    padding: 0 8% 0 0;
}

.main-why__left a {
    margin-top: 35px;
    color: #fff;
}

.main-why__right {
    width: 53%;
    grid-gap: 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 0 0 6.5%;
}

.main-why__item .main-why__item img {
    width: 90px;
}

.main-why__item .title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    max-width: 290px;
    text-transform: uppercase;
    margin-top: 8px;
    line-height: 160%
}

.main-why__item .descript {
    font-size: 16px;
    font-weight: 400;
    max-width: 255px;
    line-height: 160%
}

@media screen and (max-width: 1250px) {
    .main-why__item {
        width: 100%;
    }

    .main-why__item .title,
    .main-why__item .descript {
        max-width: unset
    }

    .main-why__right {
        grid-gap: 35px 20px;
    }
}

@media screen and (max-width: 768px) {
    .main-why, .about-why {
        padding: 45px 0;
    }

    .main-why .container {
        display: block
    }

    .main-why__left, .main-why__right {
        width: 100%;
        padding: 0;
    }

    .main-why__left {
        margin-bottom: 25px;
    }

    .main-why__item {
        text-align: center;
        margin-bottom: 30px;
    }

    .main-why__left a {
        margin: 30px auto 0 auto;
        display: block;
        text-align: center;
        max-width: 400px;
    }

    .main-why__item .title {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 600px) {
    .main-why__right {
        display: block;
    }
}

/*banner-cat*/
.banner-cat {
    overflow: hidden;
    position: relative;
}

.banner-cat:after {
    content: "";
    display: block;
    position: absolute;
    width: 53%;
    height: 100%;
    right: 0;
    top: 0;
    background-image: url(/wp-content/uploads/2023/04/leafs.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.banner-cat .container {
    display: flex;
    position: relative;
    color: #fff;
    min-height: 590px;
}

.banner-cat .container > img {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    max-width: unset;
    left: 47%;
    transform: translateX(-100%);
}

.banner-cat__text {
    width: 53%;
    margin-left: auto;
    padding: 50px 0 50px 6.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-cat .white-btn, .banner-cat .green-btn  {
    margin-top: 40px;
    width: fit-content;
}

.banner-cat__text > * {
    max-width: 450px;
    z-index: 1;
}

.about .banner-cat__text {
    width: 50%;
}

.about .banner-cat .container > img {
    left: 50%;
}

.about .banner-cat:after {
    width: 50%;
}

@media screen and (max-width: 1400px) {
    .banner-cat:after {
        content: unset;
    }
}

@media screen and (max-width: 1250px) {
    .banner-cat .container > img {
        left: 75%;
    }

    .banner-cat__text {
        z-index: 1;
    }

    .about .banner-cat .container > img {
        left: 75%;
    }
}

@media screen and (max-width: 768px) {
    .banner-cat .container {
        display: block;
    }

    .banner-cat .container > img {
        min-height: unset;
        position: unset;
        top: unset;
        left: unset;
        transform: unset;
        margin: 0 -20px;
        height: auto;
        width: calc(100% + 40px);
    }

    .banner-cat__text {
        width: 100%;
        margin-left: unset;
        padding: 60px 0;
        display: block;
        position: relative;
    }

    .banner-cat__text:after {
        content: "";
        display: block;
        position: absolute;
        width: calc(100% + 40px);
        height: 100%;
        right: -20px;
        top: -5px;
        background-image: url(/wp-content/uploads/2023/04/leafs.png);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: cover;
    }

    .banner-cat__text > * {
        z-index: 1;
        position: relative;
    }

    .about .banner-cat__text {
        width: 100%;
    }
}

/*main-products*/
.main-products--front-page .products__item .img {
    padding-bottom: calc(100% * (210 / 190));
}

.main-products h2, .more-blog h2, .news-list-slider h2 {
    text-align: center;
    margin-bottom: 50px;
}


.main-products__wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}

.products__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.products__item .img {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: calc(100% * (280 / 190));
    width: 100%;
}

.products__item .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto !important;
    height: 80%;
    transition: all 0.3s ease;
    max-width: unset;
}

.products__item .img:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background: url(/wp-content/themes/baunti/img/product-arr.svg) no-repeat center/35%;
    transition: all 0.3s ease
}

.products__item:hover .img img {
    transform: translate(-50%, -55%);
}

.products__item:hover .img:after {
    opacity: 1;
    background: url(/wp-content/themes/baunti/img/product-arr.svg) no-repeat center/40%;
}

.products__item .category {
    font-size: 16px;
    color: var(--base-color-4);
}

.category-all__btn {
    position: relative;
}

.category-all__btn .label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--base-color-4);
    text-align: center;
    border-bottom: 1px dotted var(--base-color-4);
    cursor: pointer;
    position: relative;
    z-index: 6;
}

.category-all {
    position: absolute;
    display: none;
    width: 200%;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 32px 16px 8px;
    border-radius: 16px;
    top: -8px;
    border: 1px solid #e6e4df;
    background: #fff;
    z-index: 5;
}

@media screen and (min-width: 766px) {
    .category-all__btn:hover .category-all {
        display: block;
    }
}

.products__item .title {
    margin-top: 10px;
}

.main-products__nav {
    display: none;
}

@media screen and (max-width: 986px) {
    .main-products__wrap {
        display: block;
    }

    .main-products {
        overflow: hidden;
        padding-bottom: 10px;
    }

    .main-products__wrap.owl-carousel .owl-stage-outer {
        overflow: unset !important;
    }

    .main-products__wrap .products__item .img {
        width: 60%;
    }

    .products__item .img {
        padding-bottom: calc(60% * (250 / 190));
    }

    .main-products h2, .more-blog h2, .news-list-slider h2 {
        margin-bottom: 30px;
    }

    .main-products__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 35px;
    }
}

@media screen and (max-width: 768px) {
    .products__item .category {
        font-size: 14px;
    }
}

/*main-where*/
.main-where {
    background: var(--base-color-3) url(/wp-content/uploads/2023/03/frame-60.png) no-repeat center/cover;
}

.main-where .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    padding-top: 55px;
    padding-bottom: 55px;
}

.main-where .green-btn {
    padding: 17px 55px;
}

.main-where__text > div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.main-where__text img {
    width: 32px;
    margin-right: 24px;
    flex-shrink: 0;
}

.main-where .main__title {
    margin-bottom: 0;
}

.main-where__subtitle {
    margin-left: 56px;
}

@media screen and (max-width: 1400px) {
    .main-where .container {
        max-width: 980px;
        display: block;
    }

    .main-where .green-btn {
        margin-top: 30px;
        margin-left: 55px;
    }
}

@media screen and (max-width: 768px) {
    .main-where .green-btn {
        padding: 14px 44px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 600px) {
    .main-where__text {
        flex-direction: column;
    }

    .main-where__text img {
        width: 32px;
    }

    .main-where__subtitle {
        margin-left: 0;
    }

    .main-where .green-btn {
        margin-left: 0
    }
}

/*main-news*/
.main-news {
    background: -webkit-linear-gradient(left, #fff 0%, #fff 47%, var(--base-color-2) 47%, var(--base-color-2) 0%);
}

.main-news .container {
    display: flex;
}

.main-news__left {
    width: 47%;
    padding-right: 90px;
}

.main-news__left:before {
    /*content: '';*/
    display: block;
    background: var(--base-color-2);
    width: 4px;
    height: 200px;
    margin-bottom: 40px;
    margin-left: 22%;
}

.main-news__right {
    width: 53%;
    padding: 90px 0 80px 90px;
}

.main-news__title {
    text-align: center;
    margin-bottom: 35px;
}

.news__subtitle, .main-news__item .excerpt {
    line-height: 150%;
}

.main-news__item {
    display: flex;
    background: #fff;
    margin-bottom: 20px;
    min-height: 350px;
}

.main-news__item .img {
    overflow: hidden;
    position: relative;
    width: 47%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-news__item .info {
    width: 53%;
    padding: 65px 30px;
}

.main-news__item .title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}

.more {
    display: flex;
    align-items: center;
    margin-top: 25px;
    text-transform: uppercase;
    color: var(--base-color-4) !important;
    font-size: 16px;
    font-weight: 600;
}

.more img {
    margin-left: 15px;
    width: 9px;
    transition: all 0.3s ease;
}

.more:hover img {
    margin-left: 20px
}

.main-news__cat {
    margin-top: 70px;
    display: grid;
    grid-template-columns: max-content max-content;
    grid-gap: 10px;
    max-width: 390px;
    width: 100%;
}

.main-news__cat .cat {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--base-color-4);
    font-weight: 600;
    border: 2px solid var(--base-color-4);
    border-radius: 30px;
    background: transparent;
    padding: 10px 15px;
    line-height: 1;
}
.main-news__cat .cat.cat--main {
    background: var(--base-color-3);
    border-color: var(--base-color-3);
}
.main-news__cat .cat.cat--empty {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.main-news__cat .cat svg {
    margin-left: 5px;
    width: 20px;
    transition: all 0.3s ease;
}

.main-news__cat .cat:hover svg path{
    stroke: #fff;
}
.main-news__cat .cat:hover{
    color:  #fff;
    background: var(--base-color-5);
    border-color: var(--base-color-5);
}

@media screen and (max-width: 1250px) {
    .main-news {
        overflow: hidden;
    }

    .main-news__left:before {
        height: 100px;
        margin-left: 4%;
    }

    .main-news .container {
        display: block;
    }

    .main-news__left, .main-news__right {
        width: 100%;
    }

    .main-news__left {
        padding: 0 0 60px 0;
    }

    .main-news {
        background: unset;
    }

    .main-news__right {
        position: relative;
        padding: 60px 0 50px 0;
    }

    .main-news__right:after {
        content: '';
        display: block;
        width: 1000%;
        height: 1000%;
        position: absolute;
        top: 0;
        left: 50%;
        background: var(--base-color-2);
        transform: translateX(-50%);
    }

    .main-news__item {
        z-index: 1;
        position: relative;
    }
}

@media screen and (max-width: 986px) {
    .main-news__left:before {
        height: 65px;
        margin-left: 25px;
        margin-bottom: 20px;
    }

    .main-news__cat {
        margin-top: 40px;
    }

    .main-news__cat .cat {
    }

}

@media screen and (max-width: 768px) {
    .main-news__item .title {
        font-size: 20px;
    }

    .main-news__left:before {
        height: 40px;
    }

    .main-news__left {
        padding: 0 0 30px 0;
    }
}

@media screen and (max-width: 600px) {
    .main-news__item {
        flex-direction: column-reverse;
    }

    .main-news__item .info {
        width: 100%;
        padding: 25px 20px;
    }

    .main-news__item .img {
        height: 0;
        width: 100%;
        padding-bottom: calc(100% * (180 / 280));
    }

    .main-news__item .title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .more {
        margin-top: 20px;
        font-size: 14px;
    }

    .main-news__right {
        padding: 40px 0 30px 0;
    }

    .more img {
        margin-left: 10px;
        width: 7px;
    }

    .main-news__cat{
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .main-news__cat .cat {
        padding: 5px 15px;
    }
    .main-news__cat .cat.cat--empty{
        display: none;
    }
}

/*quality*/
.quality {
    background: var(--base-color-4);
    border-image-source: linear-gradient(90deg, #AC9830 0%, #F2DE9F 52.6%, #AC9830 100%);
    padding-bottom: 70px;
    padding-top: 70px;
    color: #fff;
    text-align: center;
    border-image-slice: 4;
    border-bottom: 4px solid;
}

.map-page .quality {
    margin-bottom: 0 !important;
}

@media screen and (max-width: 768px) {
    .quality {
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .quality img {
        max-width: 70%;
    }
}

/*banner-contact*/
.banner-contact .container {
    background: var(--base-color-3) url(/wp-content/uploads/2023/04/frame-46.png) no-repeat right center/contain;
}

.banner-contact .text {
    max-width: 700px;
    padding: 60px 0;
}

.banner-contact .d-flex {
    margin-top: 30px;
}

.banner-contact .d-flex .social {
    margin-left: 25px;
    width: 49px;
    height: 49px;
    flex-shrink: 0;
}

@media screen and (max-width: 1250px) {
    .banner-contact .container {
        max-width: 1200px;
    }
}

@media screen and (max-width: 986px) {
    .banner-contact .text {
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .banner-contact .container {
        background: var(--base-color-3) url(/wp-content/uploads/2023/04/frame-46.png) no-repeat top right/auto 280px;
    }

    .banner-contact .text {
        padding: 310px 0 60px 0;
    }

    .banner-contact .d-flex .social {
        margin-left: 13px;
        width: 40px;
        height: 40px;
    }
}

/*follow*/
.follow .main__title {
    text-align: center;
    margin-bottom: 50px;
}

.follow__wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
}

.follow__wrap a img {
    width: 100%;
}

@media screen and (max-width: 986px) {
    .follow .main__title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 786px) {
    .follow__wrap {
        grid-template-columns: repeat(12, 1fr);
    }

    .follow__wrap a {
        grid-column: span 4;
    }

    .follow__wrap a:first-child, .follow__wrap a:nth-child(2) {
        grid-column: span 6;
    }
}

@media screen and (max-width: 600px) {
    .follow__wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 12px;
    }

    .follow__wrap a, .follow__wrap a:nth-child(2) {
        grid-column: span 1;
    }

    .follow__wrap a:first-child {
        grid-column: span 2;
    }
}

/*subscribe*/
.subscribe {
    padding: 90px 0;
    background: var(--base-color-3);
    margin-bottom: 0 !important;
}

.subscribe .container {
    display: flex;
    justify-content: space-between;
}

.subscribe__left {
    max-width: 800px;
    margin-right: 20px;
}

.subscribe form {
    max-width: 500px;
    text-align: center;
}

.subscribe .form input:not(input[type="submit"]) {
    background: #fff;
}

.subscribe .form input[type="submit"] {
    width: 100%;
    margin-bottom: 25px;
    margin-right: 0;
}

@media screen and (max-width: 1250px) {
    .subscribe__left {
        max-width: 500px;
        margin-right: 40px
    }
}

@media screen and (max-width: 986px) {
    .subscribe .container {
        display: block;
    }

    .subscribe__left {
        max-width: unset;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .subscribe .form input[type="submit"] {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 786px) {
    .subscribe {
        padding: 40px 0
    }
}

/*footer*/
.footer {
    margin-top: auto;
    background: var(--base-color-5);
    padding-top: 45px;
    color: #fff;
}

.footer a {
    color: #fff
}

.footer__logo {
    display: block;
    margin: 0 auto 60px auto;
    max-width: 320px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 35px;
}

.footer__menu {
    padding-left: 0;
    column-count: 4;
}

.footer__menu li {
    margin-bottom: 15px;
    list-style: none;
    margin-right: 25px;
}

.footer__contacts {
    text-align: right;
    max-width: 270px;
}

.footer__menu li:hover {
    opacity: 0.6
}

.footer__contacts .d-flex {
    justify-content: flex-end;
}

.footer__contacts .social {
    margin-right: 0;
    margin-left: 10px;
    width: 36px;
    height: 36px;
}

.hotline, .footer__email, .footer__address {
    margin-bottom: 23px;
    display: block;
}

.footer__email:hover {
    text-decoration: underline
}

.hotline__text {
    font-weight: 500;
    font-size: 14px;
    color: #7C8A83;
    margin-bottom: 5px;
}

.hotline a {
    font-size: 24px;
    font-weight: 500;
}

.hotline a:hover {
    opacity: 0.6
}

.footer__warn {
    font-weight: 700;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.footer__bottom {
    padding: 27px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(193, 219, 206, 0.2);
    font-size: 14px;
}

.footer__copy {
    padding-right: 70px;
    border-right: 2px solid #FFFFFF;
    margin-right: 70px;
}

.footer__bottom a:hover {
    text-decoration: underline
}

.footer__rights {
    font-size: 11px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (max-width: 1250px) {
    .footer__menu {
        column-count: 2;
    }

    .footer__warn {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .footer__content {
        display: block;
    }

    .footer__menu {
        margin-bottom: 50px;
    }

    .footer__contacts {
        text-align: left;
    }

    .footer__contacts .d-flex {
        justify-content: flex-start;
    }

    .footer__contacts .social {
        margin: 0 10px 0 0;
    }

    .hotline a {
        font-size: 22px;
    }

    .footer__warn {
        font-size: 24px;
    }

    .footer__bottom {
        display: block;
        padding: 20px 0;
        font-size: 12px;
        text-align: center
    }

    .footer__copy {
        padding-right: unset;
        border-right: unset;
        margin-right: unset;
        margin-bottom: 5px;
    }

    .footer__logo {
        margin: 0 0 30px 0;
        max-width: 180px;
    }

    .footer__rights {
        font-size: 9px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 400px) {
    .footer__menu {
        column-count: unset;
    }

    .hotline a {
        font-size: 20px;
    }
}

/*----------------products archive page----------------*/
.collections__wrap {
    display: flex;
}

.products__wrap {
    width: calc(100% - 250px - 60px);
}

.products__wrap .archive-ajax {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 60px 35px;
}

.filter {
    width: 250px;
    flex-shrink: 0;
    margin-right: 60px;
    border-top: 1px solid var(--base-color-3);
}

.filter > .title, .filter-btn, .filter__send, .filter__reset {
    display: none;
}

.filter__item {
    border-bottom: 1px solid var(--base-color-3);
}

.filter__item .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-weight: 500;
    font-size: 16px;
    color: var(--base-color-4);
    cursor: pointer;
}

.filter__item .title:after {
    content: '+';
    display: block;
    font-size: 20px;
}

.item__cat {
    /*display: none;*/
    padding: 10px 0 15px 0;
}

.item__cat li {
    list-style: none;
    font-weight: 400;
    font-size: 14px;
    position: relative;
}

.item__cat li input[type=checkbox] {
    opacity: 0;
    position: absolute;
    left: -25px;
    top: 0;
}

.item__cat li label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.item__cat label:before {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    border: 1px solid #C4DBBC;
    border-radius: 4px;
    margin-right: 10px;
    content: url(/wp-content/themes/baunti/img/check.svg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item__cat label.checked:before {
    background: var(--base-color-4);
    opacity: 1;
}

.collections-descript {
    overflow-y: hidden;
    background: var(--base-color-4);
    color: #fff;
    position: relative;
    margin-bottom: 0 !important;
}

.collections-descript .container {
    display: flex;
    min-height: 350px;
}

.collections-descript .img {
    position: absolute;
    top: 50%;
    height: 100%;
    width: 50%;
    max-width: unset;
    left: 50%;
    transform: translate(-100%, -50%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.collections-descript .info {
    width: 50%;
    margin-left: auto;
    padding: 90px 0 90px 4%;
    margin-top: auto;
    margin-bottom: auto;
}

.collections h1 {
    margin-bottom: 60px;
}

.collections__wrap .products__item {
    font-size: 18px !important;
}

.catalog-paginate {
    margin-top: 100px;
    text-align: center;
}

@media screen and (max-width: 1400px) {
    .products__wrap .archive-ajax {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1250px) {
    .products__wrap .archive-ajax {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 40px 20px;
    }

    .products__wrap {
        width: calc(100% - 220px - 30px);
    }

    .filter {
        width: 220px;
        margin-right: 30px;
    }
    .collections-descript .container {
        min-height: 300px;
    }
}

@media screen and (max-width: 986px) {
    .products__wrap .archive-ajax {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .collections h1 {
        margin-bottom: 30px
    }

    .collections-descript .container {
        display: block;
        min-height: auto;
    }

    .collections-descript .img {
        position: unset;
        top: unset;
        height: 0;
        width: calc(100% + 40px);
        left: unset;
        transform: unset;
        padding-bottom: calc(100% * (130 / 230));
        margin: 0 -20px;
    }

    .collections-descript .info {
        width: 100%;
        margin-left: unset;
        padding: 30px 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .filter {
        margin-right: unset;
        width: 100%;
        background: #fff;
        position: fixed;
        height: 100%;
        top: 64px;
        left: 0;
        z-index: 10000;
        padding: 25px 10px 120px 10px;
        transform: translateX(-100%);
        transition: all 0.3s ease;
        overflow: scroll;
    }

    .filter.show {
        transform: translateX(0);
    }

    .filter > .title {
        display: block;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .item__cat {
        display: none;
    }

    .products__wrap {
        width: 100%;
    }

    .collections__wrap {
        display: block
    }

    .filter-btn {
        width: fit-content;
        text-transform: uppercase;
        font-size: 14px;
        height: 34px;
        background: var(--base-color-4);
        border-radius: 35px;
        padding: 0 30px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        color: #fff;
        position: relative;
    }

    .filter-btn img {
        width: 15px;
        margin-left: 10px;
    }

    .filter-btn:after {
        display: none;
        content: '';
        width: 6px;
        height: 6px;
        position: absolute;
        border-radius: 50%;
        right: 28px;
        bottom: 8px;
        background: linear-gradient(180deg, #DFC956 0%, #F8E99D 100%);
    }

    .filter-btn.active:after {
        display: block;
    }

    .filter__send {
        display: block;
        width: fit-content;
        margin: 50px auto 15px auto;
    }

    .filter__reset {
        text-align: center;
        display: block;
    }

    .collections__wrap .products__item {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 600px) {
    .products__wrap .archive-ajax {
        display: block;
    }

    .products__wrap .archive-ajax .products__item {
        margin: 0 auto 20px auto;
        max-width: 320px;
    }
}

/*-----------------------------------------popup-------------------------------------*/
.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    top: 0;
    left: 0;
    display: none;
    z-index: 1000;
    overflow-y: scroll;
}

.popup_window {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.popup_content {
    background: #fff;
    max-width: 810px;
    padding: 60px 75px;
    position: relative;
    box-sizing: border-box;
    width: 90%;
}

.popup_title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 37px;
}

.popup_close {
    text-align: right;
    margin-bottom: 20px;
    position: absolute;
    top: 13px;
    right: 13px;
}

.popup_close span {
    display: inline-block;
    width: 26px;
    height: 26px;
    cursor: pointer;
    position: relative;
}

.popup_close span:before, .popup_close span:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    top: 50%;
    left: 50%;
    background: #25282B;
    transform: translate(-50%, -50%) rotate(45deg);
    display: block;
}

.popup_close span:after {
    transform: translate(-50%, -50%) rotate(-45deg)
}

@media screen and (max-width: 768px) {
    .popup_content {
        padding: 60px 20px 80px 20px;
        max-width: 480px;
    }

    .popup .form input[type="submit"] {
        width: 100%;
    }

    .popup .form__agreement {
        text-align: center;
    }
}

/*forms*/
.wpcf7-spinner {
    position: absolute;
    bottom: 0;
    left: 0;
}

.form__file {
    position: relative;
    margin-bottom: 20px;
}

.form__file .wpcf7-form-control-wrap {
    position: unset
}

.form__file .wpcf7-not-valid-tip {
    bottom: -15px;
    left: 0;
}

.form__title, h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.form__input-wrap {
    margin-top: 35px;
}

.form__file input[type="file"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

.form__file label {
    display: block;
    background: #fff;
}

.form__file-btn {
    position: relative;
    display: flex;
    cursor: pointer;
    align-items: center;
    max-width: 300px;
}

.form__file-btn img {
    margin-right: 10px;
    width: 56px;
    flex-shrink: 1;
}

.form__file-btn .form__file-text span {
    color: rgba(0, 0, 0, 0.4);
}

.form__file-text {
    color: var(--base-color-4);
}

.input-file-list > p {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.input-file-list__del {
    margin-left: 15px;
    transform: rotate(45deg);
    font-size: 30px;
    cursor: pointer;
}

.input-file-list {
    display: none;
}

.wpcf7-not-valid-tip {
    position: absolute;
    bottom: 10px;
    font-size: 14px;
    left: 23px;
}

.codedropz-upload-wrapper span.has-error-msg {
    font-size: 14px;
}

.wpcf7-form-control.wpcf7-not-valid {
    border: 1px solid #dc3232 !important;
}

.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 form .wpcf7-response-output {
    border-color: #ffb900;
    position: absolute;
    left: 50%;
    bottom: 25px;
    width: 74%;
    transform: translate(-50%, 0);
    font-size: 14px;
    margin: 0 !important;
    text-align: center;
}

.form input:not(input[type="submit"]), .form textarea, #map-input {
    background: var(--base-color-3);
    border-radius: 30px;
    height: 63px;
    padding: 18px 30px;
    font-size: 16px;
    margin-bottom: 30px;
    outline: none;
    border: none;
    width: 100%;
}

.form input::placeholder, .form textarea::placeholder, #map-input::placeholder {
    color: #7B9688;
    font-family: 'Montserrat', sans-serif;
}

.form textarea {
    resize: vertical;
    min-height: 110px;
    margin-bottom: 15px;
}

.form__submit {
    display: flex;
    align-items: center;
}

.form__agreement {
    font-weight: 400;
    font-size: 12px;
    color: #595959;
}

.form__agreement a {
    text-decoration: underline;
}

.form__agreement a:hover {
    text-decoration: unset;
}

.form input[type="submit"] {
    font-size: 1rem;
    margin-right: 40px;
    height: 60px;
    min-width: 280px;
}

@media screen and (max-width: 986px) {
    .form__title, h3 {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .form input:not(input[type="submit"]), .form textarea, #map-input {
        margin-bottom: 20px;
        height: 54px;
    }

    .wpcf7-not-valid-tip {
        bottom: 4px;
    }

    .form input[type="submit"] {
        height: 54px;
    }

    .form__title, h3 {
        font-size: 24px;
    }

    .form__submit {
        display: block;
    }

    .wpcf7 form .wpcf7-response-output {
        width: 90%;
    }
}

/*------------product page----------------*/
/*main-info*/
.main-info-product .container {
    display: flex;
}

.main-info-product .container > * {
    width: 50%;
}

.main-info-product h1 {
    margin-bottom: 25px;
}

.main-info-product .main-image {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: calc(60% * (517 / 510));
    width: 60%;
    margin: 30px auto 40px auto;
    cursor: pointer;
}

.main-info-product .main-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: unset;
    height: 100%;
}

.main-info-product .main-image .label {
    display: none;
}

.main-info-product .main-image:hover .main {
    display: none;
}

.main-info-product .main-image:hover .label {
    display: block;
}

.main-info-product .gallery.row {
    margin: 0 auto;
}

.main-info-product .gallery {
    width: 60% !important;
}

.main-info-product .gallery.row {
    display: flex;
}

.main-info-product .gallery .item {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: calc(33% * (100 / 100));
    width: calc(100% / 3 - 20px);
    margin-right: 20px;
    cursor: pointer;
}

.main-info-product .gallery.owl-carousel .item {
    padding-bottom: calc(100% * (100 / 100));
    width: 100%;
    margin-right: 0;
    opacity: 0.6;
}

.main-info-product .gallery .item.active,
.main-info-product .gallery .item:hover {
    border-bottom: 2px solid var(--base-color-4);
    opacity: 1;
}

.main-info-product .gallery .item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: unset;
    height: 80%;
}

.main-info-product .gallery__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
}

.main-info-product .description {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 45px;
}

.main-info-product .description ul {
    padding-left: unset;
}

.main-info-product .description ul li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.main-info-product .description ul li:before {
    content: '';
    display: block;
    width: 15px;
    height: 12px;
    background: url(/wp-content/themes/baunti/img/check-green.svg) no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 4px;
}

.main-info-product .categories, .main-info-product .product-value {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.main-info-product .categories .item {
    margin: 0 15px 15px 0;
    width: calc(100% / 5 - 15px);
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-info-product .categories .item img {
    width: 70px;
    margin-bottom: 10px;
}

.main-info-product .product-value .item {
    margin: 0 10px 10px 0;
    width: calc(100% / 3 - 10px);
    border: 1px solid #C1DBCE;
    border-radius: 4px;
    padding: 12px 20px;
    color: var(--base-color-4);
    word-wrap: break-word;
}

.find_apteka {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.find_apteka .reccomend_price {
    margin: auto 0;
    font-size: 14px;
    font-weight: 500;
}

.find_apteka .reccomend_price strong {
    font-size: 16px;
    font-weight: 300;
    display: block
}

.find-chemist {
    display: inline-flex;
    align-items: center;
    height: 60px;
    padding: 0 63px;
}

.find-chemist svg {
    margin-right: 10px;
    stroke: white;
    width: 20px;
}

.green-btn.find-chemist:hover svg {
    stroke: var(--base-color-4);
}

.bg-light-blue {
    background: #F3F9F6;
    padding: 50px 0 20px 0;
}

.bg-light-blue .info-blocks {
    margin-bottom: 80px
}

@media screen and (max-width: 1250px) {
    .main-info-product .main-image {
        width: 100%;
        padding-bottom: calc(100% * (517 / 510));
    }

    .main-info-product .gallery__wrap {
        width: 86%;
    }

    .main-info-product .product-value .item {
        width: calc(100% / 2 - 10px);
    }
}

@media screen and (max-width: 768px) {
    .main-info-product .container {
        display: block;
    }

    .main-info-product .container > * {
        width: 100%;
    }

    .main-info-product .images {
        margin-bottom: 30px;
    }

    .main-info-product .product-value .item {
        width: calc(100% / 4 - 10px);
    }

    .main-info-product .main-image {
        display: none;
    }

    .main-info-product .gallery .item.active, .main-info-product .gallery .item:hover {
        border: unset;
    }

    .main-info-product .product-value .item {
        width: calc(100% / 3 - 10px);
    }

    .main-info-product .description {
        margin-bottom: 30px;
    }

    .main-info-product .categories, .main-info-product .product-value {
        margin-bottom: 20px;
    }

    .find-chemist {
        height: 52px;
        padding: 0 40px;
    }

    .main-info-product .gallery {
        width: calc(100% - 90px) !important;
    }

    .main-info-product .gallery .item {
        padding-bottom: calc(100% * (100 / 100));
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .main-info-product .product-value .item {
        width: calc(100% / 2 - 10px);
    }

    .main-info-product .categories .item {
        width: calc(100% / 4 - 15px);
    }

    .main-info-product .gallery__wrap {
        width: 100%;
    }
}

@media screen and (max-width: 420px) {
    .main-info-product .categories .item {
        width: calc(100% / 3 - 15px);
    }
}

/*full-info*/
.full-info .full-info__btns, .full-info .full-info__text {
    max-width: 1100px;
}

.full-info__btns {
    border-bottom: 1px solid #C1DBCE;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    white-space: nowrap;
    overflow: scroll;
    scrollbar-width: none;
}

.full-info__btns::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.full-info__btns a {
    padding: 13px 25px;
    color: #789184;
    border-bottom: 2px solid transparent;
}

.full-info__btns a.active,
.full-info__btns a:hover {
    border-bottom-color: var(--base-color-4);
    color: #00833E;
}

.full-info__text h2 {
    font-size: 16px;
    margin: 14px 0;
}

.full-info__text > .item {
    display: none;
    font-weight: 400;
    font-size: 16px;
    max-width: 1200px;
}

.full-info__text *, .review__item * {
    line-height: 130%;
}

.full-info__text > .item.active {
    display: block;
}

.formulations-text {
    margin-top: 40px;
    max-width: 900px;
}

.formulations-text > .item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px dashed #C1DBCE;
    font-weight: 400;
    font-size: 16px;
}

.formulations-text > .item .value {
    font-weight: 600;
    margin-left: 10px;
    text-align: right;
    white-space: nowrap;
}

@media screen and (max-width: 986px) {
    .full-info__btns a {
        padding: 9px 12px;
    }
}

@media screen and (max-width: 768px) {
    .bg-light-blue {
        padding: 30px 0 20px 0;
    }

    .full-info__btns {
        margin-bottom: 25px
    }

    .formulations-text > .item {
        font-size: 14px;
    }
}

/*video*/
.video__item {
    max-width: 1100px;
}

.video__item a {
    height: 0;
    padding-bottom: calc(100% * (600 / 1100));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 15px;
}

.video__item a:after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: url(/wp-content/themes/baunti/img/play.svg) no-repeat center/10%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#video .popup_content {
    max-width: 900px;
    background: unset;
    padding: unset
}

#video .popup_video {
    width: 100%;
    height: 0;
    padding-bottom: calc(100% * (500 / 890));
    position: relative;
    overflow: hidden
}

#video iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#video .popup_close {
    background: var(--base-color-4);
    display: flex;
    align-items: center;
    padding: 3px;
    justify-content: center;
    border-radius: 4px;
    z-index: 100;
}

#video .popup_close span:before,
#video .popup_close span:after {
    background: #fff;
}

/*recommend*/
.recommend {
    background: var(--base-color-3);
    padding: 40px;
}

.recommend__blocks .recommend:not(:last-child) {
    margin-bottom: 0 !important;
}

.recommend__blocks .recommend:not(:first-child) {
    background: var(--base-color-3) !important;
}

.recommend h3 {
    text-align: center;
    margin-bottom: 60px;
}

.recommend .container {
    display: flex;
    align-items: center;
}

.recommend__descript {
    padding-left: 10%;
    width: 50%;
}

.recommend__descript .main__title {
    margin-bottom: 40px;
}

.recommend__products {
    width: 50%;
}

.recommend-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 45px;
}

.recommend-slider.owl-carousel {
    display: block;
    margin: 0 auto;
}

.recommend__nav {
    display: none
}

.recommend.smaller .recommend__descript {
    width: 68%;
}

.recommend.smaller .recommend__products {
    width: 32%;
}

.recommend.smaller .recommend-slider {
    grid-template-columns: repeat(2, 1fr);
}

.recommend .container.reverse {
    flex-direction: row-reverse
}

.recommend .reverse .recommend__descript {
    padding: 0 10% 0 0;
}

@media screen and (max-width: 1250px) {
    .recommend-slider.owl-carousel .products__item .img {
        width: 65%;
        padding-bottom: calc(65% * (280 / 190));
    }

    /*.recommend-slider.owl-carousel .products__item .img img{width: 60% !important;}*/
    .recommend__nav {
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }

    .recommend__products {
        width: 35%;
    }

    .recommend__descript {
        padding-left: 10%;
        width: 65%;
    }
}

@media screen and (max-width: 768px) {
    .recommend .container, .recommend .container.reverse {
        flex-direction: column-reverse;
    }

    .recommend__descript, .recommend__products, .recommend.smaller .recommend__descript, .recommend.smaller .recommend__products {
        width: 100%;
        padding: 0;
    }

    .recommend__products {
        max-width: 400px;
        margin: 0 auto;
    }

    .recommend__descript .main__title {
        margin-bottom: 20px;
    }

    .recommend, .recommend__blocks {
        padding: 30px 0;
    }

    .recommend .reverse .recommend__descript {
        padding: 0;
    }
}

/*reviews*/
.reviews-slider {
    max-width: 1100px
}

.review__item {
    margin-bottom: 30px;
}

.review__item .review {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px;
}

.review__item .review .title {
    display: flex;
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.review__item .review .name {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--base-color-4);
    margin-right: 20px;
}

.review__item .review .data {
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.review__item .review .text {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.review__item .review .photos {
    display: flex;
    flex-wrap: wrap;
}

.review__item .review .photos > * {
    margin: 0 5px 5px 0;
    flex-shrink: 0;
    align-self: center;
}

.review__item .answer {
    margin-top: 20px;
    padding: 25px;
    background: var(--base-color-3);
    border-radius: 20px;
    display: flex;
    width: fit-content;
}

.review__item .answer > img {
    width: 54px !important;
    flex-shrink: 0;
    margin-right: 25px;
}

.review__item .answer {
    font-size: 16px;
    font-weight: 400;
}

.review__item .answer .title {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 20px;
    color: var(--base-color-4);
}

#popup-review .form textarea {
    margin-bottom: 30px;
}

#gallery-img .popup_close {
    top: 0;
    right: 0;
    margin-bottom: 0;
}

#gallery-img .popup_close span {
    width: 26px;
    height: 26px;
    background: var(--base-color);
}

#gallery-img .popup_close span:before, #gallery-img .popup_close span:after {
    background: #fff;
    width: 60%;
}

#gallery-img .popup_content {
    background: unset;
    padding: unset;
    text-align: center;
    width: unset;
    max-width: 900px;
}

.reviews .nav-btns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
    max-width: 1100px;
}

.reviews__nav {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.reviews__nav .counts {
    margin: 0 30px;
}

.review-btn.center {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    margin-bottom: 30px;
    text-align: center;
}

.slider__arrs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.slider__arrs .slider-arr__prev {
    margin-right: 5px
}

@media screen and (max-width: 986px) {
    .review__item .answer {
        padding: 20px 25px;
    }

    .review__item .answer {
        font-size: 16px;
    }

    .review__item .answer > img {
        width: 46px !important;
        margin-right: 18px;
    }

    .review__item .answer .title {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .reviews .nav-btns {
        margin-top: 15px;
    }
}

@media screen and (max-width: 768px) {
    .review__item .review .name {
        font-size: 18px;
    }

    .review__item .review .data {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .reviews .nav-btns {
        display: block
    }

    .reviews__nav {
        justify-content: space-between;
        margin: 0 0 30px 0
    }

    .review-btn {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        display: flex;
    }

    .review__item .review {
        padding: 15px;
        border-radius: 10px;
    }

    .review__item .answer {
        margin-top: 10px
    }
}

/*-------------about page-------------*/
.about-main {
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*table*/
.table {
    font-size: 16px;
    font-weight: 400;
}

.table .main__title, .about-video .main__title {
    text-align: center;
    margin-bottom: 50px;
}

table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #F1F7F0;
}

table tr:first-child {
    font-weight: 600;
    border-bottom: 2px solid var(--base-color);
}

table td {
    padding: 10px 8px;
}

table tr:first-child, table tr:nth-child(2n) {
    background: #fff;
}

@media screen and (max-width: 986px) {
    table {
        border-collapse: separate;
        min-width: 980px;
    }

    .table__wrap {
        overflow-x: scroll;
        scrollbar-width: thin;
    }

    .table__wrap::-webkit-scrollbar {
        background: unset;
        height: 4px;
    }

    .table__wrap::-webkit-scrollbar-thumb {
        height: 4px;
        background: var(--base-color-4);
        border-radius: 4px;
    }
}

@media screen and (max-width: 768px) {
    table tr:first-child {
        font-size: 14px;
    }

    .table .main__title, .about-video .main__title {
        margin-bottom: 20px;
    }

    .about-main {
        height: 180px;
    }
}

@media screen and (max-width: 600px) {
    .about-main {
        height: 160px;
    }
}

/*about-video*/
.about-video .video__item {
    margin: 0 auto;
}

/*about-why*/
.about-why .about-why__wrap {
    display: grid;
    margin-top: 80px;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0 10%;
}

.about-why .main__title,
.about-why__subtitle {
    text-align: center;
}

.about-why__subtitle {
    max-width: 990px;
    margin: 30px auto 0 auto;
}

@media screen and (max-width: 1400px) {
    .about-why .about-why__wrap {
        grid-gap: 0 5%;
    }
}

@media screen and (max-width: 1200px) {
    .about-why .about-why__wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 35px 5%;
    }
}

@media screen and (max-width: 768px) {
    .about-why .about-why__wrap {
        margin-top: 40px;
    }
}

@media screen and (max-width: 600px) {
    .about-why .about-why__wrap {
        display: block;
    }
}

/*-------------contacts page--------------*/
.contacts__wrap > .container {
    display: flex;
}

.contacts__wrap .contacts__left,
.contacts__wrap .contacts__right {
    width: 50%;
    position: relative;
    z-index: 1;
}

.contacts__wrap .contacts__left {
    display: flex;
    flex-direction: column;
}

.contacts__left > * {
    margin-bottom: 30px;
}

.contacts__wrap h1 {
    margin-bottom: 55px;
}

.contacts__wrap .contacts__right {
    padding-left: 8%;
    padding-bottom: 100px
}

.contacts__wrap .contacts__right .wpcf7 form .wpcf7-response-output {
    left: 58%;
}

.contacts__wrap {
    position: relative;
    padding-bottom: 60px;
}

.contacts__wrap:after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    background: var(--base-color-3);
    z-index: 0;
    width: 50%;
    right: 0;
    top: 0;
}

.contacts__wrap .form input:not(input[type="submit"]),
.contacts__wrap .form textarea {
    background: #fff;
}

.contacts__wrap .form__file label {
    background: var(--base-color-3);
}

.contacts__left .social {
    margin-right: 10px;
    width: 36px;
    height: 36px;
}

.contacts__address {
    max-width: 420px;
}

.contacts__email {
    text-decoration: underline
}

.contacts__email:hover {
    text-decoration: unset
}

@media screen and (max-width: 1600px) {
    .contacts__wrap .contacts__right {
        padding-left: 60px;
    }
}

@media screen and (max-width: 1250px) {
    .contacts__wrap .contacts__right {
        padding-left: 40px;
    }
}

@media screen and (max-width: 986px) {
    .contacts__wrap h1 {
        margin-bottom: 25px;
    }

    .contacts__wrap > .container {
        display: block;
    }

    .contacts__wrap:after {
        display: none
    }

    .contacts__wrap .contacts__left {
        width: 100%;
        padding-bottom: 40px;
    }

    .contacts__wrap .contacts__right {
        padding: 45px 20px 80px 20px;
        background: var(--base-color-3);
        margin: 0 -20px;
        width: calc(100% + 40px)
    }

    .contacts__wrap {
        padding-bottom: 0;
    }

    .contacts__wrap .contacts__right .wpcf7 form .wpcf7-response-output {
        left: 50%;
    }
}

@media screen and (max-width: 768px) {
    .contacts__left > * {
        margin-bottom: 24px;
    }
}

/*-------------------news---------------------*/
.news-category {
    text-align: center;
    padding: 0 0 70px 0;
    background: var(--neutral-color);
}

.news-category .border-green-btn {
    background: unset;
    margin: 0 10px 15px 0;
}

.news-category h1 {
    margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .news-category h1 {
        margin-bottom: 35px;
    }

    .news-category {
        padding: 0 0 20px 0;
    }

    .news-category .border-green-btn {
        margin: 0 5px 10px 0;
    }
}

/*featured-news*/
.featured-news .container:not(.blog-title) {
    display: flex;
    justify-content: space-between;
}

.featured-news .container:not(.blog-title) > * {
    width: calc(50% - 12px);
    display: block;
}

.featured-news--3 .container:not(.blog-title) > * {
    width: calc(33.33% - 16px);
    display: block;
}

.news__item .img {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: calc(100% * (370 / 770));
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

.news__item .categories {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.news__item .categories .item {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    padding-right: 5px;
    padding-left: 5px;
    border-right: 1px solid #000;
    margin-bottom: 5px;
}

.news__item .categories .item:first-child {
    padding-left: 0;
}

.news__item .categories .item:last-child {
    border-right: unset;
}

.news__item .title {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 15px;
    color: var(--base-color-4);
}

.news__item:hover .title {
    color: #AC9830
}

.news__item .excerpt {
    font-weight: 400;
}

@media screen and (max-width: 1250px) {

    .featured-news--3 .container:not(.blog-title) > *  {
        width: calc(50% - 12px);
        margin-bottom: 40px
    }

    .featured-news--3 .container:not(.blog-title) > *:last-child {
        display: none;
    }
}

@media screen and (max-width: 986px) {
    .news__item .title {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .news__item .title {
        font-size: 18px;
    }

    .featured-news .container:not(.blog-title) {
        display: block
    }

    .featured-news .container:not(.blog-title) > * {
        width: 100%;
        margin-bottom: 40px
    }

    .featured-news .container:not(.blog-title) > *:last-child {
        margin-bottom: 0
    }

    .news__item .categories, .news__item .title {
        margin-bottom: 5px
    }

    .news__item .categories .item {
        font-size: 13px
    }
}

/*featured*/
.featured .container {
    max-width: 1200px;
    display: flex;
    position: relative;
}

.featured .main__title {
    font-weight: 400;
}

.featured .news__item {
    width: 60%;
    margin-left: auto;
    background: var(--base-color-3);
    padding: 110px 5% 110px 10%;
}

.featured .img {
    padding-bottom: calc(45% * (390 / 635));
    width: 45%;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 1;
}

.featured .categories, .featured .title,
.featured .excerpt {
    margin-bottom: 25px;
}

.featured .excerpt {
    line-height: 180%;
}

@media screen and (max-width: 986px) {
    .featured .container {
        display: block
    }

    .featured .news__item {
        width: 100%;
        margin-left: unset;
        background: unset;
        padding: 0;
    }

    .featured .info {
        padding: 60px 20px 35px 20px;
        background: var(--base-color-3);
        margin: -35px -20px 0 -20px;
    }

    .featured .img {
        padding-bottom: calc(420px * (390 / 635));
        width: 100%;
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        z-index: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .featured .categories, .featured .title, .featured .excerpt {
        margin-bottom: 17px;
    }
}

@media screen and (max-width: 768px) {
    .featured .categories, .featured .title, .featured .excerpt {
        margin-bottom: 10px;
    }
}

/*news*/
.news .container, .more-blog__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 95px 24px;
}

.news .news__item .img,
.more-blog__wrap .news__item .img {
    padding-bottom: calc(100% * (340 / 500));
}

@media screen and (max-width: 1250px) {
    .news .container, .more-blog__wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px 24px;
    }
}

@media screen and (max-width: 768px) {
    .news .container, .more-blog__wrap {
        display: block
    }

    .news .news__item {
        margin-bottom: 40px;
        display: block
    }
}

/*-----------------blog page-------------------*/
.thumbnail-blog {
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.content__wrap {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 50px;
}

.content__wrap .content-block {
    width: calc(100% - 370px - 5%);
}

.content__wrap .blog-categories {
    width: 370px;
    margin-left: 5%;
    align-self: flex-start;
    padding: 30px 20px;
    border: 1px solid #CECECE;
}

.content__wrap .blog-categories a {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--base-color-4);
    margin-bottom: 15px;
    font-weight: 400;
}

.content__wrap .blog-categories a:last-child {
    margin-bottom: 0;
}

.content__wrap .blog-categories a:hover {
    text-decoration: underline;
}

.content__wrap .content {
    font-weight: 400;
    font-size: 16px;
}

.content__wrap .excerpt {
    margin-bottom: 50px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.content__wrap h2 {
    font-weight: 600;
    font-size: 20px;
    margin: 45px 0 14px 0;
}

.content__wrap p {
    line-height: 140%;
}

.content__wrap .content-block a {
    color: var(--base-color-2);
    overflow-wrap: anywhere;
}

.content__wrap .content-block a:hover {
    text-decoration: underline;
}

.content__wrap .content-block blockquote {
    padding: 10px 20px;
    font-weight: bold;
}

.content__wrap .content li {
    list-style-position: inside;
}

.content__wrap .content ul, .content__wrap .content ol {
    margin: 20px 0
}

@media screen and (max-width: 1400px) {
    .content__wrap .blog-categories {
        width: 300px;
    }

    .content__wrap .content-block {
        width: calc(100% - 300px - 5%);
    }
}

@media screen and (max-width: 1250px) {
    .content__wrap .blog-categories {
        width: 240px;
    }

    .content__wrap .content-block {
        width: calc(100% - 240px - 5%);
    }

    .thumbnail-blog {
        min-height: 400px;
    }
}

@media screen and (max-width: 986px) {
    .content__wrap {
        display: block;
    }

    .content__wrap .content-block {
        width: 100%;
    }

    .content__wrap .excerpt {
        margin-bottom: 30px;
    }

    .content__wrap h2 {
        font-size: 18px;
        margin: 35px 0 14px 0;
    }

    .content__wrap .blog-categories {
        margin-left: 0;
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .thumbnail-blog {
        min-height: 180px;
    }

    .content__wrap .blog-categories a {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .content__wrap .blog-categories {
        width: 100%;
    }
}

/*------------------map page----------------*/
ymaps[class*="-suggest-item-0"] {
    background-color: rgb(226, 226, 226);
}

#map {
    margin-top: 16px;
    height: 600px;
    width: 100%;
}

#map-input {
    background: #fff;
    margin: 45px 0;
    border: 2px solid var(--base-color-4);
}

.balloon-container {
    display: inline-block;
    position: relative;
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: 0 5px 20px 0 rgb(18 25 38 / 10%);
    -moz-box-shadow: 0 5px 20px 0 rgba(18, 25, 38, 0.1);
    box-shadow: 0 5px 20px 0 rgb(18 25 38 / 10%);
}

.balloon-container .close {
    text-decoration: none;
    color: inherit;
    font-size: 25px;
    position: absolute;
    right: 15px;
    line-height: 15px;
    top: 15px;
}

.ballooncontent-container {
    padding-right: 25px;
}

.balloon_tail {
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    width: 17px;
    height: 17px;
    background-color: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

.ymaps-2-1-79-search__suggest {
    font: 16px/28px Arial, sans-serif !important;
    top: 32px !important;
}

@media screen and (max-width: 768px) {
    #map-input {
        margin: 25px 0;
    }

    .ymaps-2-1-79-search__suggest {
        top: 46px !important;
    }
}

/*-----------------------404-----------------------*/
.page-404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.page-404__title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center
}

.page-404__subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/*-----------------------search-page-------------------*/
.search-page .products__wrap {
    width: 100%;
}

.search-page__result {
    margin-bottom: 30px;
}

.search-page__item {
    margin-bottom: 20px;
    display: block;
    font-size: 22px;
    color: var(--base-color) !important;
}

.search-page__item:hover {
    text-decoration: underline
}

@media screen and (max-width: 986px) {
    .search-page__item {
        font-size: 20px
    }
}

@media screen and (max-width: 768px) {
    .search-page__item {
        font-size: 18px
    }
}

/*-----------------------cookie------------------------*/
.cookie-block {
    background: #fff;
    position: fixed;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, 0);
    max-width: 1200px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    width: calc(100% - 40px);
    box-shadow: 0px 4px 14px rgba(46, 82, 64, 0.2);
    border-radius: 3px;
    z-index: 100;
}

.cookie-block img {
    width: 28px;
    margin-right: 15px;
}

.cookie__text {
    margin-right: 15px;
    font-size: 14px;
    max-width: 720px;
}

.cookie__more {
    color: var(--base-color-4) !important;
    font-size: 16px;
    margin-right: 20px;
    text-decoration: underline;
}

.cookie__more:hover {
    text-decoration: unset;
}

.cookie__ok.green-btn {
    font-size: 16px;
    padding: 8px 30px;
}

.cookie__btns {
    display: flex;
    align-items: center;
    margin-left: auto;
}

@media screen and (max-width: 986px) {
    .cookie__btns {
        flex-direction: column-reverse;
    }

    .cookie__ok.green-btn {
        margin-bottom: 5px;
    }

    .cookie__more {
        margin-right: 0;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .cookie-block img {
        display: none
    }

    .cookie-block {
        display: block;
    }

    .cookie__btns {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .cookie__text {
        margin: 0 0 10px 0;
    }

    .cookie__ok.green-btn {
        margin: 0 10px 0 0;
    }
}

@media screen and (max-width: 600px) {
    .cookie__text {
        font-size: 12px
    }

    .cookie-block {
        width: calc(100% - 20px);
        padding: 10px;
    }

    .cookie__ok.green-btn {
        font-size: 14px;
        padding: 6px 25px;
    }

    .cookie__more {
        font-size: 12px;
    }
}

/*-------------popup offer-----------*/
#popup-offer {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.22);
    display: none;
    max-width: 750px;
    width: 90%;
}

#popup-offer .popup_content {
    background: #fff;
    padding: 0;
    display: flex;
    width: auto;
}

.offer__img {
    width: 45%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: calc(45% * (340 / 340));
    height: 0;
}

.offer__text {
    padding: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 55%;
}

.offer__title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 22px;
}

.offer__subtitle {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    #popup-offer .popup_content {
        display: block;
        /*padding-top: 20px;*/
        display: flex;
        flex-direction: column;
    }

    #popup-offer {
        max-width: 300px;
    }

    #popup-offer .popup_close{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
    }

    .offer__img {
        /*padding-bottom: calc(100% * (130 / 245));*/
        width: 100%;

        max-width: 100%;
        height: auto;
        /*padding-bottom: 0;*/
        /*background-size: contain;*/
        padding-bottom: 0;
        aspect-ratio: 100/100;
    }
    .offer__img img{
        width: 100%;
        height: 100%;
        object-position: center;
        object-fit: contain;

    }

    .offer__text {
        width: 100%;
    }

    .offer__title {
        margin-bottom: 15px;
    }

    .offer__main .more {
        margin-top: 15px;
    }
}

@media screen and (max-width: 600px) {
    .offer__title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .offer__subtitle {
        font-size: 14px;
    }

    .offer__main .more {
        margin-top: 10px;
    }

    #popup-offer {
        bottom: 50%;
        transform: translate(50%, 50%);
        right: 50%;
    }
}

/*---------------page----------*/
.page__content li {
    list-style-position: inside;
    margin-bottom: 10px;
}

.page__content h2 {
    margin: 35px 0 25px 0;
}

.page__content h3 {
    font-size: 1.17em;
    margin: 25px 0 20px 0;
}

.page__content p {
    margin-bottom: 15px;
    line-height: 150%;
}

.page__content a {
    color: var(--base-color-4) !important;
    text-decoration: underline;
}

.page__content a:hover {
    text-decoration: unset;
}

@media screen and (max-width: 768px) {
    .page__content h2 {
        margin: 30px 0 20px 0;
    }

    .page__content h3 {
        margin: 20px 0 15px 0;
    }
}


.header__lang {
    position: relative;
    display: flex;
    margin-left: 10px;
}

.header__lang a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.06 !important;
    color: #FFFFFF;
    text-decoration: none;
    padding: 9px 10px;
    background: var(--base-color-5);
    transition: .2s ease-in-out background-color;
    display: flex;
    align-items: center;
    height: 100%;
    width:auto !important;
    margin: 0 !important;
}

.header__lang a:hover {
    background: var(--base-color-4) !important;
}

.header__lang-active a:after {
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width=%2710%27 height=%277%27 viewBox=%270 0 10 7%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E %3Cpath d=%27M1 1L5 5L9 1%27 stroke=%27white%27 stroke-width=%272%27/%3E %3C/svg%3E");
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-left: 6px;
    transition: .3s ease-in-out transform;
}
.header__lang-active.active a:after {
    transform: rotate(180deg);
}

.header__lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    z-index: 10001;
    margin: 0;
    padding: 0;
    list-style-type: none;

}

.header .header__lang{
    display: none;
}
.header__menu-burger{
    transition: .2s ease-in-out background;
}
.header__menu-burger:hover {
    background: rgb(145, 196, 59) !important;
}

@media screen and (max-width: 1250px) {
    .float-banner .header__lang{
        display: none;
    }
    .header .header__lang{
        display: flex;
        margin-left: 0px;
        margin-right: 5px;
    }
    .header__lang a {
        background: var(--base-color-2);
    }
    .header__lang a:hover {
        background: rgb(145, 196, 59) !important;
    }

}

.grecaptcha-badge{
    visibility: hidden;
}

.green-dark-btn-link a{
    background: var(--base-color-5);
    border-color: var(--base-color-5);
}
.green-dark-btn-link a:hover{
    color: var(--base-color-5);
    border-color: var(--base-color-5);
}




a.category-menu__item--special {
    color: var(--base-color-4) !important;
}

a.category-menu__item--special:hover {
    color: #469f54 !important;
}

.header__menu  .menu-item-has-children {
    position: relative;
}
.header__menu  .menu-item-has-children > a {
    display: flex;
    align-items: center;
}
.header__menu  .menu-item-has-children > a:after {
    display: block;
    content: '';
    width: 14px;
    height: 8px;
    background: url(/wp-content/themes/baunti/img/arr-menu.svg) no-repeat center/contain;
    margin-left: 10px;
}
.header__menu  .menu-item-has-children ul {
    padding: 5px 15px;
    left: -15px;
    right: -15px;
    /*display: block !important;*/
    z-index: 1000;
    bottom: -4px;
    transform: translateY(100%);
    border-top: 4px solid transparent;
}
.header__menu  .menu-item-has-children ul:before {
    content: '';
    width: 100%;
    height: 4px;
    top: -8px;
    left: 0;
    position: absolute;
}
.header__menu  .menu-item-has-children li {
    padding: 0;
    margin: 15px 0;
}

.header__menu .menu-item-has-children--2 .sub-menu {
    display: none;
    right: auto;
    width: 480px;
    column-count: 2;
    grid-gap: 5px;
    padding-top: 20px;
    padding-bottom: 15px;
}
.header__menu .menu-item-has-children--2 .sub-menu li {
    break-inside: avoid-column;
    margin: 0;
    margin-top: 0;
    margin-bottom: 15px;
}

.header__menu .menu-item-has-children svg, .menu-products svg{
    display: none;
}
@media screen and (min-width: 986px) {
    .header__menu .menu-item-has-children--2:hover .sub-menu {
        display: block;
    }
}


@media screen and (min-width: 1250px) {
    .header__menu .menu-item-has-children--2:hover .sub-menu {
        display: block;
    }
}

@media screen and (max-width: 1250px) {
    .header__menu .menu-item-has-children ul {
        transform: none;
        border: none;
        padding: 30px 15px 0;
        width: 100%;
    }
    .header__menu .menu-item-has-children li {
        margin: 0 0 25px;
    }
    .header__menu .menu-item-has-children--2 .sub-menu {
        width: 100%;
        column-count: 1;
        padding-top: 30px;
        padding-bottom: 0;
    }
    .header__menu .menu-item-has-children--2 .sub-menu li{
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 986px) {
    .header__menu .menu-item-has-children ul {
        transform: none;
        border: none;
        padding: 30px 15px 0;
        width: 100%;
    }
    .header__menu .menu-item-has-children ul:before {
        display: none;
    }
    .header__menu .menu-item-has-children li {
        margin: 0 0 25px;
    }
    .header__menu .menu-item-has-children svg {
        transform: rotate(-90deg) translateX(-4px);
        margin-left: 20px;
        width: 9px !important;
        margin-top: -3px;
        display: inline-block;
    }
    .header__menu  .menu-item-has-children > a:after {
        display: none;
    }
}

.main-slider-desc{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0 50px;
}
.main-slider-desc h2{
    color: var(--base-color-5);
    text-transform: uppercase;
    font-size: clamp(1.375rem, 0.9711538462rem + 1.5384615385vw, 2.125rem);
}
.main-slider-desc h3{
    color: var(--base-color-2);
    font-size: clamp(1.25rem, 0.8461538462rem + 1.5384615385vw, 2rem);
}
@media screen and (max-width: 768px) {
    .main-slider-desc{
        margin: 30px 0 20px;
    }
}


.green-btn--big{
    padding: 17px 55px;
}
@media screen and (max-width: 768px) {
    .green-btn--big {
        padding: 14px 44px;
    }
}

.brand_lines{
    background: var(--neutral-color);
    padding: 80px 0;
}
.brand_lines .container{
    padding: 0 5% 0 5%;
}

.brand_lines__main-title h3{
    color: var(--base-color-5);
    margin: 0 0 40px;
    text-transform: uppercase;
}

.brand_lines__item{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 90px;
}
.brand_lines__item.swiper-slide{
    height: auto;
}
.brand_lines__text{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 520px;
    min-width: 520px;
    flex-shrink: 0;
}
.brand_lines__title h3{
    color: var(--base-color-4);
    margin: 0 0 26px;
    text-transform: uppercase;
}
.brand_lines__desc{
    margin-bottom: 26px;
}
.brand_lines__btn{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-gap: 13px;
    margin-right: -57px;
    margin-top: auto;
}
.brand_lines__btn-mobile{
    display: none;
}
.brand_lines__btn-desktop{
    display: flex;
}

.brand_lines__arr{
    height: 57px;
    width: 57px;
    cursor: pointer;
    flex-shrink: 0;
}
.brand_lines__arr:hover svg circle, .brand_lines__arr:hover svg path{
}
.brand_lines__arr svg{
    width: 100%;
    height: 100%;
}
.brand_lines__arr:hover svg{
    fill: #fff;
}


.brand_lines__img{
    width: 100%;
    aspect-ratio: 670 / 390;
    margin-left: auto;
    margin-right: auto;
}

.brand_lines__img--desktop{

}
.brand_lines__img--mobile{
    display: none !important;
}
.brand_lines__img img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.brand_lines .swiper-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    grid-gap: 5px 20px;
    position: static;

    width: 100%;
    max-width: 670px;
    margin-left: auto;
}



.brand_lines  .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: transparent;
    border: 1px solid var(--base-color-5);
    border-radius: 50%;
    cursor: pointer;
    margin: 0 !important;
    opacity: 1;
}

.brand_lines .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-color-5);
}

@media screen and (max-width: 1250px) {
    .brand_lines__item {
        grid-gap: 30px;
    }
    .brand_lines__btn {
        margin-right: 0px;
    }
    .brand_lines__main-title h3{
        margin: 0 0 20px;
    }
    .brand_lines__title h3{
        margin: 0 0 6px;
    }
    .brand_lines__desc{
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 986px) {
    .brand_lines{
        padding: 60px 0;
    }
    .brand_lines .container{
        padding: 0 20px;
    }
    .brand_lines__item {
        grid-gap: 20px;
    }
    .brand_lines__text {
        max-width: 420px;
        min-width: 420px;
    }
}
@media screen and (max-width: 768px) {
    .brand_lines{
        padding: 30px 0 40px;
    }
    .brand_lines__arr{
        width: 48px;
        height: 48px;
        position: absolute;
        top: 0;
        right: 0;
    }
    .brand_lines__item {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
    }
    .brand_lines__text {
        max-width: 100%;
        min-width: 100%;
    }
    .brand_lines__btn-mobile{
        display: flex;
    }
    .brand_lines__btn-desktop{
        display: none;
    }
    .brand_lines__desc{
        margin-bottom: 0;
    }
    .brand_lines__btn{
        margin-top: 15px;
        margin-bottom: 25px;
        justify-content: center;
        position: relative;
    }
    .brand_lines__btn .green-btn{
        margin-left: auto;
        margin-right: auto;
    }
    .brand_lines__item.swiper-slide{
        height: 100%;
    }
    .brand_lines__img--desktop{
        display: none !important;
    }
    .brand_lines__img--mobile{
        display: block !important;
    }
}

@media (max-width: 375px) {
    .brand_lines__arr{
        position: static;
    }
}

.products__filters{
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 9px;
    margin: 0 0 20px;
}

.products__filters li a{
    background: transparent;
    border-radius: 30px;
    border: 1px solid var(--base-color-5);
    padding: 5px 15px;
    font-size: 16px;
    display: block;
}
.products__filters a:hover{
    background: var(--base-color-5);
    color: #fff;
}
.products__filters a.active{
    background: var(--base-color-5);
    color: #fff;
}

.w-100{
    width: 100% !important;
}
@media screen and (max-width: 768px) {
    .products__filters{
        margin-top: -20px;
    }
    .products__filters li a{
        font-size: 14px;
    }
}

.products__banner-mini{
    background-color: var(--base-color-3);
    width: 100%;
    min-height: 120px;
    padding: 30px 20px;
    grid-column: 1 / -1;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 25px;
    margin-top: -30px;
    margin-bottom: -30px;
}
.products__banner-mini-text{
    max-width: 900px;
    width: 100%;
}
.products__banner-mini-text>*:first-child{
    margin-top: 0;
}
.products__banner-mini-text>*:last-child{
    margin-bottom: 0;
}
@media screen and (max-width: 1250px) {
    .products__banner-mini{
        margin-top: -20px;
        margin-bottom: -20px;
    }
}
@media screen and (max-width: 986px) {

    .products__banner-mini-text p{
        font-size: 16px;
    }
    .products__banner-mini{
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 15px;
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {

    .products__banner-mini{
        display: none;
    }

    .products__banner-mini-text p{
        font-size: 14px;
    }
}

.blog-banner{
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    min-height: 160px;
    padding: 20px 0 30px;
    position: relative;
    background: var(--neutral-color);
}
.blog-banner__wrapper{
    max-width: 1200px;
    position: relative;
    z-index: 1;
}
.blog-banner__desc{
    font-weight: 600;
}
.blog-banner__desc strong{
    font-weight: inherit;
    color: var(--base-color-2);
}
.blog-banner__img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}
@media screen and (max-width: 1250px) {
    .blog-banner__wrapper{
        max-width: 900px;
    }
}
@media screen and (max-width: 986px) {
    .blog-banner:before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba(248, 242, 235, .5);
        z-index: 0;
    }
}
@media screen and (max-width: 768px) {
    .blog-banner{
        padding-top: 0;
        padding-bottom: 10px;
        min-height: auto;
    }
    .blog-banner:before{
        display: none;
    }
    .blog-banner__img{
        display: block;
        position: relative;
        height: 160px;
        margin-bottom: 20px;
    }
}



.blog-title{
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.blog-title--color{
    background: var(--base-color-3);
    margin-bottom: 40px;
    margin-top: 0;
}
.container.news-container--2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 95px 24px;
    padding-left: 0;
    padding-right: 0;
}

.container.news-container--2 .news__item .img{
    padding-bottom: calc(100% * (370 / 770));
}

.news__cont-wrap{
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1595px;
    padding: 0 20px;
    margin: 0 auto;
    grid-gap: 85px;
}
.news__cont-wrap .pagination-number{
    display: none;
}
.news__cont-prod{
    width: 70%
}
.news__cont-aside{
    width: 30%;
}
@media screen and (max-width: 1250px) {

    .container.news-container--2{
        grid-gap: 50px 24px;
    }
    .news__cont-wrap{
        grid-gap: 35px;
    }
}
@media screen and (max-width: 986px) {
    .container.news-container--2{
        grid-template-columns: repeat(1, 1fr);
    }
    .news__cont-aside{
        width: 40%;
    }
    .news__cont-prod {
        width: 60%;
    }
}
@media screen and (max-width: 768px) {
    .blog-title--color{
        margin-bottom: 20px;
    }
    .container.news-container--2{
        grid-gap: 40px 24px;
    }
    .news__cont-wrap{
        flex-direction: column;
    }
    .container.news-container--2 .news__item{
        margin-bottom: 0;
    }
    .news__cont-aside{
        width: 100%;
    }
    .news__cont-prod {
        width: 100%;
    }
}
.news__cats-mini{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 10px;
    width: 100%;
}
a.border-green-btn-mini{
    border: 2px solid var(--base-color-4);
    color: var(--base-color-4);

    background: transparent;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 16px;
    display: block;
    font-weight: 600;
}
.border-green-btn-mini:hover{
    background: var(--base-color-3);
}
.border-green-btn-mini.current{
    background: var(--base-color-3);
}
@media screen and (max-width: 768px) {
    a.border-green-btn-mini{
        font-size: 14px;
    }
}

.pagination-number{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 3px;
    justify-content: center;
}
.pagination-number a, .pagination-number span{
    width: 36px;
    height: 36px;
    border: 1px solid var(--base-color-4);
    background: transparent;
    color: var(--base-color-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    font-weight: 600;
    font-size: 18px;
}
.pagination-number a:hover{
    background: var(--base-color-4);
    border-color: var(--base-color-4);
    color: #fff;
}
.pagination-number .delimetr{
    border: none;
}
.pagination-number .current{
    background: var(--base-color-4);
    border-color: var(--base-color-4);
    color: #fff;
}
.pagination-number .prev{
    transform: scaleX(-1);
    margin-right: 20px;
}

.pagination-number .next{
    margin-left: 20px;
}
.pagination-number .prev svg path,
.pagination-number .next svg path
{
    stroke-width: 2px;
    stroke: var(--base-color-4);
}
.pagination-number .prev:hover svg path,
.pagination-number .next:hover svg path
{
    stroke: #fff;
}
.info__desc_mini{
    color: var(--base-color-4);
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 25px;
    margin-top: -20px;
}
@media screen and (max-width: 986px) {
    .info__desc_mini{
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .pagination-number a, .pagination-number span{
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}
@media screen and (max-width: 600px) {
    .info__desc_mini{
        font-size: 16px;
    }
}

.subscribe-tg-block{
    margin: 14px 0;
    display: flex;
    grid-gap: 25px;
    align-items: center;
    background: var(--base-color-3);
    padding: 10px 20px ;
    justify-content: space-between;
}
.subscribe-tg-block h3{
    font-size: 21px;
    margin: 0;
}
.subscribe-tg-block img{
    margin: 0;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.subscribe-tg-button{
    width: 100%;
    max-width: 160px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none !important;
    padding-left: 5px;
    padding-right: 5px;
    flex-shrink: 0;
}
.subscribe-tg-button:hover{
}
.subscribe-tg-block__wrap{
    display: flex;
    align-items: center;
    grid-gap: 30px;
}

@media screen and (max-width: 1250px) {
    .subscribe-tg-block__wrap {
        grid-gap: 20px;
    }
    .subscribe-tg-block img {
        width: 70px;
        height: 70px;
    }
    .subscribe-tg-block h3 {
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .subscribe-tg-block {
        grid-gap: 15px;
        padding: 10px 15px;
    }
    .subscribe-tg-block__wrap {
        grid-gap: 15px;
    }
    .subscribe-tg-block img {
        width: 60px;
        height: 60px;
    }
    .subscribe-tg-block h3 {
        font-size: 16px;
    }
    .subscribe-tg-button{
        font-size: 16px;
    }
}
@media screen and (max-width: 600px) {
    .subscribe-tg-block{
        padding: 10px;
        flex-direction: column;
    }
    .subscribe-tg-block__wrap {
        grid-gap: 10px;
    }
    .subscribe-tg-button{
        /*width: 100%;*/
    }
}

.recommended-post-block{
    margin: 14px 0;
    display: flex;
    background: var(--neutral-color);
    justify-content: space-between;
    grid-gap: 20px;
    padding: 15px 50px;
    align-items: flex-start;
}
.recommended-post-block__text{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.recommended-post-block__text h3{
    margin: 0;
    color: var(--base-color-2);
    font-size: 18px;
}
.recommended-post-button{
    width: 100%;
    max-width: 160px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none !important;
    margin-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
}
.recommended-post-block__text-wrap>*:last-child{
    margin-bottom: 14px;
}
.recommended-post-block__img{
    flex-shrink: 0;
    max-width: 420px;
}
.recommended-post-block__img img{
    aspect-ratio: 210/105;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    border-radius: 10px;
}
@media screen and (max-width: 1400px) {
    .recommended-post-block {
        padding: 15px 20px;
    }
    .recommended-post-block__img {
        max-width: 320px;
    }
}
@media screen and (max-width: 1250px) {
    .recommended-post-block__img {
        max-width: 270px;
    }
}
@media screen and (max-width: 986px) {
    .recommended-post-block__img {
        max-width: 320px;
    }
}
@media screen and (max-width: 768px) {
    .recommended-post-block {
        flex-direction: column;
        grid-gap: 15px;
    }
    .recommended-post-block {
        padding: 15px 15px;
    }
    .recommended-post-block__img {
        max-width: 320px;
        order: -1;
    }
    .recommended-post-button{
        font-size: 16px;
    }
}

.recommended-article-block{
    background: var(--base-color-3);
    margin: 14px 0;
    display: flex;
    grid-gap: 30px;
    padding: 5px 30px;
    align-items: center;
}
.recommended-article-block h3{
    margin: 0;
    color: var(--base-color-2);
    font-size: 18px;
}

.recommended-article-block__text{
    width: 100%;
}

.recommended-article-block__text>*:last-child {
    margin-bottom: 0;
}
.recommended-article-block__info{
    display: flex;
    align-items: center;
    width: 100%;
    grid-gap: 30px;
    padding: 10px 0;
}
.recommended-article-image{
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.recommended-article-image img{
    aspect-ratio: 100/100;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    border-radius: 10px;
}
.recommended-article-button {
    width: 100%;
    max-width: 160px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none !important;
    margin-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    flex-shrink: 0;
}
@media screen and (max-width: 1400px) {
    .recommended-article-block {
        padding: 5px 20px;
        grid-gap: 20px;
    }
    .recommended-article-block__info{
        grid-gap: 20px;
    }
}
@media screen and (max-width: 768px) {
    .recommended-article-block{
        align-items: flex-start;
        padding: 15px 15px;
        grid-gap: 15px;
    }
    .recommended-article-button {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }
    .recommended-article-block__info{
        flex-direction: column;
        grid-gap: 15px;
        align-items: flex-start;
        padding: 0;
    }
    .recommended-article-image {
        width: 90px;
    }
}
@media screen and (max-width: 600px) {
    .recommended-article-block{
        flex-direction: column;
    }
}


.news-list-slider{
    margin: 40px 0 80px;
}
.news-list-slider .swiper-wrapper {
    margin-bottom: 50px;

}
.swiper-slide.news-list-slider__item{
    border: 1px solid var(--base-color-3);
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: auto;
    align-items: flex-start;
    position: relative;
    text-decoration: none !important;
}
.swiper-horizontal>.swiper-scrollbar{
    background: var(--base-color-2);
    left: 0% !important;
    bottom: 0px !important;
    height: 3px !important;
    width: 100% !important;
}
.news-list-slider__link{
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    grid-gap: 15px;
    color: var(--base-color-4);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    transition: .2s ease-in-out grid-gap;
}
.news-list-slider__link svg{
}
.news-list-slider__link svg path{
    stroke: var(--base-color-4);
}
.swiper-slide.news-list-slider__item:hover .news-list-slider__link{
    /*color: var(--base-color-5);*/
    grid-gap: 20px;
}
.swiper-slide.news-list-slider__item:hover .news-list-slider__link svg path{
    /*stroke: var(--base-color-5);*/
}
.swiper-scrollbar-drag {
    background: var(--base-color-5);
}
.news-list-slider__title{
    font-weight: 700;
    max-width: 360px;
    font-size: 1.2em;
}
.news-list-slider__text{
    max-width: 360px;
}
@media screen and (max-width: 1250px) {
    .news-list-slider .swiper-wrapper {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 768px) {
    .news-list-slider__text{
    }
    .news-list-slider__link{
        font-size: 14px;
        grid-gap: 10px;
    }
    .news-list-slider__link svg{
        width: 7px;
    }
    .swiper-slide.news-list-slider__item{
        padding: 15px;
    }
}
@media screen and (max-width: 600px) {
    .news-list-slider .swiper-wrapper {
        margin-bottom: 20px;
    }
}







