*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.wow {
  visibility: hidden;
}

body {
    color: #262626;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Montserrat-Regular";
    overflow-x: hidden;
}

.fancybox__thumbs {
    display: none;
}

p {
    margin-bottom: 16px;
}
p:last-of-type {
    margin-bottom: 0;
}

strong {
    font-family: "Montserrat-SemiBold";
    font-weight: normal;
}

.btn-foot-back {
    display: table;
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    margin: 60px auto 0 auto;
    padding: 14px 24px 14px 60px;
    border-radius: 43px;
    border: 2px solid #262626;
    background-image: url(../img/page-back.svg);
    background-repeat: no-repeat;
    background-position: left 24px center;
    background-size: 27px;
    transition: all .35s ease;
}
.btn-foot-back:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}

.wrapper {
    height: auto;
    min-height: 100dvh;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.header {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 0.12);
    z-index: 9;
}
.header__container {
    width: 1170px;
    margin: 0 auto;
    padding: 13px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header__logo {
    display: block;
    width: 205px;
    margin-right: 20px;
}
.header__logo img {
    display: block;
    width: 100%;
    height: auto;
}
.header__wrap-nav {
    flex-grow: 1;
}
.header__wrap-search {
    width: 44px;
    height: 44px;
    position: relative;
}
.header__search {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background-color: #f2f2f2;
    border: 1px solid #262626;
    border-radius: 44px;
    transition: all .35s ease;
	cursor: pointer;
}
.header__search.open {
    width: 253px;
}
.header__search-btn {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background-image: url(../img/ico-search.svg);
    background-repeat: no-repeat;
    background-position: top 12px right 11px;
    background-size: 20px;
    background-color: #f2f2f2;
    border: none;
}

.header__search .header__search-input {
	top: 10px;
}
.header__search .header__search-input,
.header__search .header__search-btn {
	pointer-events: none;
}

.header__search.open .header__search-input,
.header__search.open .header__search-btn {
	pointer-events: auto;
}

.header__search-input {
    width: 185px;
    height: 24px;
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 0px;
    font-size: 15px;
    font-family: "Montserrat-Regular";
    color: #262626;
    border: none;
    background-color: transparent;
    
    transition: all .35s ease;
}
.header__search.open .header__search-input {
    opacity: 1;
}
.header__search-input::placeholder {
    color: #262626;
    transition: all .35s ease;
}
.header__search-input:focus::placeholder {
    opacity: 0.5;
}

.header__phones {
    position: relative;
    margin-left: 16px;
}

.header__phones-button {
    position: relative;
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #262626;
    border-radius: 50%;
    background-color: #F2B800;
    box-shadow: 0 0 0 0 rgba(242, 184, 0, 0.34);
    cursor: pointer;
    transition: background-color .35s ease, transform .35s ease, box-shadow .35s ease;
    animation: phone-button-pulse 2.2s ease-out infinite;
}

.header__phones-button:hover {
    background-color: #ffd04d;
}

.header__phones-button::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url(../img/ico-phone.svg) no-repeat center / contain;
    transform-origin: center;
    animation: phone-icon-pulse 2.8s ease-in-out infinite;
}

.header__phones-button-text {
    display: none;
}

.header__phones-dropdown {
    position: absolute;
    top: 52px;
    right: 0;
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease;
}

.header__phones.open .header__phones-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.header__phones-dropdown a {
    color: #262626;
    font-size: 16px;
    line-height: 1.3;
    font-family: "Montserrat-SemiBold";
    text-decoration: none;
    white-space: nowrap;
    transition: color .35s ease;
}

.header__phones-dropdown a:hover {
    color: #F2B800;
}

.language {
    display: block;
    width: auto;
    height: 36px;
    background-color: #F2B800;
    position: relative;
    border-radius: 33px;
    margin-left: 24px;
}
.language::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    right: 13px;
    width: 13px;
    height: 7px;
    background-image: url(../img/arrow-d.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .35s ease;
}
.language.open::after {
    transform: rotateZ(180deg);
}
.language__current {
    width: 100%;
    min-width: 80px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-right: 34px;
    padding-left: 15px;
    font-family: "Montserrat-SemiBold";
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.language__dropdown {
    width: 325px;
    height: auto;
    background-color: #F2B800;
    padding: 21px 30px;
    border-radius: 16px;
    position: absolute;
    right: 0;
    top: 45px;
    list-style: none;
    columns: 2;
    column-gap: 30px;
    break-inside: avoid;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    transition: all .35s ease-in-out;
}
.language.open .language__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.language__dropdown li {
    padding: 9px;
}
.language__dropdown li a {
    display: inline;
    color: #262626;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-family: "Montserrat-Medium";
    transition: all .35s ease;
}
.language__dropdown li a:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
.language__dropdown li.wpml-ls-current-language a {
    background-color: #fff;
}

.nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.nav__item {
    margin-left: 10px;
    margin-right: 10px;
}
.nav__item > a {
    display: table;
    color: #262626;
    font-size: 15px;
    line-height: 24px;
    text-decoration: none;
    font-family: "Montserrat-Medium";
    transition: all .35s ease;
}
.nav__item.dropdown {
    display: flex;
    flex-wrap: nowrap;
}
.nav__item.dropdown > a {
    display: table;
}
.nav__item-caret {
    display: block;
    width: 19px;
    height: 24px;
    background-image: url(../img/arrow-d.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px;
    order: 2;
    cursor: pointer;
    transition: all .35s ease;
    
}
.nav__dropdown {
    display: flex;
    /*justify-content: space-between;*/
	justify-content: start;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #637251;
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease;
	flex-wrap: wrap;
}


.nav__dropdown::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 26px;
    left: 0;
    top: -24px;
    background-color: transparent;
}
.company .nav__dropdown {
    padding: 18px calc((100% - 660px)/2);
}

.products .nav__dropdown {
    padding: 18px calc((100% - 1170px)/2);
}

.parts .nav__dropdown {
    padding: 18px calc((100% - 1016px)/2);
}

.media .nav__dropdown {
    padding: 18px calc((100% - 610px)/2);
}

.contacts .nav__dropdown {
    padding: 18px calc((100% - 600px)/2);
}

.nav__dropdown > li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	/*min-width: 33%;*/
	width: 33%;
}

.contacts .nav__dropdown > li {
	min-width: 50%;
}

.nav__dropdown > li a {
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    text-decoration: none;
    font-family: "Montserrat-Medium";
    margin: 8px 0 8px 24px;
    position: relative;
}
.nav__dropdown > li a::after {
    content: "";
    display: block;
    position: absolute;
    left: -24px;
    top: 0;
    width: 16px;
    height: 18px;
    background-image: url(../img/ico-subnav.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.nav__dropdown > li a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.header__nav-close {
    display: none;
}
.header__nav-back {
    display: none;
}

.nav-search {
    display: none;
}

.burger {
    cursor: pointer;
    display: none;
    width: 32px;
    height: 32px;
    margin-left: 24px;
    background-image: url(../img/burger.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.main {
    flex-grow: 1;
    padding-bottom: 80px;
	width: 100%;
}

.first-screen {
    width: 100dvw;
    height: auto;
}
.first-screen__item {
    width: 100dvw;
    height: auto;
    overflow: hidden;
    position: relative;
}
.first-screen__item > picture {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.first-screen__item > picture > img,
.first-screen__item > img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 5s linear;
}
.first-screen__item > picture > img.zoom,
.first-screen__item > img.zoom {
    transform: scale(1.05);
}
.first-screen__item-desc {
    width: 1170px;
    height: calc(100dvh - 70px);
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.first-screen__item-desc-title {
    color: #fff;
    /*font-size: 70px;*/
    font-size: 64px;
    line-height: 1.2;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    text-transform: uppercase;
    margin-bottom: 21px;
    transform: translateX(-110%);
    opacity: 0;
    transition: all 1s ease;
}
.first-screen__item.is-active .first-screen__item-desc .first-screen__item-desc-title {
    transform: translateX(0);
    opacity: 1;
}
.first-screen__item-desc-text {
    color: #fff;
    font-size: 45px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    margin-bottom: 42px;
    transform: translateX(-110%);
    opacity: 0;
    transition: all 1s ease .2s;
}
.first-screen__item.is-active .first-screen__item-desc .first-screen__item-desc-text {
    transform: translateX(0);
    opacity: 1;
}
.first-screen__item-desc-more {
    display: table;
    color: #262626;
    font-size: 20px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 43px;
    background-color: #F2B800;
    transition: opacity 0.8s ease 0.9s, background-color 0.35s ease;
    opacity: 0;
}
.first-screen__item.is-active .first-screen__item-desc .first-screen__item-desc-more {
    opacity: 1;
}

.first-screen__item-desc-more:hover {
    background-color: #fff;
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}


.first-screen .slick-dots {
    bottom: 34px;
}
.first-screen .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 8px;
}
.first-screen .slick-dots li button {
    display: block;
    width: 40px;
    height: 6px;
    background-color: #fff;
    padding: 0;
    transition: all .35s ease;
}
.first-screen .slick-dots li.slick-active button {
    background-color: #F9C623;
}
.first-screen .slick-dots li button::before {
    display: none;
}

.page-title {
    color: #fff;
    background-color: #3E4430;
    padding: 52px 0;
    margin-bottom: 32px;
}
.page-title_container {
    width: 1170px;
    margin: 0 auto;
}
.page-title h1 {
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Otoiwo-Grotesk-Bold-Wide";
    font-weight: 800;
}

.page-bn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}
.page-bn__back,
.page-bn__next {
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    padding: 13px 23px;
    border-radius: 43px;
    border: 2px solid #262626;
    margin-left: 8px;
    margin-right: 8px;
    transition: all .35s ease;
}

.page-bn__back a,
.page-bn__next a {
	color: #262626;
	text-decoration: none;
}

.page-bn__back:hover,
.page-bn__next:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}
.page-bn__back {
    padding-left: 60px;
    background-image: url(../img/page-back.svg);
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size: 27px;
}
.page-bn__next {
    padding-right: 60px;
    background-image: url(../img/page-next.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 27px;
}

.breadcrumbs {
    width: 1170px;
    margin: 0 auto 24px auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.2;
}
.breadcrumbs > span {
    color: rgba(38, 38, 38, 0.6);
    margin-bottom: 6px;
}
.breadcrumbs > span::after {
    content: "/";
    padding: 0 10px;
    color: rgba(38, 38, 38, 1);
}
.breadcrumbs > span:last-of-type::after {
    display: none;
}
.breadcrumbs span a {
    color: rgba(38, 38, 38, 1);
    text-decoration: none;
    transition: all .35s ease;
}
.breadcrumbs span a:hover {
    color: #637251;
}

.calendar {
    width: 1170px;
    min-height: 400px;
    margin-left: auto;
    margin-right: auto;
}
.calendar-table {
    overflow-x: auto;
}
.calendar-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: auto;
    min-width: 720px;
}
.calendar-table th, td {
    padding: 10px 16px;
    text-align: left;
    font-size: 15px;
    line-height: 1.5;
    white-space: nowrap;
	word-break: normal !important;
}
.calendar-table thead th {
    font-family: "Montserrat-SemiBold";
    font-weight: normal;
    color: #333;
}
.calendar-table tbody tr:nth-child(odd) td {
    background-color: #dce8cc;
}
.calendar-table tbody tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.calendar-table tbody tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.calendar-table th:first-child, .calendar-table td:first-child {
    width: 200px;
    text-align: center;
}
.calendar-table th:nth-child(2), .calendar-table td:nth-child(2) {
    width: 670px;
    text-align: center;
}
.calendar-table th:last-child, .calendar-table td:last-child {
    width: 300px;
    text-align: center;
}
.calendar-table a {
    color: #355e2c;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.history {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.history__grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.history__grid-item {
    width: 100%;
    margin-bottom: 24px;
    padding: 32px;
    background-color: #f2f2f2;
    border-radius: 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.history__grid-year {
    width: 115px;
    height: 105px;
    margin-right: 40px;
    align-self: flex-start;
    margin-top: 38px;
    color: #637251;
    font-size: 32px;
    font-family: "Otoiwo-Grotesk-Bold-Wide";
    font-weight: 800;
    text-align: center;
    background-image: url(../img/ico-history.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 30px;
}
.history__grid-media {
    display: block;
    width: 245px;
    height: auto;
    border-radius: 36px;
    overflow: hidden;
    margin-right: 40px;
    align-self: flex-start;
}
.history__grid-media img {
    display: block;
    width: 100%;
    height: auto;
	background: #fff;
}
.history__grid-text {
    width: 660px;
}
.history__text-footer {
    font-family: "Montserrat-Medium";
    font-size: 20px;
}
.history ul {
    list-style: none;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 14px;
}
.history ul li {
    padding-left: 20px;
    position: relative;
}
.history ul li::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #262626;
    position: absolute;
    left: 7px;
    top: 10px;
}

.news-list {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.news-list__title {
    font-size: 20px;
    line-height: 1.2;
    font-family: "Otoiwo-Grotesk-Bold-Wide";
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.news-list__grid {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.news-list__item {
    padding: 16px;
    background-color: #f2f2f2;
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: all .35s ease;
}
.news-list__item:hover {
    background-color: #D9E4CE;
}
.news-list__item + .news-list__item {
    margin-top: 24px;
}
.news-list__media {
    display: block;
    width: 287px;
    height: auto;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
}
.news-list__media img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all .8s linear;
	background: #fff;
}
.news-list__media:hover img {
    transform: scale(1.05);
}
.news-list__desc {
    width: calc(100% - 287px);
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.news-list__desc-title {
    display: inline-block;
    color: #3E4430;
    font-size: 22px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    margin-bottom: 8px;
}
.news-list__desc-title:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.news-list__desc-date {
    color: #637251;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.news-list__desc-text {
    display: block;
}
.news-list__desc-text p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 16px;
}
.news-list__desc-more {
    display: table;
    color: #262626;
    padding: 12px 40px;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    font-family: "Montserrat-SemiBold";
    background-color: #fff;
    border-radius: 43px;
    border: 2px solid #262626;
    transition: all .35s ease;
}
.news-list__desc-more:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}

.search-results__meta {
    margin-bottom: 32px;
    max-width: 860px;
}

.search-results__section + .search-results__section {
    margin-top: 40px;
}

.search-results__cta {
    display: flex;
    justify-content: center;
    margin: 32px 0 80px;
}

.search-results__section-title {
    color: #3E4430;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Otoiwo-Grotesk-Bold-Wide";
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.search-results__section-text {
    color: rgba(38, 38, 38, 0.72);
    margin-bottom: 20px;
}

.search-results__eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.search-results__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 16px;
    border-radius: 999px;
    color: #262626;
    font-size: 13px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-transform: uppercase;
    background-color: #F2B800;
}

.news-list__item--best {
    padding: 24px;
    background: linear-gradient(135deg, #fff9e1 0%, #eef4e7 100%);
    border: 2px solid #F2B800;
    box-shadow: 0 18px 34px rgba(62, 68, 48, 0.12);
}

.news-list__item--best:hover {
    background: linear-gradient(135deg, #fff4c1 0%, #e3edda 100%);
}

.news-list__item--best .news-list__desc-title {
    font-size: 26px;
}

.career-list {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.career__actions {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
    gap: 16px;
    justify-content: flex-start;
}
.career__action {
	cursor: pointer;
    display: table;
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 43px;
    background-color: #f2f2f2;
    white-space: nowrap;
    transition: all .35s ease;
    border: 0;
    appearance: none;
}
.career__action:hover {
    background-color: #D9E4CE;
}
.career__action.active {
    background-color: #F2B800;
}
.career__grid {
	display: none;
}

.career__grid.active {
    display: flex;
    flex-wrap: wrap;
}

.career__grid-item {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 14px;
    padding: 16px;
    transition: all .35s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.career__grid-item:hover {
    background-color: #D9E4CE;
}
.career__grid-item + .career__grid-item {
    margin-top: 24px;
}
.career__grid-item-media {
    display: block;
    text-decoration: none;
    width: 182px;
    height: auto;
    border-radius: 14px;
    overflow: hidden;
}
.career__grid-item-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .8s linear;
	background: #fff;
}
.career__grid-item-media:hover img {
    transform: scale(1.05);
}
.career__grid-item-desc {
    padding-left: 24px;
    width: calc(100% - 182px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.career__desc-title {
    display: inline-block;
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    margin-bottom: 8px;
}
.career__desc-text {
    display: block;
}
.career__desc-text p {
    margin-bottom: 8px;
}
.career__grid-location {
    margin-bottom: 8px;
    padding-left: 24px;
    background-image: url(../img/ico-location.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px;
}
.career__grid-more {
    display: inline-block;
    color: #262626;
    font-family: "Montserrat-SemiBold";
    font-size: 16px;
    line-height: 1.2;
    padding: 12px 24px;
    background-color: #fff;
    border-radius: 43px;
    text-decoration: none;
    transition: all .35s ease;
}
.career__grid-more:hover {
    background-color: #F2B800;
}

.new-items {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.new-items__head {
    margin-bottom: 32px;
}
.new-items__head p {
    color: #262626;
    font-size: 20px;
    line-height: 1.6;
    font-family: "Montserrat-Medium";
}
.new-items__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.new-items__grid-item {
    background-color: #f2f2f2;
    border-radius: 14px;
    width: calc(50% - 12px);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    transition: all .35s ease;
}
.new-items__grid-item:hover {
    background-color: #D9E4CE;
}
.new-items__grid-media {
    display: block;
    width: calc(50% - 10px);
    height: auto;
    overflow: hidden;
    position: relative;
}
.new-items__grid-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s ease;
}
.new-items__grid-item:hover .new-items__grid-media img {
    transform: scale(1.08);
}
.new-items__grid-label {
    display: table;
    color: #262626;
    font-size: 14px;
    line-height: 1.4;
    font-family: "Montserrat-Bold";
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 50px;
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    background-color: #F2B800;
}
.new-items__grid-desc {
    width: calc(50% - 10px);
    padding: 16px 16px 16px 0;
}
.new-items__item-title {
    display: inline-block;
    color: #3E4430;
    font-size: 22px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    margin-bottom: 10px;
}
.new-items__grid-desc p {
    font-size: 16px;
    line-height: 1.4;
    padding: 0;
}

.service-block {
    width: 100%;
    background-color: #f2f2f2;
    padding: 80px 0;
}
.service__form {
    width: 730px;
    margin-left: auto;
    margin-right: auto;
}
.service__form-title {
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    font-weight: 600;
    margin-bottom: 16px;
}
p.service__form-subtitle {
    display: inline-block;
    font-size: 20px;
    line-height: 1.6;
    font-family: "Montserrat-Medium";
    margin-bottom: 24px;
}
.service__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service__grid-item {
    width: calc(50% - 8px);
}
.service__grid-item input {
    display: block;
    width: 100%;
    height: 48px;
    margin-bottom: 16px;
    background-color: #fff;
    border-radius: 54px;
    border: 1px solid #D3D3D3;
    font-size: 14px;
    color: #262626;
    font-family: "Montserrat-Regular";
    padding: 0 15px;
    transition: all .35s ease;
}
.service__grid-item input:focus {
    border-color: #262626;
}
.service__grid-item input::placeholder {
    color: #262626;
    transition: all .35s ease;
}
.service__grid-item input:focus::placeholder {
    opacity: 0.5;
}
.service__grid-item textarea {
    display: block;
    width: 100%;
    height: 240px;
    resize: none;
    font-size: 14px;
    line-height: 1.4;
    color: #262626;
    font-family: "Montserrat-Regular";
    padding: 10px 15px;
    border-radius: 17px;
    border: 1px solid #D3D3D3;
    transition: all .35s ease;
}
.service__grid-item textarea:focus {
    border-color: #262626;
}
.service__grid-item textarea::placeholder {
    color: #262626;
    transition: all .35s ease;
}
.service__grid-item textarea:focus::placeholder {
    opacity: 0.5;
}

.service__form .wpcf7-submit,
.service__form button {
    color: #262626;
    font-size: 16px;
    line-height: 1;
    font-family: "Montserrat-Bold";
    background-color: transparent;
    padding: 14px 60px;
    border-radius: 43px;
    border: 2px solid #262626;
    cursor: pointer;
    transition: all .35s ease;
}
.service__form .wpcf7-submit:hover,
.service__form button:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}

.service-info {
    background-color: #fff;
    padding: 40px 0 0 0;
    margin-bottom: -16px;
}
.service-info__container {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.typography {
    display: block;
}
.typography.grey {
    background-color: #f2f2f2;
}
.typography__container {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 70px;
    padding-bottom: 70px;
}
.typography-spare h2,
.typography h2 {
    margin: 40px 0 24px 0;
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    font-weight: 800;
}
.typography-spare h2:first-child,
.typography h2:first-child {
    margin-top: 16px;
}
.typography-spare p,
.typography p {
    font-size: 16px;
    line-height: 1.6;
    font-family: "Montserrat-Regular";
    margin: 16px 0;
}

.typography-spare ul,
.typography ul {
    list-style: none;
    margin: 16px 0 16px;
}

.typography-spare ul li,
.typography ul li {
    position: relative;
    padding-left: 24px !important;
    margin: 4px 0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.typography-spare ul li::after,
.typography ul li::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 4px;
    background-image: url(../img/ico-list.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.production .typography ul li::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    left: 8px;
    top: 11px;
    background-color: #262626;
    background-image: none;
}
.typography a {
    color: #355e2c;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.typography h4 {
    font-size: 20px;
    line-height: 1.6;
    font-family: "Montserrat-Medium";
    font-weight: normal;
    margin: 16px 0;
}
.typography ol {
    margin-left: 24px;
}
.typography ol li {
    padding-left: 3px;
}
.typography ol li::marker {
  font-family: "Montserrat-SemiBold";
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 45px;
}
.nav-links .page-numbers {
    margin: 0 8px;
}
.nav-links .page-numbers {
    color: #262626;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    font-family: "Montserrat-Medium";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: all .35s ease;
}
.nav-links .page-numbers:hover {
    background-color: #D9E4CE;
}
.nav-links .page-numbers.current {
    background-color: #F2B800;
    pointer-events: none;
    color: #fff;
}
.nav-links .prev.page-numbers {
    margin-right: 20px;
}
.nav-links .next.page-numbers,
.nav-links .prev.page-numbers {
    margin-left: 20px;
}
.nav-links .prev.page-numbers {
	font-size: 0;
    background-color: transparent !important;
    width: 35px;
    background-image: url(../img/page-prev.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .35s ease;
    opacity: 0.6;
}
.nav-links .next.page-numbers {
	font-size: 0;
    background-color: transparent !important;
    width: 35px;
    background-image: url(../img/page-next.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
    transition: all .35s ease;
}

.nav-links .next.page-numbers:hover,
.nav-links .prev.page-numbers:hover {
    opacity: 1;
}

.pre-footer {
    padding: 46px 0 65px 0;
    background-color: #3E4430;
}
.pre-footer__grid {
    width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pre-footer__grid-item {
    display: block;
}
.pre-footer__grid-item.company {
    width: 105px;
}
.pre-footer__grid-item.products {
    width: 390px;
}
.pre-footer__grid-item.spares {
    width: 160px;
}
.pre-footer__grid-item.service {
    width: 75px;
}
.pre-footer__grid-item.media {
    width: 75px;
}
.pre-footer__grid-item.career {
    width: 85px;
}
.pre-footer__grid-item.contacts {
    width: 110px;
}
.pre-footer__grid-item.products ul {
    columns: 2;
    column-gap: 24px;
}
.pre-footer__grid-item.products ul li {
    width: 180px;
    break-inside: avoid;
}
.pre-footer__grid-item-title {
    color: #F2B800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    display: table;
    margin-bottom: 23px;
    font-family: "Otoiwo-Grotesk-Bold-Wide";
    font-weight: 600;
}
.sub-menu .pre-footer__grid-item-title {
	text-transform: none; 
	font-family: "Montserrat-Regular";
	font-weight: normal;
}

.pre-footer__grid-item ul.sub-menu {
    list-style: none;
    font-size: 14px;
    line-height: 1.4;
}
.pre-footer__grid-item ul.sub-menu li {
    margin-bottom: 10px;
}
.pre-footer__grid-item ul.sub-menu li:last-of-type {
    margin-bottom: 0;
}
.pre-footer__grid-item ul.sub-menu li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.35s ease;
	margin-bottom: 0px;
}
.pre-footer__grid-item ul.sub-menu li a:hover {
    color: #F2B800;
}

.video-grid {
    width: 1170px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.video-grid__item {
    display: block;
    width: calc(33.33333% - 16px);
    background-color: #f2f2f2;
    border-radius: 14px;
    text-decoration: none;
    color: #3E4430;
    overflow: hidden;
}
.video-grid__item-media {
    width: 100%;
    height: auto;
    position: relative;
}
.video-grid__item-media::after {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -24px;
    margin-top: -24px;
    background-image: url(../img/play.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all .35s ease;
}
.video-grid__item:hover .video-grid__item-media::after {
    transform: scale(1.15);
}
.video-grid__item-media img {
    display: block;
    width: 100%;
    height: auto;
	max-height: 209px;
	object-fit: cover;
}
.video-grid__item-title {
    width: 100%;
    padding: 20px 16px;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
}

.certificates__grid {
    width: 1170px;
    height: auto;
    min-height: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.certificates__grid-item {
    display: flex;
    text-decoration: none;
    flex-direction: column;
    justify-content: center;
    width: 274px;
    height: 246px;
    background-color: #f2f2f2;
    border-radius: 14px;
    text-decoration: none;
    color: #3E4430;
    overflow: hidden;
    padding: 0 20px 16px 20px;
    position: relative;
    transition: all .35s ease;
}
.certificates__grid-item:hover {
    padding-bottom: 60px;
    backface-visibility: hidden;
    background-color: #D9E4CE;
}
.certificates__grid-name {
    color: #3E4430;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    padding-top: 76px;
    position: relative;
}
.certificates__grid-name::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 33px;
    height: 60px;
    background-image: url(../img/ico-certf.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.certificates__grid-btn {
    display: block;
    width: calc(100% - 40px);
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    text-decoration: none;
    text-align: center;
    padding: 12px 24px;
    background-color: #fff;
    border-radius: 43px;
    position: absolute;
    left: 20px;
    bottom: 16px;
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease;
}
.certificates__grid-btn:hover {
    background-color: #F2B800;
}
.certificates__grid-item:hover .certificates__grid-btn {
    opacity: 1;
    pointer-events: auto;
}

.spare-parts__grid {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.spare-parts__grid-item {
    display: block;
    text-decoration: none;
    width: 274px;
    height: 226px;
    background-color: #9DB086;
    border-radius: 14px;
    position: relative;
    transition: all .35s ease;
}
.spare-parts__grid-item:hover {
    background-color: #637251;
}
.spare-parts__grid-item-title {
    width: 100%;
    height: auto;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    position: absolute;
    left: 0;
    top: 0;
    padding: 24px;
    transition: all .35s ease;
    z-index: 3;
}
.spare-parts__grid-item:hover .spare-parts__grid-item-title {
    color: #F2B800;
    top: 50%;
    transform: translateY(-50%);
}
.spare-parts__grid-item-bg {
    display: block;
    width: 275px;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    transition: all .35s ease;
}
.spare-parts__grid-item:hover .spare-parts__grid-item-bg {
    opacity: 0.5;
}

.spare-parts-items__filter {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6px 24px;
    border-radius: 36px;
    background-color: #f2f2f2;
    margin: 32px 0 0;
}
.spare-parts-items__filter-name {
    color: #262626;
    font-size: 15px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    margin-top: 9px;
    margin-bottom: 9px;
    margin-right: 20px;
}
.spare-parts-items__filter-wrap-check {
    display: block;
    margin-right: 20px;
    margin-top: 9px;
    margin-bottom: 9px;
}
.spare-parts-items__filter-wrap-check input {
    display: none;
}
.spare-parts-items__filter-wrap-check span {
    font-size: 15px;
    line-height: 18px;
    cursor: pointer;
    padding-left: 28px;
    position: relative;
    transition: all .35s ease;
}
.spare-parts-items__filter-wrap-check span::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/checkbox.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all .35s ease;
}
.spare-parts-items__filter-wrap-check input:checked + span::after {
    background-image: url(../img/checkbox-active.svg);
}
.spare-parts-items__filter-wrap-check input:checked + span {
    color: #637251;
}
.spare-parts-items {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.spare-parts-items__top-title {
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    font-weight: 800;
}
.spare-parts-items__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}
.spare-parts-items__grid-item {
    width: 274px;
    /*height: 285px;*/
    height: 307px;
    position: relative;
}
.pare-parts-items__card-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    background-color: #f2f2f2;
    border-radius: 14px;
}
.pare-parts-items__card-list.hasmore:hover {
    animation: inAnim 0.35s ease forwards;
}
.pare-parts-items__card-list.hasmore:not(:hover) {
    animation: outAnim 0.35s ease forwards;
}
.spare-parts-items__grid-item-media {
    display: block;
    width: 100%;
    height: auto;
    text-decoration: underline;
    position: relative;
    text-decoration: none;
}
.spare-parts-items__grid-item-label {
    display: table;
    color: #262626;
    font-size: 14px;
    line-height: 1.4;
    font-family: "Montserrat-Bold";
    text-transform: uppercase;
    padding: 5px 10px;
    background-color: #F2B800;
    border-radius: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    pointer-events: none;
}
.spare-parts-items__grid-item-media img {
    display: block;
    width: 100%;
    max-width: 274px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.spare-parts-items__grid-item-desc {
    flex-grow: 1;
    transition: all .35s ease;
    padding-left: 16px;
    padding-right: 16px;
}
.pare-parts-items__card-list:hover .spare-parts-items__grid-item-desc {
    background-color: #D9E4CE;
}
.spare-parts-items__title {
    color: #3E4430;
    height: 66px;
    font-size: 18px;
    line-height: 22px;
    font-family: "Montserrat-Bold";
    text-align: center;
    text-decoration: none;
    margin: 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.spare-parts-items__more {
    display: block;
    width: 100%;
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    font-family: "Montserrat-SemiBold";
    padding: 12px 24px;
    background-color: #fff;
    border-radius: 43px;
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease;
}
.spare-parts-items__more:hover {
    background-color: #F2B800;
}
.pare-parts-items__card-list.hasmore:hover .spare-parts-items__more {
    opacity: 1;
    pointer-events: auto;
}
@keyframes inAnim {
  0% {
      height: 100%;
      z-index: 1;
    }
  100% {
      height: calc(100% + 60px);
      z-index: 2;
    }
}
@keyframes outAnim {
  0% {
      height: calc(100% + 60px);
      z-index: 3;
    }
  100% {
      height: 100%;
    }
}

.products-v2__grid {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.products-v2__grid-item {
    display: block;
    width: 274px;
    height: 294px;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f2f2f2;
    text-decoration: none;
    transition: all .35s ease;
}
.products-v2__grid-item:hover {
    background-color: #637251;
}
.products-v2__grid-item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url(../img/product-bg.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.2;
    z-index: 2;
    transition: all .35s ease;
}
.products-v2__grid-item:hover .products-v2__grid-item::after {
    opacity: 1;
}
.products-v2__grid-item-title {
    color: #3E4430;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    position: absolute;
    width: 100%;
    padding: 0 22px;
    left: 0;
    top: 22px;
    z-index: 4;
    transition: all .35s ease;
}
.products-v2__grid-item:hover .products-v2__grid-item-title {
    top: 50%;
    transform: translateY(-50%);
    color: #F2B800;
}
.products-v2__grid-item-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    transition: all .35s ease;
}
.products-v2__grid-item:hover .products-v2__grid-item-bg {
    opacity: 0;
}

.downloads-inner__grid {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.downloads-inner__grid-item {
    width: calc(25% - 18px);
    border-radius: 14px;
    background-color: #f2f2f2;
    overflow: hidden;
}
.downloads-inner__grid-item-media {
    display: block;
    width: 100%;
    height: auto;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}
.downloads-inner__grid-item-media img {
    display: block;
    width: 100%;
    height: auto;
}
.downloads-inner__grid-item-title {
    display: table;
    color: #3E4430;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    text-align: center;
    padding: 0 16px;
    margin: 16px auto;
}
.downloads-inner__grid-item-more {
    display: table;
    width: calc(100% - 32px);
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    text-decoration: none;
    text-align: center;
    padding: 12px 24px;
    margin: 0 auto 16px auto;
    border-radius: 43px;
    background-color: #fff;
    transition: all .35s ease;
}
.downloads-inner__grid-item-more:hover {
    background-color: #F2B800;
}
.downloads-inner__grid-item-country {
    display: block;
    width: 42px;
    height: 30px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    border-radius: 3px;
    pointer-events: none;
    overflow: hidden;
}
.downloads-inner__grid-item-country img {
    display: block;
    width: 100%;
    height: auto;
}

.downloads__grid {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.downloads__grid-item {
    display: block;
    width: calc(25% - 18px);
    aspect-ratio: 100 / 90;
    border-radius: 14px;
    background-color: #f2f2f2;
    text-decoration: none;
    position: relative;
    transition: all .35s ease;
}
.downloads__grid-item:hover {
    background-color: #D9E4CE;
}
.downloads__grid-item-content {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    padding-top: 16px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.downloads__grid-item-media {
    display: block;
    width: 42px;
    height: 30px;
    margin-bottom: 16px;
}
.downloads__grid-item-media img {
    display: block;
    width: 100%;
    height: auto;
}
.downloads__grid-item-title {
    color: #3E4430;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    margin-bottom: 16px;
}
.downloads__grid-item-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    text-decoration: none;
    padding: 2px 10px;
    background-color: #fff;
    border-radius: 43px;
    margin-bottom: -44px;
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease;
}
.downloads__grid-item-btn:hover {
    background-color: #F2B800;
}
.downloads__grid-item:hover .downloads__grid-item-btn {
    margin-bottom: 0;
    opacity: 1;
    pointer-events: auto;
}

.contact-dealers {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.contact-dealers__title {
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    text-transform: uppercase;
    margin-bottom: 32px;
}
.contact-dealers__map {
    display: block;
    width: 100%;
    height: 508px;
    margin-bottom: 40px;
    border-radius: 40px;
    overflow: hidden;
}
.contact-dealers__control {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.contact-dealers__control-item {
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
    font-family: "Montserrat-SemiBold";
    padding: 14px 20px;
    background-color: #f2f2f2;
    border-radius: 43px;
    transition: all .35s ease;
}
.contact-dealers__control-item:hover,
.contact-dealers__control-item.active {
    background-color: #F2B800;
}
.contact-dealers__countries {
    display: block;
    width: 100%;
}
.contact-dealers__countries-title {
    color: #262626;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    margin-bottom: 24px;
}
.contact-dealers__countries-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    grid-row-gap: 16px;
}
.contact-dealers__countries-grid-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(25% - 23px);
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    transition: all .35s ease;
	cursor: pointer;
}
.contact-dealers__countries-grid-item:hover {
    background-color: #D9E4CE;
}
.contact-dealers__countries-grid-item img {
    display: block;
    width: 42px;
    height: auto;
    border-radius: 3px;
}
.contact-dealers__countries-grid-item span {
    display: block;
    width: calc(100% - 42px);
    padding-left: 16px;
}

.contact-dealers__countries-in {
    width: 100%;
	display: none;
}


.contact-dealers__countries-in-head {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.contact-dealers__countries-in-back {
    display: block;
    text-decoration: none;
    width: 27px;
    height: 19px;
    background-image: url(../img/dealers-back.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 24px;
	cursor: pointer;
}
.contact-dealers__countries-in-title {
    color: #262626;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
	width: calc(100% - 52px);
}
.contact-dealers__countries-in-title img {
    display: block;
    width: 34px;
    height: auto;
    border-radius: 3px;
    margin-left: 24px;
}
.contact-dealers__countries-in-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.contact-dealers__countries-in-item {
    width: calc(50% - 12px);
    background-color: #f2f2f2;
    border-radius: 14px;
    padding: 16px 16px 16px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.contact-dealers__countries-in-item-media {
    display: block;
    width: 200px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
}
.contact-dealers__countries-in-item-media img {
    display: block;
    width: 100%;
    height: auto;
	background: #fff;
}
.contact-dealers__countries-in-item-desc {
    width: calc(100% - 200px);
    padding-left: 24px;
}
.contact-dealers__countries-in-item-desc-title {
    color: #3E4430;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    margin-bottom: 8px;
}
.contact-dealers__countries-in-item-desc-title span {
    display: block;
    font-family: "Montserrat-Medium";
}
.contact-dealers__countries-in-item-desc-text {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}
.contact-dealers__countries-in-tel {
    font-family: "Montserrat-Medium";
    /*font-size: 15px;*/
    font-size: 14px;
    line-height: 1.4;
}
.contact-dealers__countries-in-tel strong,
.contact-dealers__countries-in-tel span {
	font-family: "Montserrat-Medium";
    margin-right: 5px;
}

.contact-dealers__countries-in-tel a {
    color: #262626;
    text-decoration: none;
}
.contact-dealers__countries-in-text {
    font-family: "Montserrat-Medium";
    /*font-size: 15px;*/
    font-size: 14px;
    line-height: 1.4;
}
.contact-dealers__countries-in-text strong,
.contact-dealers__countries-in-text span {
	font-family: "Montserrat-Medium";
    margin-right: 5px;
}
.contact-dealers__countries-in-text a {
    color: #637251;
    text-decoration: underline;
}

.contact-dealers__countries-in-text p,
.contact-dealers__countries-in-tel p {
	display: inline;
}

.team {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.team__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}
.team__title {
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    text-transform: uppercase;
    margin-bottom: 32px;
}
.team__header-actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}
.team__cta-button {
    min-width: 0;
    min-height: 52px;
    padding: 14px 22px;
    flex: 0 1 auto;
    white-space: nowrap;
}
.team__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.team__tab {
    display: table;
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 43px;
    background-color: #f2f2f2;
    transition: all .35s ease;
	cursor: pointer;
    border: 0;
    appearance: none;
}
.team__tab:hover,
.team__tab.active {
    background-color: #F2B800;
}
.team__subtitle {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 32px;
    font-family: "Montserrat-SemiBold";
	width: 100%;
}
.team__grid {
    width: 100%;
    display: none;
    flex-wrap: wrap;
    gap: 24px;
}

.team__grid.active {
	display: flex;
}

.team__grid-item {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 12px);
    padding: 16px;
    border-radius: 14px;
    background-color: #f2f2f2;
    position: relative;
}
.team__grid-item-media {
    display: block;
    width: 127px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
}
.team__grid-item-media img {
    display: block;
    width: 100%;
    height: auto;
	background: #fff;
}
.team__grid-item-desc {
    width: calc(100% - 127px);
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.team__grid-item-desc-name {
    color: #3E4430;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    margin-bottom: 8px;
}
.team__grid-item-desc-text {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.team__grid-item-desc-mail {
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}
.team__grid-item-desc-mail a {
    color: #637251;
    font-size: 15px;
    line-height: 1.4;
    font-family: "Montserrat-Medium";
    text-decoration: underline;
    text-underline-offset: 2px;
}
.team__grid-item-desc-tel {
    display: flex;
    flex-direction: column;
}
.team__grid-item-desc-tel a {
    color: #262626;
    font-size: 15px;
    line-height: 1.4;
    font-family: "Montserrat-Medium";
    text-decoration: none;
}
.team__grid-item-label {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}
.team__footer {
    width: 957px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
}
.team__footer img {
    display: block;
    width: 100%;
    height: auto;
}
.team__bottom {
    width: 100%;
}
.team__bottom-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}
.team__bottom-map {
    width: 757px;
}
.team__bottom-map-address {
    margin-bottom: 32px;
}
.team__bottom-map-address span {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    margin-bottom: 16px;
}
.team__bottom-media {
    width: 100%;
    height: 385px;
    border-radius: 36px;
    overflow: hidden;
}
.team__bottom-form {
    width: 357px;
}
.team__bottom-form-title {
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    margin-bottom: 16px;
}
.team__bottom-form-text {
    margin-bottom: 32px;
}
.team__bottom-form input {
    display: block;
    width: 100%;
    height: 48px;
    border-radius: 58px;
    margin-bottom: 16px;
    border: 1px solid #D3D3D3;
    background-color: #f2f2f2;
    padding-left: 16px;
    padding-right: 16px;
    color: #262626;
    font-family: "Montserrat-Regular";
    font-size: 14px;
}
.team__bottom-form input::placeholder {
    color: #262626;
    transition: all .35s ease;
}
.team__bottom-form input:focus::placeholder {
    opacity: 0.5;
}
.team__bottom-form textarea {
    display: block;
    width: 100%;
    height: 128px;
    border-radius: 17px;
    margin-bottom: 16px;
    padding: 10px 16px;
    border: 1px solid #D3D3D3;
    background-color: #f2f2f2;
    color: #262626;
    font-family: "Montserrat-Regular";
    font-size: 14px;
    resize: none;
}
.team__bottom-form textarea::placeholder {
    color: #262626;
    transition: all .35s ease;
}
.team__bottom-form textarea:focus::placeholder {
    opacity: 0.5;
}
.team__bottom-form .wpcf7-submit,
.team__bottom-form button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 208px;
    height: 49px;
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    background-color: #fff;
    border: 2px solid #262626;
    border-radius: 43px;
    cursor: pointer;
    transition: all .35s ease;
}
.team__bottom-form .wpcf7-submit:hover,
.team__bottom-form button:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}

@keyframes action-button-pulse {
    0%,
    100% {
        box-shadow: var(--attention-pulse-base-shadow, none), 0 0 0 0 rgba(242, 184, 0, 0), 0 0 0 0 rgba(242, 184, 0, 0);
        filter: saturate(1) brightness(1);
    }
    45% {
        box-shadow: var(--attention-pulse-base-shadow, none), 0 0 0 10px rgba(242, 184, 0, 0.34), 0 0 30px rgba(242, 184, 0, 0.24);
        filter: saturate(1.08) brightness(1.04);
    }
    75% {
        box-shadow: var(--attention-pulse-base-shadow, none), 0 0 0 18px rgba(242, 184, 0, 0), 0 0 12px rgba(242, 184, 0, 0.12);
        filter: saturate(1.02) brightness(1.01);
    }
}

@keyframes phone-icon-pulse {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-8deg);
    }
    50% {
        transform: scale(1.18) rotate(8deg);
    }
    75% {
        transform: scale(1.08) rotate(-6deg);
    }
}

@keyframes phone-button-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(242, 184, 0, 0.4), 0 0 0 0 rgba(242, 184, 0, 0);
    }
    45% {
        box-shadow: 0 0 0 10px rgba(242, 184, 0, 0.28), 0 0 24px rgba(242, 184, 0, 0.3);
    }
    80% {
        box-shadow: 0 0 0 18px rgba(242, 184, 0, 0), 0 0 8px rgba(242, 184, 0, 0.1);
    }
}

.front-page-actions__btn,
.product-card__main-cta-btn,
.product-card__promo-btn,
.spare-card__promo-btn,
.consultation-float {
    animation: action-button-pulse 2.8s ease-in-out infinite;
}

.front-page-actions__btn,
.consultation-float {
    animation-delay: -0.3s;
}

.product-card__promo-btn,
.spare-card__promo-btn {
    animation-delay: -0.9s;
}

.product-card__main-cta-btn {
    animation-delay: -1.5s;
}

.front-page-actions__btn:hover,
.front-page-actions__btn:focus-visible,
.product-card__main-cta-btn:hover,
.product-card__main-cta-btn:focus-visible,
.product-card__promo-btn:hover,
.product-card__promo-btn:focus-visible,
.spare-card__promo-btn:hover,
.spare-card__promo-btn:focus-visible,
.consultation-float:hover,
.consultation-float:focus-visible,
.header__phones-button:hover,
.header__phones-button:focus-visible {
    animation: none;
    filter: none;
}

.header__phones-button:hover::before,
.header__phones-button:focus-visible::before {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .front-page-actions__btn,
    .product-card__main-cta-btn,
    .product-card__promo-btn,
    .spare-card__promo-btn,
    .consultation-float,
    .header__phones-button,
    .header__phones-button::before {
        animation: none;
    }

    .front-page-actions__btn,
    .product-card__main-cta-btn,
    .product-card__promo-btn,
    .spare-card__promo-btn,
    .consultation-float {
        filter: none;
    }
}

.catalog-grid-wrap {
    background-color: #f2f2f2;
    padding: 80px 0 1px 0;
}
.catalog-grid-head {
    margin-bottom: 40px;
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.catalog-grid-head-title {
    color: #3E4430;
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    font-weight: normal;
}
.catalog-grid-head-btn {
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    padding: 13px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-width: 208px;
    min-height: 49px;
    border-radius: 43px;
    border: 2px solid #262626;
    transition: all .35s ease;
}
.catalog-grid-head-btn:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}
.front-page-actions {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.front-page-actions--after-about {
    margin-top: -8px;
    margin-bottom: 80px;
}

.front-page-actions--catalog {
    margin-top: -40px;
    padding-bottom: 80px;
}

.front-page-actions__btn {
    --attention-pulse-base-shadow: 0 16px 32px rgba(242, 184, 0, 0.22);
    min-width: 320px;
    min-height: 58px;
    padding: 16px 32px;
    color: #262626;
    font-size: 18px;
    line-height: 1.25;
    border-color: #F2B800;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    background-color: #F2B800;
    box-shadow: 0 16px 32px rgba(242, 184, 0, 0.22);
    appearance: none;
    cursor: pointer;
}

.front-page-actions__btn:hover {
    color: #fff;
    background-color: #262626;
    border-color: #262626;
    box-shadow: 0 16px 32px rgba(38, 38, 38, 0.2);
    transform: translateY(-2px);
}
.catalog-grid {
    width: 1170px;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
    margin-bottom: 80px;
}
.catalog-grid + .pager {
    margin-top: -18px;
    margin-bottom: 80px;
}
.catalog-grid__item {
    width: calc(25% - 18px);
    /*height: 353px;*/
    height: 393px;
    position: relative;
}
.catalog-grid__item-label {
    color: #262626;
    font-size: 14px;
    line-height: 1.4;
    font-family: "Montserrat-Bold";
    padding: 5px 10px;
    background-color: #F2B800;
    border-radius: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    pointer-events: none;
}
.catalog-grid__item-card {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    transition: all .35s ease;
}
.catalog-grid__item-card:hover {
    animation: inAnim 0.35s ease forwards;
}
.catalog-grid__item-card:not(:hover) {
    animation: outAnim 0.35s ease forwards;
}
.catalog-grid__item-media {
    display: block;
    width: 100%;
    height: auto;
    text-decoration: none;
    overflow: hidden;
}
.catalog-grid__item-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .35s linear;
	background: #e5e5e5;
}
.catalog-grid__item-card:hover .catalog-grid__item-media img {
    transform: scale(1.1);
}
.catalog-grid__item-desc {
    padding: 20px 16px 24px 16px;
    background-color: #f2f2f2;
    min-height: 100%;
    transition: all .35s ease;
}
.catalog-grid-wrap .catalog-grid__item-desc {
    background-color: #fff;
}
.catalog-grid__item-card:hover .catalog-grid__item-desc {
    background-color: #D9E4CE;
}
.catalog-grid__item-desc-title {
    display: table;
    color: #3E4430;
    font-size: 20px;
    line-height: 24px;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.catalog-grid__item-desc-spec {
    font-size: 14px;
    line-height: 1.4;
}

.catalog-grid__item-desc-spec p strong{
	display: inline-block;
    max-width: 83%;
}

.catalog-grid__item-desc-spec span {
    font-family: "Montserrat-SemiBold";
}
.catalog-grid__item-desc-more {
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 32px);
    height: 44px;
    background-color: #fff;
    border-radius: 43px;
    margin-top: 16px;
    transition: all .2s ease;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    bottom: 20px;
    left: 16px;
}
.catalog-grid__item-desc-more:hover {
    background-color: #F2B800;
}
.catalog-grid__item-card:hover .catalog-grid__item-desc-more {
    opacity: 1;
    pointer-events: auto;
}

.digest {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 80px;
}
.digest__events {
    width: 461px;
}
.digest__events-head {
    width: 100%;
    margin-bottom: 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.digest__events-head-title {
    color: #3E4430;
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Otoiwo-Grotesk-Bold-Wide";
    font-weight: normal;
}

.digest__events-head > .article__aside-title {
	width: 100%;
}

.digest__events-head-more {
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    display: table;
    min-width: 180px;
    padding: 13px 25px;
    border-radius: 43px;
    text-align: center;
    border: 2px solid #262626;
    transition: all .35s ease;
}
.digest__events-head-more:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}
.digest__events-item {
    display: block;
    padding: 16px;
    border-radius: 14px;
    background-color: #f2f2f2;
    text-decoration: none;
    transition: all .35s ease;
}
.digest__events-item:hover {
    background-color: #D9E4CE;
}
.digest__events-item + .digest__events-item {
    margin-top: 16px;
}
.digest__events-item-date {
    color: #262626;
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}
.digest__events-item-date::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/date.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.digest__events-item-title {
    display: table;
    color: #3E4430;
    font-size: 22px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    margin-bottom: 8px;
}
.digest__events-item-title:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.digest__events-item-location {
     color: #262626;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}
.digest__events-item-location::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 4px;
    background-image: url(../img/location.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.digest__news {
    width: 661px;
}
.digest__news-head {
    width: 100%;
    margin-bottom: 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.digest__news-head-title {
    color: #3E4430;
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Otoiwo-Grotesk-Bold-Wide";
    font-weight: normal;
}
.digest__news-head-more {
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    display: table;
    min-width: 180px;
    padding: 13px 25px;
    border-radius: 43px;
    text-align: center;
    border: 2px solid #262626;
    transition: all .35s ease;
}
.digest__news-head-more:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}
.digest__news-item {
    width: 100%;
    height: auto;
    background-color: #f2f2f2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: all .35s ease;
}
.digest__news-item:hover {
    background-color: #D9E4CE;
}
.digest__news-item + .digest__news-item {
    margin-top: 16px;
}
.digest__news-item-media {
    width: 216px;
    height: auto;
    overflow: hidden;
}
.digest__news-item-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .5s ease;
}
.digest__news-item:hover .digest__news-item-media img {
    transform: scale(1.05);
}
.digest__news-item-desc {
    width: calc(100% - 216px);
    padding: 16px;
}
.digest__news-item-title {
    color: #3E4430;
    font-size: 22px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    margin-bottom: 16px;
}
.digest__news-item-title:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.digest__news-item-text {
    color: #262626;
    font-size: 15px;
    line-height: 1.4;
}

.block-about {
    width: 1170px;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.block-about__content {
    width: 730px;
}
.block-about__content-title {
    color: #3E4430;
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    font-weight: normal;
    margin-bottom: 24px;
}
.block-about__content-subtitle {
    font-size: 24px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    margin-bottom: 24px;
}
.block-about__media {
    width: 360px;
    min-height: 750px;
    position: relative;
}
.block-about__media img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    border-radius: 32px;
}

.stats {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 36px;
}
.stat {
    width: calc(33.33333% - 16px);
    height: 184px;
    background-color: #637251;
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stat-number {
    color: #F2B800;
    font-size: 31px;
    line-height: 1;
    font-family: "Otoiwo-Grotesk-Bold-Wide";
    text-align: center;
    margin-bottom: 8px;
}
.stat-text p,
.stat-text {
    margin: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
    font-family: "Montserrat-Medium";
    text-align: center;
}

.production {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.production__stats {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
	margin-bottom: 40px;
}
.production__stats-item {
    width: 775px;
}
.production__stats-media {
    width: 355px;
    height: auto;
    position: relative;
}
.production__stats-media img {
    display: block;
    width: auto;
    height: 392px;
    border-radius: 32px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.block-wrap-slider {
    width: 832px;
    height: auto;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}
.block__slider-for {
    margin-bottom: 14px;
}
.block__slider-for-item {
    border-radius: 36px;
	cursor: zoom-in;
    overflow: hidden;
}
.block__slider-for-item img {
    display: block;
    width: 100%;
    height: auto;
}

.block__slider-nav-item {
    border-radius: 20px;
    padding: 10px;
}
.block__slider-nav-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    cursor: pointer;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all .35s ease;
}
.block__slider-nav-item.slick-current img {
    filter: grayscale(0);
    opacity: 1;
}

.article {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.article .block-wrap-slider {
    display: block;
}
.article__content {
    width: 832px;
}
.article__content.full {
    width: 100%;
}
.article__content h2:first-of-type {
    margin-top: 0;
}
.article__aside {
    width: 298px;
}
.article__aside-title {
    font-size: 22px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    margin-bottom: 32px;
}
.article__aside-item {
    display: block;
    margin-bottom: 24px;
    background-color: #f2f2f2;
    border-radius: 14px;
    overflow: hidden;
}
.article__aside-item-media {
    display: block;
    width: 100%;
    height: auto;
    text-decoration: none;
    overflow: hidden;
}
.article__aside-item-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .8s ease;
}
.article__aside-item:hover .article__aside-item-media img {
    transform: scale(1.05);
}
.article__aside-item-desc {
    display: block;
    width: 100%;
    height: auto;
    padding: 16px;
}
.article__aside-item-title {
    display: table;
    color: #3E4430;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
}
.article__aside-bottom {
    display: block;
    width: 100%;
    height: auto;
}
.article__aside-more {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 49px;
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    border: 2px solid #262626;
    border-radius: 43px;
    transition: all .35s ease;
}
.article__aside-more:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}
.wp-block-table,
.article-table {
    overflow-x: auto;
}
.wp-block-table td, .wp-block-table th {
    border: none !important;
}
.wp-block-table table,
.article-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    /*table-layout: fixed;*/
	 table-layout: auto !important;
    min-width: 832px;
}
.wp-block-table th, .wp-block-table td,
.article-table th, .article-table td {
    padding: 10px 16px;
    /*text-align: center;*/
    font-size: 15px;
    line-height: 1.5;
    white-space: normal;
}
.wp-block-table thead th,
.article-table thead th {
    font-family: "Montserrat-SemiBold";
    font-weight: normal;
    color: #333;
}
.wp-block-table tbody tr:nth-child(odd) td,
.article-table tbody tr:nth-child(odd) td {
    background-color: #dce8cc;
}
.wp-block-table tbody tr td:first-child,
.article-table tbody tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.wp-block-table tbody tr td:last-child,
.article-table tbody tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.wp-block-table th:first-child, .wp-block-table td:first-child,
.article-table th:first-child, .article-table td:first-child {
    max-width: 300px;
    text-align: left;
}
.wp-block-table a,
.article-table a {
    color: #355e2c;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-card {
    display: block;
    width: 100%;
}
.product-card__header {
    width: 1170px;
    margin: 0 auto;
}
.product-card__header-title {
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    font-weight: normal;
    margin-bottom: 32px;
}
.product-card__header-media {
    display: block;
    width: 913px;
    height: auto;
    margin: 0 auto;
}
.product-card__header-media img {
    display: block;
    width: 100%;
    height: auto;
}

.product-card__summary {
    padding: 25px 0;
    background-color: #3E4430;
}
.product-card__summary-grid {
    width: 1170px;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-card__summary-grid-item {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
}
.product-card__summary-grid-item span {
    color: #F2B800;
    font-size: 24px;
    line-height: 1;
    font-family: "Montserrat-Bold";
    margin-top: 4px;
}

.product-card__main-cta {
    width: 1170px;
    margin: 32px auto 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card__main-cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    min-height: 64px;
    padding: 18px 34px;
    border-radius: 43px;
    border: 2px solid #262626;
    font-size: 18px;
    line-height: 1.25;
    font-family: "Montserrat-Bold";
    text-align: center;
    text-decoration: none;
    appearance: none;
    cursor: pointer;
    transition: all .35s ease;
}

.product-card__main-cta-btn--primary {
    --attention-pulse-base-shadow: 0 16px 32px rgba(242, 184, 0, 0.22);
    color: #262626;
    background-color: #F2B800;
    border-color: #F2B800;
    box-shadow: 0 16px 32px rgba(242, 184, 0, 0.22);
}

.product-card__main-cta-btn--primary:hover {
    color: #fff;
    background-color: #262626;
    border-color: #262626;
    box-shadow: 0 16px 32px rgba(38, 38, 38, 0.2);
}

.product-card__main-cta-btn--secondary {
    color: #262626;
    background-color: #fff;
}

.product-card__main-cta-btn--secondary:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}

.product-card__promo {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}
.product-card__promo-media {
    display: block;
    width: 100%;
    height: auto;
}
.product-card__promo-media img {
    display: block;
    width: 100%;
    height: auto;
}
.product-card__promo-btn {
    --attention-pulse-base-shadow: 0 16px 32px rgba(242, 184, 0, 0.22);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    max-width: calc(100% - 40px);
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
    color: #262626;
    font-size: 20px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    padding: 18px 39px;
    background-color: #F2B800;
    border: 2px solid #F2B800;
    box-shadow: 0 16px 32px rgba(242, 184, 0, 0.22);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 43px;
    cursor: pointer;
    transition: all .35s ease;
}
.product-card__promo-btn:hover {
    color: #fff;
    background-color: #262626;
    border-color: #262626;
    box-shadow: 0 16px 32px rgba(38, 38, 38, 0.2);
}

.product-card__specs {
    width: 914px;
    margin: 0 auto;
    padding: 80px 0;
}
.product-card__specs-title {
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.specs-table table {
    width: 100%;
    min-width: 900px;
    overflow-x: auto;
	border: transparent;
    border-collapse: collapse;
    table-layout: auto;
    
    display: block;
}

.specs-table td {
    padding: 10px 16px;
    font-size: 16px;
    line-height: 1.7;
}
.specs-table tr:nth-child(odd) {
    background-color: #D9E4CE;
}
.specs-table td:first-of-type {
    width: 100%;
    text-align: left;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
	font-family: 'Montserrat-Medium';
	padding-left: 32px;
}

.specs-table td[colspan="2"]  {
	font-family: "Montserrat-SemiBold";
}

.specs-table table.rowtable td[rowspan] {
  border-bottom: 1px solid #ccc;  
}

.typography table td.bg-td,
.specs-table table td.bg-td {
    background-color: #D9E4CE;
}

.typography table .bg-white,
.typography table .bg-white td {
	background-color: #FFF !important;
}

.specs-table td:last-of-type {
    /*min-width: 200px;
    text-align: center;
    white-space: nowrap;
    font-size: 18px;*/
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.specs-table h2 {
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 32px;
}


.specs-table ul {
    list-style: none;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 16px;
	margin-bottom: 16px;
	overflow: hidden;
}

.specs-table .alignleft {
    float: left;
    margin: 0 30px 30px 0;
}

.specs-table ul li {
    margin-top: 4px;
    margin-bottom: 4px;
    padding-left: 24px;
    position: relative;
}
.specs-table ul li::after {
    content: "";
    display: block;
    width: 15px;
    height: 18px;
    background-image: url(../img/ico-list.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 3px;
}

.product-card__description {
    display: block;
    width: 100%;
    padding: 60px 0;
    background-color: #f2f2f2;
}
.product-card__description-body {
    width: 1170px;
    margin: 0 auto;
}

.product-card__features {
    padding: 80px 0 0 0;
}
.product-card__features .block-wrap-slider {
    width: 914px;
    margin-top: 0;
}
.product-card__features-grid {
    width: 1170px;
    margin: 80px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.product-card__features-grid-desc {
    width: 609px;
}
.product-card__features-grid-desc h2 {
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: normal;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    margin-bottom: 24px;
}
.product-card__features-grid-desc ul {
    list-style: none;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 16px;
}
.product-card__features-grid-desc ul li {
    margin-top: 4px;
    margin-bottom: 4px;
    padding-left: 24px;
    position: relative;
}
.product-card__features-grid-desc ul li::after {
    content: "";
    display: block;
    width: 15px;
    height: 18px;
    background-image: url(../img/ico-list.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 3px;
}
.product-card__features-grid-media {
    width: 521px;
    border-radius: 36px;
    overflow: hidden;
}
.product-card__features-grid-media img {
    display: block;
    width: 100%;
    height: auto;
}

.product-card__options {
    width: 914px;
    margin: 80px auto 0;
    background-color: #f2f2f2;
    border-radius: 36px;
    padding: 24px;
}
.product-card__options-title {
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: normal;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    margin-bottom: 16px;
}


.accordion {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #262626;
}
.accordion:last-of-type {
    border: none;
}
.accordion-header {
    cursor: pointer;
    font-size: 16px;
    line-height: 1.6;
    user-select: none;
    font-family: "Montserrat-SemiBold";
    position: relative;
    padding-right: 25px;
}
.accordion-header::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../img/accordion.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.accordion.open .accordion-header::after {
    background-image: url(../img/accordion-open.svg);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease-out;
}
.accordion.open .accordion-body {
    opacity: 1;
}
.accordion-body__content {
    padding-top: 8px;
}

.wp-block-ub-content-toggle-accordion {
    width: 100%;
    padding: 16px 0;
	margin: 0 !important;
	border: none;
    border-bottom: 1px solid #262626 !important;
}
.wp-block-ub-content-toggle-accordion:last-of-type {
    border: none !important;
}

.wp-block-ub-content-toggle-accordion-title {
    cursor: pointer;
    font-size: 16px;
    line-height: 1.6;
    user-select: none;
    font-family: "Montserrat-SemiBold";
    position: relative;
	padding: 0 !important;
}

.wp-block-ub-content-toggle-accordion-content-wrap {
	padding: 0 !important;
	padding-top: 8px !important;
}

.product-card__videos {
    width: 1170px;
    margin: 80px auto 0;
}
.product-card__videos-title {
    color: #3E4430;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: normal;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    text-align: center;
    margin-bottom: 40px;
}
.product-card__videos-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
	justify-content: center;
}
.product-card__videos-grid-item {
    display: block;
    width: calc(50% - 16px);
    height: auto;
    text-decoration: none;
    position: relative;
    border-radius: 36px;
    overflow: hidden;
}
.product-card__videos-grid-item::after {
    content: "";
    display: block;
    width: 92px;
    height: 92px;
    background-image: url(../img/play.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -46px;
    margin-top: -46px;
    transition: all .35s ease;
}
.product-card__videos-grid-item:hover::after {
    transform: scale(1.1);
}
.product-card__videos-grid-item img {
    display: block;
    width: 100%;
    height: auto;
	max-height: 385px;
	object-fit: cover;
	background: #f2f2f2;
}
.product-card__nav {
    width: 1170px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.product-card__nav-back {
    display: table;
    color: #262626;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    padding: 13px 24px 13px 60px;
    border-radius: 43px;
    border: 2px solid #262626;
    background-image: url(../img/dealers-back.svg);
    background-repeat: no-repeat;
    background-position: left 22px center;
    background-size: 27px;
    transition: all .35s ease;
}
.product-card__nav-back:hover {
    background-color: #F2B800;
    border-color: #F2B800;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent !important;
    color: transparent;
    font-size: 0;
    line-height: 0;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
}
.slick-prev {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../img/slide-prev.svg) !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    left: 25px;
    z-index: 2;
}
.slick-next {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../img/slide-next.svg) !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    right: 25px;
    z-index: 2;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    opacity: .35;
    cursor: default;
}

.form-popup {
    width: 396px;
    height: auto;
    padding: 40px 30px;
    border-radius: 36px;
    background-color: #fff;
    position: relative;
}

.form-popup__img {
    margin: 30px auto;
    display: block;
}

.form-popup__title {
    color: #3E4430;
    font-size: 24px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    font-weight: normal;
    margin-bottom: 24px;
}

.form-popup__subtitle {
    color: #3E4430;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Montserrat-SemiBold";
    font-weight: normal;
    margin-bottom: 24px;
	text-align: center;
}

.form-popup input {
    color: #262626;
    width: 100%;
    height: 48px;
    border: 1px solid #D3D3D3;
    border-radius: 54px;
    padding: 0 14px;
    margin-bottom: 14px;
    background-color: #f2f2f2;
    font-size: 14px;
    font-family: "Montserrat-Regular";
}
.form-popup input::placeholder {
    color: #262626;
    transition: all .35s ease;
}
.form-popup input:focus::placeholder {
    opacity: 0.5;
}
.form-popup textarea {
    width: 100%;
    height: 128px;
    border-radius: 17px;
    color: #262626;
    border: 1px solid #D3D3D3;
    padding: 10px 14px;
    margin-bottom: 14px;
    background-color: #f2f2f2;
    font-size: 14px;
    font-family: "Montserrat-Regular";
    resize: none;
}
.form-popup textarea::placeholder {
    color: #262626;
    transition: all .35s ease;
}
.form-popup textarea:focus::placeholder {
    opacity: 0.5;
}
.form-popup__send {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 208px !important;
    height: 49px !important;
    color: #262626 !important;
    font-size: 16px !important;
    line-height: 1.2;
    font-family: "Montserrat-Bold" !important;
    border-radius: 43px !important;
    border: 2px solid #262626 !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: all .35s ease;
}

.form-popup__send.ok {
	width: 258px !important;
	margin: 0 auto;
}

.form-popup__send:hover {
    background-color: #F2B800 !important;
    border-color: #F2B800 !important;
}
.fancybox__slide .f-button[data-fancybox-close] {
    top: 24px;
    right: 30px;
}
.form-popup .f-button svg {
    stroke: #262626;
    transform: scale(1.4);
}

.footer {
    color: #fff;
    background-color: #262626;
    padding: 18px 0;
}
.footer__container {
    width: 1170px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__logo {
    display: flex;
    flex-direction: column;
}
.footer__logo-media {
    display: block;
    width: 177px;
    text-decoration: none;
    margin-bottom: 5px;
}
.footer__logo-media img {
    display: block;
    width: 100%;
    height: auto;
}
.footer__logo-text {
    color: #f2f2f2;
    font-size: 12px;
    line-height: 1.4;
}
.footer__contacts {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 1.4;
}
.footer__contacts-title {
    margin-bottom: 4px;
}
.footer__contacts-phone {
    color: #F2B800;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 4px;
    font-family: "Otoiwo-Grotesk-Bold-Wide";
    font-weight: 600;
}
.footer__contacts-phone a {
    display: inline-block;
    text-decoration: none;
    color: #F2B800;
    line-height: 1.4;
}
.footer__contacts-phone a::after {
    content: ", ";
}
.footer__contacts-phone a:last-of-type::after {
    display: none;
}
.footer__contacts-mode {
    text-transform: uppercase;
}
.footer__social {
    display: flex;
}
.footer__social-item {
    display: block;
    width: 32px;
    height: 32px;
    margin: 12px;
    filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(1000%) hue-rotate(360deg) brightness(100%) contrast(100%);
}
.footer__social-item:hover {
    filter: none;
}
.footer__powered {
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    text-decoration: none;
    background-image: url(../img/logo-cursor.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: right center;
    padding-right: 25px;
}
.footer__powered span {
    text-decoration: underline;
    text-underline-offset: 3px;
    padding-right: 2px;
    transition: all .35s ease;
}
.footer__powered span:hover {
    color: #F2B800;
}

label.error {
	display: none !important;
}

.wpcf7-form .error {
	border: 1px solid #900;
}

.wpcf7-response-output {
	display: none;
}

.spare-card {
	width: 1170px;
	margin-left: auto;
    margin-right: auto;
}

.spare-wrap-detail {
	margin-top: 32px;
	display: flex;
	justify-content: space-between;
}

.spare-photo img {
	width: 609px;
	max-width: 100%;
	height: auto;
	border-radius: 36px;
}

.spare-characteristic {
	max-width: 521px;
	max-width: 100%;
}

.spare-characteristic .specs-table table {
	min-width: auto;
}

.spare-characteristic .specs-table td {
	white-space: normal;
	font-size: 14px !important;
	line-height: 1.7;
}

.spare-characteristic .specs-table td:last-of-type {
	min-width: 240px;
}

.spare-characteristic .specs-table td:first-of-type {
	/*font-family: "Montserrat-SemiBold";*/
}

.spare-cod {
	font-family: "Montserrat-SemiBold";
	font-size: 18px;
	line-height: 1.2;
	margin-bottom: 24px;
}

.spare-card__promo-btn {
    --attention-pulse-base-shadow: 0 16px 32px rgba(242, 184, 0, 0.22);
    display: table;
    min-width: 200px;
    text-align: center;
    color: #262626;
    font-size: 20px;
    line-height: 1.2;
    font-family: "Montserrat-Bold";
    text-decoration: none;
    padding: 18px 39px;
    background-color: #F2B800;
    box-shadow: 0 16px 32px rgba(242, 184, 0, 0.22);
    border-radius: 43px;
    cursor: pointer;
    transition: all .35s ease;
	margin-bottom: 24px;
}
.spare-card__promo-btn:hover {
    background-color: #fff;
}

.spare-title-characteristic {
	font-family: "Montserrat-SemiBold";
	font-size: 18px;
	line-height: 1.2;
	margin-bottom: 24px;
}
.typography-spare {
	margin: 56px auto 56px auto;
    background-color: #f2f2f2;
    border-radius: 36px;
    padding: 24px;
}

.typography > .wp-block-image {
	margin-top: 16px;
}


.searchwp-live-search-results {
  scrollbar-width: thin;
  &::-webkit-scrollbar {
    width: 6px;
  }
}

.searchwp-live-search-result--img {
	text-align: center;
}

button[data-thumbs-action] {
	display: none;
}

.captcha-image {
 margin-bottom: 16px;   
}

.service__form .captcha-image {
 margin-right: 16px;   
}

.captcha-image svg {
 margin-bottom: -13px;   
}

.captcha-image label:nth-child(2) {
    margin-left: 8px;
}

.trim_news {
	max-height: 84px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.consultation-float-wrap {
    position: fixed;
    right: 24px;
    bottom: 84px;
    z-index: 95;
    width: 304px;
    max-width: calc(100vw - 32px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.consultation-float-wrap.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
}

.consultation-float {
    --attention-pulse-base-shadow: 0 16px 36px rgba(38, 38, 38, 0.24);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    width: 100%;
    min-height: 86px;
    padding: 18px 22px 18px 24px;
    border: 2px solid #F2B800;
    appearance: none;
    border-radius: 28px;
    background: linear-gradient(135deg, #262626 0%, #3E4430 100%);
    box-shadow: 0 16px 36px rgba(38, 38, 38, 0.24);
    cursor: pointer;
    text-align: left;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease;
}

.consultation-float:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #F2B800 0%, #dba300 100%);
    border-color: #262626;
    box-shadow: 0 20px 42px rgba(38, 38, 38, 0.22);
}

.consultation-float__close {
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid #262626;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(38, 38, 38, 0.15);
    cursor: pointer;
    transition: transform .35s ease, background-color .35s ease, border-color .35s ease;
}

.consultation-float__close:hover {
    transform: rotate(90deg);
    background-color: #F2B800;
    border-color: #F2B800;
}

.consultation-float__close::before,
.consultation-float__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: #262626;
    border-radius: 10px;
}

.consultation-float__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.consultation-float__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.consultation-float__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 auto;
}

.consultation-float__title,
.consultation-float__subtitle {
    display: block;
    transition: color .35s ease;
}

.consultation-float__title {
    color: #F2B800;
    font-size: 17px;
    line-height: 1.15;
    font-family: "Otoiwo-Grotesk-Extra-Bold-Wide";
    font-weight: normal;
    text-transform: uppercase;
}

.consultation-float__title-mark {
    display: inline-block;
    margin-left: 1px;
    color: inherit;
    font-family: "Montserrat-Bold";
    font-size: 1.08em;
    font-weight: normal;
    line-height: 1;
    transform: translateY(-0.02em);
}

.consultation-float__subtitle {
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    font-family: "Montserrat-SemiBold";
}

.consultation-float__icon {
    position: relative;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #F2B800;
    transition: background-color .35s ease;
}

.consultation-float__icon::before,
.consultation-float__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 11px;
    height: 11px;
    border-top: 3px solid #262626;
    border-right: 3px solid #262626;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .35s ease;
}

.consultation-float__icon::before {
    left: 11px;
}

.consultation-float__icon::after {
    left: 20px;
}

.consultation-float:hover .consultation-float__icon::before,
.consultation-float:hover .consultation-float__icon::after {
    transform: translate(2px, -50%) rotate(45deg);
}

.consultation-float:hover .consultation-float__title,
.consultation-float:hover .consultation-float__subtitle {
    color: #262626;
}

.consultation-float:hover .consultation-float__icon {
    background-color: #262626;
}

.consultation-float:hover .consultation-float__icon::before,
.consultation-float:hover .consultation-float__icon::after {
    border-top-color: #F2B800;
    border-right-color: #F2B800;
}

.consultation-popup {
    box-sizing: border-box;
    max-width: calc(100vw - 24px);
}
