*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
html {
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "e-Ukraine-Regular";
    color: #3B3B3A;
    font-weight: normal;
    background-color: #f7f7f7;
}
body.modal-open,
body.nav-open {
    overflow: hidden;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
    font-family: "e-Ukraine-Light";
    font-weight: normal;
    /*text-transform: uppercase;*/
    margin-bottom: 24px;
}
h3 {
    font-size: 36px;
    line-height: 1.2;
    font-family: "e-Ukraine-Light";
    font-weight: normal;
}
p {
    font-family: "e-Ukraine-Light";
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tech {
    display: none;
}

#nav-btn {
    width: 24px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-left: 20px;
    display: none;
} 
#nav-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #3B3B3A;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
#nav-btn span:nth-child(1) {
    top: 1px;
}
#nav-btn span:nth-child(2),
#nav-btn span:nth-child(3) {
    top: 9px;
}
#nav-btn span:nth-child(4) {
    top: 17px;
}
#nav-btn.open span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}
#nav-btn.open span:nth-child(2) {
    transform: rotate(45deg);
}
#nav-btn.open span:nth-child(3) {
    transform: rotate(-45deg);
}
#nav-btn.open span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.slider-range {
    display: block;
}
.slider-range__text {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-left: 24px;
}
.slider-range__text span {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-family: "e-Ukraine-Light";
}
.slider-range__text input.power {
    color: #fff;
    border: none;
    width: 22px;
    height: 24px;
    font-size: 16px;
    text-align: right;
    font-family: "e-Ukraine-Light";
    background-color: transparent;
}
.slider-range__text input.power + span {
    padding-left: 4px;
}
.wrap-range {
    width: calc(100% - 40px);
    height: 20px;
    position: relative;
    margin-left: 20px;
}
.range-decor {
    width: calc(100% - 20px);
    height: 100%;
    position: absolute;
    left: 10px;
    top: 5px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.range-decor__item {
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: relative;
}
.range-decor__item span {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-family: "e-Ukraine-Light";
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transform: translateX(-50%);
}
.range-decor__item:nth-child(2) {
    transform: translateX(-12px);
}
.range-decor__item:nth-child(3) {
    transform: translateX(-10px);
}
.range-decor__item:nth-child(4) {
    transform: translateX(-8px);
}
.range-decor__item:nth-child(5) {
    transform: translateX(-5px);
}
.range-decor__item:nth-child(6) {
    transform: translateX(-2px);
}
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}
input[type=range]::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
    position: absolute;
    left: -18px;
    top: 0;
}
input[type=range]::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
    position: absolute;
    right: -18px;
    top: 0;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%; 
    background: #EE7623;
    border: 2px solid #fff;
    cursor: pointer;
}
.modal1__form-item .submit {
    display: block;
    width: 100%;
    height: 56px;
    border-radius: 33px;
    border: 2px solid #EE7623;
    background-color: #EE7623;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    transition: all .3s linear;
}
.modal1__form-item .submit:hover {
    /*color: #EE7623;
    background-color: transparent;*/
	border: 2px solid #d06013;
	background-color: #d06013;
}

.header__open-modal {
    color: #fff;
    font-size: 16px;
    line-height: 1.36;
    background-color: #EE7623;
    border: 2px solid #EE7623;
    border-radius: 33px;
    padding: 14px 30px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    margin-left: 24px;
    margin-right: 24px;
}
.header__open-modal:hover,

body.modal-open .header__open-modal {
    /*background-color: #fff;
    color: #EE7623;*/
	background-color: #d06013;
	border: 2px solid #d06013;
}
.modal1 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3B3B3A;
    overflow-y: auto;
    padding-right: 0px;
    z-index: 200;
    scrollbar-gutter: stable;
}
.modal1__content {
    position: relative;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.modal1__container {
    width: 1288px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.modal1__close {
    width: 54px;
    height: 54px;
    background-image: url(../img/close.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.modal1__close:hover {
    transform: rotateZ(180deg);
}
.modal1__form form{
    width: 100%;
    max-width: 1014px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.modal1__title {
    width: 100%;
    color: #fff;
    font-size: 40px;
    line-height: 1.15;
    font-family: "e-Ukraine-Bold";
    text-align: center;
    margin-bottom: 60px;
}
.modal1__form-col {
    width: 48%;
}
.modal1__form-item {
    margin-bottom: 24px;
    width: 100%;
    position: relative;
}
.modal1__form-item input.text {
    display: block;
    width: 100%;
    height: 56px;
    border-radius: 10px;
    border: 2px solid #c0c0c0;
    padding: 0 19px;
    font-size: 16px;
    font-family: "e-Ukraine-Light";
    color: #606060;
}
.modal1__form-item input.text::placeholder {
    color: #c3c3c3;
    transition: all .3s linear;
}
.modal1__form-item input.text:focus::placeholder {
    opacity: 0.6;
}

.modal1__form-item input.text.error {
    border: 2px solid #EE7623;
}

.modal1__form form .wpcf7-response-output {
    color: #fff !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    display: none !important;
}

.modal1__radio-dropdown {
    width: 100%;
    height: 56px;
    border-radius: 10px;
    border: 2px solid #c0c0c0;
    background-color: #fff;
    font-size: 16px;
    line-height: 52px;
    font-family: "e-Ukraine-Light";
    color: #c3c3c3;
    padding: 0 19px;
    cursor: pointer;
    position: relative;
    transition: all .3s linear;
}
.modal1__radio-dropdown.full {
    color: #606060;
}
.modal1__radio-dropdown::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../img/arrow2.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    transition: all .3s linear;
}
.modal1__radio-dropdown.open::after {
    transform: rotateZ(180deg);
}
.modal1__radio-wrap-list {
    width: 100%;
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    z-index: 3;
    display: none;
}
.modal1__radio-list {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #c0c0c0;
    margin-bottom: 30px;
}
.modal1__radio-list > span > span {
    display: block;
}
.modal1__radio-list label {
    display: block;
    width: 100%;
    color: #606060;
    font-size: 14px;
    line-height: 47px;
    font-family: "e-Ukraine-Light";
    padding: 0 19px;
    border-bottom: 1px solid #e9e9e9;
    cursor: pointer;
    transition: all .3s linear;
}
.modal1__radio-list label:hover {
    color: #EE7623;
}
.modal1__radio-list span.last label {
    border: none;
}
.modal1__radio-list label input[type=radio] {
    display: none;
}

.lang {
   display: block;
    position: relative;
}
.lang__curren {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 16px;
    border: 1px solid #3B3B3A;
    border-radius: 26px;
    width: 85px;
    position: relative;
    cursor: pointer;
}
.lang__curren::after {
    content: "";
    display: block;
    position: absolute;
    right: 12px;
    top: 13px;
    background-image: url(../img/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 8px;
    transition: all .3s ease;
}
.lang.open .lang__curren::after {
    transform: rotateZ(180deg);
}
.lang__list {
    width: 85px;
    border: 1px solid #3B3B3A;
    border-radius: 10px;
    padding-top: 16px;
    padding-left: 16px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    z-index: 100;
    transform: translateY(15px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
}
.lang.open .lang__list {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: auto;
}
.lang__list a {
    font-size: 14px;
    line-height: 18px;
    color: #3B3B3A;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all .3s linear;
    text-transform: uppercase;
}
.lang__list a:hover {
    color: #EE7623;
}

.wrap-nav {
    align-self: stretch;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding-left: 24px;
    padding-right: 24px;
}
.nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-self: stretch;
}
.nav-item {
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.nav-item a {
    color: #3B3B3A;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    transition: all .3s linear;
}
.nav-item a:hover,
.nav-item.active > a {
    color: #EE7623;
}


.nav__dropdown-item {
    width: 25%;
    margin-bottom: 30px;
    padding-left: 24px;
    padding-right: 24px;
}

.nav-item.dropdown .carret {
    display: none;
}


.nav__dropdown-item > a {
    color: #EE7623;
    font-size: 20px;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
    text-decoration: none;
    /*background-image: linear-gradient(#EE7623, #EE7623);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;*/
    padding-bottom: 2px;
}

.nav__dropdown-item > a:hover {
    /*background-size: 100% 1px;*/
	/*text-decoration: underline;
	text-underline-offset: 4px;*/
}

.nav__dropdown-subnav {
    list-style: none;
    margin-top: 24px;
}

.nav__dropdown-subnav li {
    margin-bottom: 16px;
}

.nav__dropdown-subnav li:last-of-type {
    margin-bottom: 0;
}

.nav__dropdown-subnav li > a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    /*background-image: linear-gradient(#fff, #fff);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;*/
    padding-bottom: 2px;
}

.nav__dropdown-subnav li > a:hover {
    color: #fff;
    /*background-size: 100% 1px;*/
	text-decoration: underline;
	text-underline-offset: 4px;
}
.nav__dropdown-item--drop {
    display: none;
}
.subnav__actions {
    display: none;
}

.header {
    display: block;
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    box-shadow: 0px 18px 88px 4px rgba(24, 39, 75, 0.04);
}
.header__container {
    width: 1288px;
    height: 98px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header__logo {
    display: table;
}
.header__logo img {
    display: block;
    width: 95px;
    height: auto;
}
.header__tel {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(../img/phone1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-decoration: none;
}

.main {
    flex-grow: 1;
    padding-top: 150px;
    padding-bottom: 80px;
}
.page__title {
    color: #3B3B3A;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 50px;
    font-family: "e-Ukraine-Bold";
    font-weight: normal;
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumbs {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.breadcrumbs li {
    font-size: 12px;
    line-height: 1.2;
    font-family: "e-Ukraine-Light";
    margin-bottom: 10px;
}
.breadcrumbs li::after {
    content: "/";
    padding-left: 12px;
    padding-right: 12px;
    color: #828282;
    opacity: .6;
}
.breadcrumbs li:last-of-type::after {
    display: none;
}
.breadcrumbs a {
    color: #828282;
    font-size: 12px;
    line-height: 1.2;
    font-family: "e-Ukraine-Light";
    text-decoration: none;
    opacity: .6;
    transition: all .3s linear;
}
.breadcrumbs a:hover {
    opacity: 1;
}

.product {
    width: 1318px;
    margin-left: auto;
    margin-right: auto;
}
.product__nav {
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.product__nav > li {
    display: block;
    width: 33.33333%;
    margin-bottom: 56px;
    padding-left: 15px;
    padding-right: 15px;
}
.product__nav > li > a {
    color: #EE7623;
    font-size: 20px;
    line-height: 1.2;
    font-family: "e-Ukraine-Regular";
    text-decoration: none;
    /*background-image: linear-gradient(#EE7623, #EE7623);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;*/
    padding-bottom: 2px;
    transition: all .3s linear;
}
.product__nav > li > a:hover {
    /*background-size: 100% 1px;*/
	/*text-decoration: underline;
	text-underline-offset: 4px;*/
}
.product__nav ul {
    margin-top: 28px;
    /*list-style: none;*/
	list-style: square;
	list-style-position: inside;
}
.product__nav ul li {
    margin-bottom: 20px;
}

.product__nav ul li::marker {
	color: #000;
}

.product__nav ul li:last-of-type {
    margin-bottom: 0;
}
.product__nav ul li a {
	margin-left: -5px;
    color: #3B3B3A;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    /*background-image: linear-gradient(#3B3B3A, #3B3B3A);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;*/
    padding-bottom: 2px;
    transition: all .3s linear;
}
.product__nav ul li a:hover {
    /*background-size: 100% 1px;*/
	text-decoration: underline;
	text-underline-offset: 4px;
}

.page__head {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page__head p {
	font-size: 16px;
}

.contact_subtitle p {
	font-size: 24px;
}

.catalog {
    width: calc(1288px + 32px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
}
.catalog__item {
    display: block;
    width: calc(33.33333% - 32px);
    height: 260px;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 32px;
    text-decoration: none;
    overflow: hidden;
    border-radius: 16px;
    background-color: #fff;
    position: relative;
    transition: all .3s linear;
}
.catalog__item:hover {
    box-shadow: 1px 1px 12px 0px rgba(0, 0, 0, 0.12);
}
.catalog__item::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 24px;
    right: 24px;
    background-image: url(../img/decor-rigt.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 3;
}
.catalog__item span {
    color: #3B3B3A;
    display: block;
    position: absolute;
    width: 250px;
    left: 24px;
    top: 24px;
    font-size: 28px;
    line-height: 1.2;
    z-index: 2;
    transition: all .3s linear;
}
.catalog__item:hover span {
    color: #EE7623;
}
.catalog__item img {
    display: block;
    width: 255px;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.catalog2 {
    width: calc(1288px + 32px);
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}
.catalog2__item {
    display: block;
}
.catalog2 h3 {
    color: #EE7623;
    font-size: 30px;
    line-height: 1.7;
    font-family: "e-Ukraine-Bold";
    font-weight: normal;
    margin-bottom: 38px;
}
.catalog2__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 6px;
}
.catalog2__grid-item {
    width: calc(33.33333% - 32px);
    margin-left: 16px;
    margin-right: 16px;
    overflow: hidden;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    background-color: #fff;
    transition: all .3s linear;
}
.catalog2__grid-item:hover {
    box-shadow: 1px 1px 12px 0px rgba(0, 0, 0, 0.12);
}
.catalog2__grid-media {
    display: block;
    width: 256px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    text-decoration: none;
}
.catalog2__grid-media img {
    display: block;
    width: 100%;
    height: auto;
}
.catalog2__grid-name {
    display: table;
    color: #3B3B3A;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 19px;
    font-family: "e-Ukraine-Bold";
    text-decoration: none;
    transition: all .3s linear;
}
.catalog2__grid-name:hover {
    color: #EE7623;
}
.catalog2__grid-item ul,
.catalog2__grid-text {
    list-style: none;
    margin-bottom: 19px;
}
.catalog2__grid-item ul li,
.catalog2__grid-text li {
    font-size: 14px;
    line-height: 1.4;
    font-family: "e-Ukraine-Thin";
    padding-top: 5px;
    padding-bottom: 5px;
}
.catalog2__grid-item ul li strong,
.catalog2__grid-text li span {
    font-family: "e-Ukraine-Regular";
}
.catalog2__item-more {
    color: #EE7623;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 33px;
    border: 2px solid #EE7623;
    transition: all .3s linear;
}
.catalog2__item-more:hover {
    color: #fff;
    background-color: #EE7623;
}

.card {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.card__media {
    width: 500px;
    height: auto;
    overflow: hidden;
}
.card__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.card__description {
    width: 730px;
}
.card__description h3 {
    color: #EE7623;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 24px;
}
.card__modal {
    display: table;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    padding: 14px 30px;
    margin-top: 24px;
    border-radius: 33px;
    border: 2px solid #EE7623;
    background-color: #EE7623;
    transition: all .3s linear;
    text-decoration: none;
}
.card__modal:hover {
    /*color: #EE7623;
    background-color: transparent;*/
	border: 2px solid #d06013;
	background-color: #d06013;
}
.card__characteristics {
    width: 100%;
    margin-top: 70px;
    margin-bottom: 48px;
    overflow-x: auto;
    /*border-radius: 10px;*/
}
.card__characteristics table {
    width: auto;
    margin: 0 auto;
    max-width: 100%;
    /*width: 100%;*/
    font-size: 13px;
    line-height: 20px;
    border-spacing: 0px;
    border-collapse: collapse;
    border-radius: 10px;
    /*overflow: hidden;*/
    background-color: #fff;
}
.card__characteristics table tr {
    border-bottom: 1px solid #d9d9d9;
}
.card__characteristics table tr:last-of-type {
    border-bottom: none;
}
.card__characteristics table tr th {
    background-color: #d9d9d9;
    text-align: center;
    padding: 20px;
}
.card__characteristics table tr th:first-of-type {
    width: 36%;
}
.card__characteristics table tr th:first-of-type {
    text-align: left;
}
.card__characteristics table tr td {
    text-align: center;
    padding: 20px;
}

.card__characteristics table tr td p {
    font-family: "e-Ukraine-Regular";
    color: #3B3B3A;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 0;
}

.card__characteristics table tr td:first-of-type {
    text-align: left;
}

.card__characteristics.long-table tr>th:first-child, .card__characteristics.long-table tr>td:first-child {
    position: sticky;
    left: 0;
    background-image: url('../img/shadow-td.png');
    background-position: right;
    background-repeat: repeat-y;
}

.card__characteristics.long-table tr>td:first-child {
    background-color: #fff;
}

.card__characteristics::-webkit-scrollbar {
    height: 8px;
    background-color: #d9d9d9;
}
.card__characteristics::-webkit-scrollbar-thumb {
    background-color: #EE7623;
    border-radius: 4px;
}
.card__characteristics::-webkit-scrollbar-track {
    background-color: #d9d9d9;
}
/*    
.card__characteristics.long-table::before {
    content: "→";
    display: block;
    width: 40px;
    height: 20px;
    color: #EE7623;
    font-size: 26px;
    z-index: 1;
    position: sticky;
    top: 20px;
    
    animation: linear infinite;
    animation-name: run;
    animation-duration: 1s;
}
@keyframes run {
  0% {
    left: 150px;
  }
  50% {
    left: 170px;
  }
  100% {
    left: 150px;
  }
}
*/

.card__wrap-links {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.card__link {
    font-size: 16px;
    line-height: 1.3;
    padding: 11px 16px 11px 45px;
    border-radius: 33px;
    background-color: #fff;
    text-decoration: none;
    color: #3B3B3A;
    margin-right: 24px;
    margin-bottom: 24px;
    transition: all .3s linear;
    border: 2px solid #fff;
    position: relative;
}
.card__link:hover {
    color: #fff;
    border: 2px solid #EE7623;
    background-color: #EE7623;
    
}
.card__link.pdf::after {
    content: "";
    display: block;
    width: 20px;
    height: 24px;
    position: absolute;
    left: 15px;
    top: 9px;
    background-image: url(../img/pdf-ico.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all .3s linear;
}
.card__link:hover::after {
    filter: grayscale(1) brightness(2) invert(0);
}
.btn__back {
    display: table;
    margin-left: auto;
    margin-right: auto;
    color: #EE7623;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    border-radius: 33px;
    border: 2px solid #EE7623;
    padding: 14px 30px;
    transition: all .3s linear;
}
.btn__back:hover {
    color: #fff;
    background-color: #EE7623;
}

.contakts {
    width: calc(1288px + 32px);
    margin-left: auto;
    margin-right: auto;
}
.contakts__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.contakts__grid-item {
    width: calc(33.33333% - 32px);
    margin-right: 16px;
    margin-left: 16px;
    padding: 24px;
    border-radius: 16px;
    background-color: #fff;
    margin-bottom: 32px;
}

.contakts__grid-item p {
    margin-bottom: 0;
}

.contakts__item-name {
    color: #EE7623;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.contakts__item-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 18px;
}
.contakts__grid-item a {
    display: table;
    color: #343434;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6px;
    text-decoration: none;
    font-family: "e-Ukraine-Light";
    /*background-image: linear-gradient(#343434, #343434);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;*/
    transition: all .3s linear;
}

.contakts__grid-item p.mail-link a {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.contakts__grid-item a:hover {
   /* background-size: 100% 1px;*/
   text-decoration: underline;
   text-underline-offset: 4px;
}
.contakts__grid-map {
    width: calc(66.66666% - 32px);
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
}
.contakts__grid-form {
    width: calc(33.33333% - 32px);
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 24px;
}
.contakts__form-title {
    font-size: 28px;
    line-height: 1.3;
    font-family: "e-Ukraine-Light";
    margin-bottom: 32px;
}
.contakts__grid-form input {
    border-radius: 10px;
    border: 2px solid #c0c0c0;
    width: 100%;
    height: 56px;
    margin-bottom: 24px;
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
}
.contakts__grid-form input::placeholder {
    color: #c3c3c3;
    transition: all .3s linear;
}
.contakts__grid-form input:focus::placeholder {
    opacity: 0.5;
}
.contakts__grid-form textarea {
    border-radius: 10px;
    border: 2px solid #c0c0c0;
    width: 100%;
    height: 146px;
    margin-bottom: 24px;
    font-size: 14px;
    font-family: "e-Ukraine-Light";
    padding: 16px;
    resize: none;
}
.contakts__grid-form textarea::placeholder {
    color: #c3c3c3;
    transition: all .3s linear;
}
.contakts__grid-form textarea:focus::placeholder {
    opacity: 0.5;
}

.contakts__grid-form input.error {
    border: 2px solid #EE7623;
}

.contacts__form_img {
    margin: 30px auto;
    display: block;
}

.contacts__form button,
.contakts__grid-form .submit {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    width: 100%;
    height: 56px;
    border: 2px solid #EE7623;
    background-color: #EE7623;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 33px;
    cursor: pointer;
    transition: all .3s linear;
}
.contacts__form button,
.contakts__grid-form .submit:hover {
    /*color: #EE7623;
    background-color: transparent;*/
	border: 2px solid #d06013;
	background-color: #d06013;
}

.projects {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
}
.projects__title {
    font-size: 30px;
    line-height: 1.2;
    font-family: "e-Ukraine-Light";
    margin-bottom: 32px;
}
.projects__years {
    width: 100%;
    max-width: 980px;
    display: flex;
    flex-wrap: wrap;
}
.projects__years .projects__tab {
    color: #3B3B3A;
    font-size: 20px;
    line-height: 1.3;
    text-decoration: none;
    padding: 10px 16px;
    background-color: #fff;
    border-radius: 37px;
    margin-right: 30px;
    margin-bottom: 24px;
    transition: all .3s linear;
    cursor: pointer;
}
.projects__years .projects__tab sup {
    font-size: 13px;
    line-height: 1;
    color: #EE7623;
    padding-left: 4px;
    transition: all .3s linear;
}
.projects__years .projects__tab.active,
.projects__years .projects__tab:hover {
    color: #fff;
    background-color: #EE7623;
}
.projects__years .projects__tab.active sup,
.projects__years .projects__tab:hover sup{
    color: #fff;
}
.projects__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 24px;
    counter-reset: section;
}

.projects__tab-content {
    display: block;
}
.projects__tab-item {
    display: none;
}
.projects__tab-item:first-child {
    display: block;
}


.projects__grid-item {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    width: calc(50% - 16px);
    border-radius: 16px;
    background-color: #fff;
    padding: 24px;
    margin-bottom: 32px;
    transition: all .3s linear;
}
.projects__grid-item:hover {
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
}
.projects__item-media {
    width: 280px;
    height: 280px;
    background-image: url(../img/image-bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 16px;
    overflow: hidden;
}
.projects__item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s linear;
}
.projects__grid-item:hover .projects__item-media img {
    transform: scale(1.05);
}
.projects__item-text {
    width: calc(100% - 280px);
    padding-left: 24px;
}
.projects__item-text-title {
    color: #3B3B3A;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 16px;
    padding-left: 55px;
    position: relative;
    transition: all .3s linear;
}
.projects__item-text-title::before {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background-color: #EE7623;
    font-size: 22px;
    line-height: 1;
    counter-increment: section;
    content: counter(section);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.projects__grid-item:hover .projects__item-text-title {
    color: #EE7623;
}
.projects__item-text-location {
    color: #808080;
    font-size: 14px;
    line-height: 1.46;
    margin-bottom: 16px;
    font-family: "e-Ukraine-Thin";
}
.projects__item-text p {
    color: #3B3B3A;
    font-size: 14px;
    line-height: 1.46;
    margin-bottom: 16px;
}
.projects__item-text p:last-of-type {
    margin-bottom: 0;
}

.projects__item-text ul {
    padding-left: 32px;
    line-height: 1.46;
    font-size: 14px;
}

.projects__item-text ul li, .projects__item-text ol li {
    margin-top: 12px;
    margin-bottom: 12px;
}


.news {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
}
.news__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}
.news__item {
    width: calc(50% - 16px);
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
}
.news__item:first-of-type {
    width: 100%;
    align-items: center;
}
.news__item-media {
    display: block;
    text-decoration: none;
    width: 188px;
    height: 188px;
    background-image: url(../img/image-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
    overflow: hidden;
}
.news__item:first-of-type .news__item-media {
    width: 628px;
    height: 426px;
}

.news__item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s linear;
}

.news__item-media:hover img {
    transform: scale(1.05);
}
.news__item-text {
    width: calc(100% - 188px);
    padding-left: 24px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
}
.news__item:first-of-type .news__item-text {
    width: calc(100% - 628px);
}
.news__item-date {
    color: #808080;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.news__item-title {
    font-size: 16px;
    line-height: 1.3;
    font-family: "e-Ukraine-Medium";
    color: #323232;
    text-decoration: none;
    margin-bottom: 8px;
    transition: all .3s linear;
}
.news__item-title:hover {
    color: #EE7623;
}
.news__item:first-of-type .news__item-title {
    font-size: 22px;
    margin-bottom: 16px;
}
.news__item-text p {
    font-size: 14px;
    line-height: 1.6;
    font-family: "e-Ukraine-Light";
    margin-bottom: 8px;
}
.news__item:first-of-type .news__item-text p {
    font-size: 16px;
    margin-bottom: 16px;
}
.news__item-text-more {
    display: table;
    color: #EE7623;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    padding-right: 33px;
    background-image: url(../img/news-more.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 24px;
}

.article {
    width: 938px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}
.article__date {
    color: #808080;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 24px;
}
.article__title {
    font-size: 36px;
    line-height: 1.24;
    margin-bottom: 42px;
    font-family: "e-Ukraine-Medium";
    font-weight: normal;
}
.article__media-top {
    width: 100%;
    height: auto;
    margin-bottom: 48px;
    overflow: hidden;
}
.article__media-top img {
    display: block;
    width: auto;
    height: auto;
    border-radius: 16px;
    margin: 0 auto;
}
.article__text {
    display: block;
}
.article__text h2 {
    font-size: 24px;
    line-height: 1.7;
}

.article__text blockquote p {
    color:#FF7A00;
    font-family: "e-Ukraine-Bold";
}

.article__text p {
    margin-bottom: 32px;
}

.article__text .wp-block-embed {
    margin-bottom: 32px;
}

.article__text .wp-block-gallery {
    margin-bottom: 32px;
}

.article__text .wp-element-caption {
    color: #808080;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: center;
    font-family: "e-Ukraine-Light";
}

.article__text a {
    color: #EE7623;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article__text ul {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-left: 32px;
    line-height: 1.7;
    font-size: 16px;
}
.article__text ol {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.7;
}
.article__text ul li,
.article__text ol li {
    margin-top: 12px;
    margin-bottom: 12px;
}
.article__text img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 640px;
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}
.article__img-desc {
    color: #808080;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 32px;
    margin-bottom: 32px;
    text-align: center;
    font-family: "e-Ukraine-Light";
}

.about-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 98px);
    margin-top: -51px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../img/about-top-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.about-top::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.56);
    z-index: 2;
}
.about-top__container {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}
.about-top__title {
    color: #fff;
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 48px;
    text-transform: none;
    font-family: "e-Ukraine-Medium";
    max-width: 880px;
}
.about-top p {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    font-family: "e-Ukraine-Light";
    max-width: 880px;
}
.about-top__grid {
    width: 880px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 48px;
}
.about-top__grid-item {
    width: 135px;
    padding-left: 4px;
    padding-right: 4px;
}
.about-top__item-media {
    display: block;
    width: 48px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}
.about-top__item-media img {
    display: block;
    width: 100%;
    height: auto;
}
.about-top__item-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.15;
    text-align: center;
}

.manufacture {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 120px;
    padding-bottom: 140px;
}
.manufacture__head {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}
.manufacture__head-item {
    width: calc(50% - 16px);
}
.manufacture__head-item:nth-child(2) p {
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    width: 415px;
    margin-left: auto;
    margin-right: auto;
}
.manufacture__head-item:nth-child(2) p span {
    font-size: 36px;
    color: #EE7623;
}
.manufacture__head-item-media {
    display: block;
    width: 84px;
    height: auto;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}
.manufacture__title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 48px;
    font-family: "e-Ukraine-Bold";
    text-transform: none;
    font-weight: normal;
}
.manufacture__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    transform: translateY(-90px);
}
.manufacture__item {
    width: calc(50% - 16px);
    border-radius: 24px;
    background-color: #fff;
    padding: 24px;
}
.manufacture__item:nth-child(2n) {
    transform: translateY(120px);
}
.manufacture__item-media {
    display: block;
    text-decoration: none;
    width: 100%;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}
.manufacture__item-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .5s linear;
}
.manufacture__item-media:hover img {
    transform: scale(1.05);
}
.manufacture__item-name {
    color: #EE7623;
    font-size: 28px;
    line-height: 1.3;
    text-decoration: none;
    background-image: linear-gradient(#EE7623, #EE7623);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    padding-bottom: 4px;
    transition: all .3s linear;
}
.manufacture__item-name:hover {
    background-size: 100% 2px;
}
.manufacture__item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    margin-top: 24px;
}
.manufacture__item p:last-of-type {
    margin-bottom: 0;
}

.features {
    padding-top: 120px;
    padding-bottom: 90px;
    background-color: #fff;
}
.features__container {
    width: calc(1288px + 32px);
    margin-left: auto;
    margin-right: auto;
}
.features__title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 32px;
    font-family: "e-Ukraine-Bold";
    text-transform: none;
    font-weight: normal;
    padding-left: 16px;
    padding-right: 16px;
}
.features__subtitle {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 0;
    width: 750px;
    padding-left: 16px;
    padding-right: 16px;
}
.features__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
}
.features__grid-item {
    display: block;
    text-decoration: none;
    width: calc(33.33333% - 32px);
    height: 260px;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 32px;
    border-radius: 16px;
    background-color: #f7f7f7;
    position: relative;
    padding: 24px;
    transition: all .3s linear;
	pointer-events: none;
}
.features__grid-item:hover {
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.features__grid-item-media {
    display: block;
    width: 270px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}
.features__grid-item-text {
    width: 85%;
    color: #3B3B3A;
    font-size: 28px;
    line-height: 1.2;
    transition: all .3s linear;
}
.features__grid-item:hover .features__grid-item-text {
    color: #EE7623;
}

.benefits {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 120px;
    padding-bottom: 100px;
}
.benefits__title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 48px;
    font-family: "e-Ukraine-Bold";
    text-transform: none;
    font-weight: normal;
    max-width: 805px;
}
.benefits__subtitle {
    max-width: 805px;
    margin-bottom: 48px;
}
.benefits__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 48px;
}
.benefits__grid-item {
    width: 500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.benefits__grid-item-title {
    width: 100%;
    font-size: 34px;
    line-height: 1.3;
    font-family: "e-Ukraine-Light";
    margin-bottom: 48px;
}
.benefits__grid-item-media {
    width: 186px;
    border-radius: 93px;
    overflow: hidden;
}
.benefits__grid-item-media img {
    display: block;
    width: 100%;
    height: auto;
}
.benefits__grid-item-text {
    width: 205px;
    margin-right: 44px;
}
.benefits__grid-item-text p {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 32px;
}
.benefits__grid-item-text p strong {
    font-size: 26px;
    line-height: 1.3;
    display: block;
    margin-bottom: 12px;
    font-weight: normal;
}
.benefits__grid-item:nth-child(even) .benefits__grid-item-text p strong {
    font-weight: normal;
    font-size: 26px;
    line-height: 1.3;
    display: inline;
}
.benefits__grid-item:nth-child(even) .benefits__grid-item-text p {
    font-size: 20px;
    margin-bottom: 0;
}
.benefits__footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.benefits__footer-item {
    width: calc(50% - 8px);
    border-radius: 16px;
    background-color: #fff;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-decoration: none;
    transition: all .3s linear;
}
.benefits__footer-item:hover {
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.benefits__footer-item-text {
    width: 50%;
    padding: 24px;
}
.benefits__footer-item-media {
    width: 50%;
    position: relative;
    overflow: hidden;
}
.benefits__footer-item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s linear;
}
.benefits__footer-item:hover .benefits__footer-item-media img {
    transform: scale(1.05);
}
.benefits__footer-title {
    width: 100%;
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 48px;
}
.benefits__footer-item-title {
    color: #EE7623;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 24px;
}
.benefits__footer-item-list ul {
    color: #343434;
    list-style: disc;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
    font-family: "e-Ukraine-Light";
}

.partners {
    background-color: #fff;
    padding-top: 120px;
    padding-bottom: 100px;
    margin-bottom: -80px;
}
.partners__container {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
}
.partners__title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 80px;
    font-family: "e-Ukraine-Bold";
    text-transform: none;
    font-weight: normal;
}
.partners__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    overflow: hidden;
    max-height: 310px;
    transition: all 0.8s linear;
}
.partners__grid.open {
    max-height: 1000px;
}
.partners__grid-item {
    display: block;
    width: 20%;
    height: 110px;
    text-decoration: none;
    margin-bottom: 50px;
}
.partners__grid-item img {
    display: block;
    width: auto;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all .3s linear;
}
.partners__grid-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}
.partners__btn {
    width: 100%;
    height: 2px;
    background-color: #d9d9d9;
    position: relative;
}
.partners__btn-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #EE7623;
    background-image: url(../img/Caret_Down_MD.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    cursor: pointer;
    transition: all .5s linear;
}
.partners__grid.open + .partners__btn .partners__btn-toggle {
    transform: rotateZ(180deg);
}

.loader {
	background: none repeat scroll 0 0 #ffffff;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}
.loader__inner {
	background-image: url("../img/preloader.gif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #fff;
	height: 60px;
	width: 60px;
	margin-top: -30px;
	margin-left: -30px;
	left: 50%;
	top: 50%;
	position: absolute;
}

.paginations .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}
.paginations .nav-links .page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
}

.paginations .nav-links .page-numbers.prev,
.paginations .nav-links .page-numbers.next {
    font-size: 0;
}

.paginations .nav-links .page-numbers.prev::before {
    display: block;
    width: 40px;
    height: 40px;
    content: "";
    background: url('../img/pag-arrow.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotateZ(180deg);
    filter: grayscale(1) brightness(0.2);
    transition: all .3s linear;
}
.paginations .nav-links .page-numbers.prev:hover::before {
    filter: grayscale(0) brightness(1);
}
.paginations .nav-links .page-numbers.next::before {
    content: "";
    background: url('../img/pag-arrow.svg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    width: 40px;
    height: 40px;
    filter: grayscale(1) brightness(0.2);
    transition: all .3s linear;
}
.paginations .nav-links .page-numbers.next:hover::before {
    filter: grayscale(0) brightness(1);
}
.paginations .nav-links .page-numbers {
    color: #3B3B3A;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
    transition: all .3s linear;
}
.paginations .nav-links .page-numbers:hover,
.paginations .nav-links .page-numbers.current {
    color: #EE7623;
}
.paginations .nav-links .page-numbers.current {
    pointer-events: none;
}

.partners__patents {
    margin-top: 67px;
}
.partners__patents-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.partners__patents-media {
    width: 620px;
    display: flex;
    flex-wrap: wrap;
}
.partners__patents-media a {
    display: block;
    text-decoration: none;
    width: 33.33333%;
    height: auto;
}
.partners__patents-media a img {
    display: block;
    width: calc(100% - 32px);
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.partners__patents-text {
    width: calc(100% - 620px);
    padding-left: 24px;
}

.what-we-do {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    padding-bottom: 120px;
}
.what-we-do__title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 80px;
    font-family: "e-Ukraine-Bold";
    text-transform: none;
    font-weight: normal;
}
.what-we-do__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.what-we-do__main {
    width: 100%;
    max-width: 850px;
}
.what-we-do__subtitle {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 48px;
    width: 690px;
}
.what-we-do__main h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 32px;
    margin-bottom: 32px;
    font-family: "e-Ukraine-Light";
    font-weight: normal;
}
.what-we-do__main ul {
    list-style: disc;
    border-radius: 24px;
    background-color: #fff;
    padding: 24px;
    margin-bottom: 50px;
    font-family: "e-Ukraine-Light";
    font-size: 16px;
    line-height: 1.7;
    padding-left: 44px;
}
.what-we-do__main ul li {
    margin-top: 6px;
    margin-bottom: 6px;
}
.what-we-do__more {
    font-size: 16px;
    line-height: 1.3;
    color: #EE7623;
    padding: 14px 30px;
    text-decoration: none;
    font-family: "e-Ukraine-Medium";
    border: 2px solid #EE7623;
    transition: all .3s linear;
    border-radius: 33px;
}
.what-we-do__more:hover {
    color: #fff;
    background-color: #EE7623;
}
.what-we-do__right {
    width: 300px;
    padding: 8px;
}
.what-we-do__right-item {
    width: 100%;
    margin-bottom: 68px;
    display: flex;
    flex-wrap: wrap;
}
.what-we-do__right-item:last-child {
    margin-bottom: 0;
}
.what-we-do__right-text {
    color: #3B3B3A;
    font-size: 110px;
    line-height: 1;
    font-family: "e-Ukraine-Bold";
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.what-we-do__right-text span {
    font-size: 45px;
    padding-left: 10px;
}
.what-we-do__right-text2 {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
    font-family: "e-Ukraine-Bold";
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #EE7623;
    text-align: center;
}
.what-we-do__right-text span.highlight {
    position: relative;
    padding-left: 0;
    font-size: 110px;
}
.what-we-do__right-text .highlight::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/fire.svg);
    background-position: center 7px;
    background-repeat: no-repeat;
    background-size: 58px;
}
.what-we-do__right-media {
    display: block;
    width: 100%;
}
.what-we-do__right-media img {
    display: block;
    width: 100%;
    height: auto;
}

.section-product {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #fff;
}
.section-product__container {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
}
.section-product__title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 80px;
    font-family: "e-Ukraine-Bold";
    text-transform: none;
    font-weight: normal;
}
.section-product .catalog__item {
    background-color: #f7f7f7;
}
.section-product .catalog__item:hover {
    background-color: #fff;
}
.section-product .catalog__item img {
    width: 170px;
}

.biofuel {
    width: 100%;
    display: block;
    padding-top: 120px;
    padding-bottom: 180px;
}
.biofuel__container {
    width: 1288px;
    margin-left: auto;
    margin-right: auto; 
}
.biofuel__title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 32px;
    font-family: "e-Ukraine-Bold";
    text-transform: none;
    font-weight: normal;
    width: 100%;
    max-width: 870px;
}
.biofuel__subtitle {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 110px;
    font-family: "e-Ukraine-Light";
    width: 100%;
    max-width: 870px;
}
.biofuel__circle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 720px;
    height: 720px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background-color: transparent;
    border: 40px solid rgba(238, 118, 35, 0.63);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.biofuel__circle-center {
    width: 274px;
    height: 274px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 50%;
    background-color: rgba(238, 118, 35, 1);
    z-index: 1;
	
}
.biofuel__circle-center::after {
    content: "";
    display: block;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    position: absolute;
    background-color: rgba(238, 118, 35, 0.66);
    z-index: 2;
	animation: pulse 1.4s linear infinite;
	animation-delay: 0.7s;
}
.biofuel__circle-center::before {
    content: "";
    display: block;
    width: 345px;
    height: 345px;
    border-radius: 50%;
    position: absolute;
    background-color: rgba(238, 118, 35, 0.63);
    z-index: 3;
	animation: pulse 2.5s linear infinite;
}
.biofuel__circle-center-text {
    color: #fff;
    font-size: 36px;
    line-height: 1.3;
    font-family: "e-Ukraine-Bold";
    text-transform: uppercase;
    position: relative;
    z-index: 4;
    text-align: center;
}
.biofuel__circle-center-text span {
    font-size: 26px;
    display: block;
}
.biofuel__circle-item {
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #fff;
    position: absolute;
    z-index: 3;
    text-decoration: none;
}
.biofuel__circle-item-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}
.biofuel__circle-item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s linear;
}
.biofuel__circle-item-text {
    display: block;
    width: 100%;
    text-align: center;
    color: #3B3B3A;
    font-size: 13px;
    line-height: 1.2;
    position: absolute;
    top: calc(100% + 10px);
}
.biofuel__circle-item:hover .biofuel__circle-item-media img {
    transform: scale(1.05);
}
.item1 {
    top: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.item2 {
    top: 18%;
    left: 92%;
    transform: translate(-50%, -50%);
}
.item3 {
    top: 62%;
    left: 102%;
    transform: translate(-50%, -50%);
}
.item4 {
    top: 97%;
    left: 74%;
    transform: translate(-50%, -50%);
}
.item5 {
    top: 97%;
    left: 25%;
    transform: translate(-50%, -50%);
}
.item6 {
    top: 62%;
    left: -2%;
    transform: translate(-50%, -50%);
}
.item7 {
    top: 18%;
    left: 8%;
    transform: translate(-50%, -50%);
}

.project {
    width: 100%;
    display: block;
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #fff;
}

.project_inner {
    width: 100%;
    display: block;
    /*padding-top: 120px;*/
    /*padding-bottom: 120px;*/
    background-color: #fff;
}

.post-type-archive-category_project .main {
    background-color: #fff;
}

.project__container {
    width: 1288px;
    margin-left: auto;
    margin-right: auto; 
}
.project__title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 32px;
    font-family: "e-Ukraine-Bold";
    text-transform: none;
    font-weight: normal;
}
.project__text p,
.project__text {
    margin-bottom: 48px;
    width: 100%;
    max-width: 850px;
}
.project__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.project__grid-item {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 16px);
    background-color: #f7f7f7;
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: all .3s linear;
}
.project__grid-item:hover {
    box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.12);
	background-color: #fff;
}
.project__grid-item::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #EE7623;
    position: absolute;
    right: 24px;
    bottom: 24px;
    background-image: url(../img/project-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}
.project__grid-media {
    width: 310px;
    height: auto;
    overflow: hidden;
}
.project__grid-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .3s linear;
}
.project__grid-item:hover .project__grid-media img {
    transform: scale(1.05);
}
.project__grid-text {
    width: calc(100% - 310px);
    color: #3B3B3A;
    font-size: 30px;
    line-height: 1.2;
    padding: 40px;
    transition: all .3s linear;
}
.project__grid-item:hover .project__grid-text {
    color: #EE7623;
}

.geography {
    width: 100%;
    display: block;
    padding-top: 120px;
    padding-bottom: 120px;
}
.geography__container {
    width: 1288px;
    margin-left: auto;
    margin-right: auto; 
}
.geography__title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 32px;
    font-family: "e-Ukraine-Bold";
    text-transform: none;
    font-weight: normal;
}
.geography__text {
    width: 100%;
    max-width: 850px;
}
.geography__map {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    margin-top: 48px;
    overflow: hidden;
    position: relative;
}

.section-news {
    width: 100%;
    display: block;
    padding-top: 180px;
    padding-bottom: 40px;  
}
.section-news__container {
    width: 1288px;
    margin-left: auto;
    margin-right: auto; 
}
.section-news__head {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 80px;
}
.section-news__title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 32px;
    font-family: "e-Ukraine-Bold";
    text-transform: none;
    font-weight: normal;
}
.section-news__more {
    color: #EE7623;
    padding: 14px 30px;
    border-radius: 33px;
    border: 2px solid #EE7623;
    text-decoration: none;
    margin-left: 70px;
    margin-top: 12px;
    transition: all .3s linear;
}
.section-news__more:hover {
    color: #fff;
    background-color: #EE7623;
}
.section-news__grid {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section-news__grid-col {
    width: calc(50% - 16px);
}
.section-news__grid-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 32px;
    
}
.section-news__grid-media {
    width: 188px;
    height: 188px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
}
.section-news__grid-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s linear;
}
.section-news__grid-media:hover img {
    transform: scale(1.05);
}
.section-news__grid-col:nth-child(1) .section-news__grid-media {
    width: 100%;
    height: 416px;
    margin-bottom: 32px;
}
.section-news__grid-text {
    width: calc(100% - 188px);
    padding-left: 24px;
}
.section-news__grid-col:nth-child(1) .section-news__grid-text {
    width: 100%;
    padding-left: 0;
}
.section-news__grid-text-date {
    color: #808080;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.3;
    font-family: "e-Ukraine-Medium";
}
.section-news__grid-col:nth-child(1) .section-news__grid-text-date {
    margin-bottom: 16px;
}
.section-news__grid-text-title {
    display: table;
    color: #323232;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all .3s linear;
}
.section-news__grid-col:nth-child(1) .section-news__grid-text-title {
    font-size: 18px;
    margin-bottom: 16px;
}
.section-news__grid-text-title:hover {
    color: #EE7623;
}
.section-news__grid-text p {
    font-size: 14px;
    line-height: 1.7;
    font-family: "e-Ukraine-Light";
    margin-bottom: 8px;
}
.section-news__grid-text-more {
    display: table;
    color: #EE7623;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    padding-right: 33px;
    background-image: url(../img/news-more.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 24px;
}

.footer {
    width: 100%;
    background-color: #3B3B3A;
    padding-top: 36px;
    padding-bottom: 36px;
    font-family: "e-Ukraine-Thin";
}
.footer__container {
    width: 1288px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer__item {
    display: flex;
    flex-direction: column;
}
.footer__logo {
    display: block;
    margin-bottom: 28px;
}
.footer__logo img {
    display: block;
}
.footer__logo-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
}
.footer__logo-text-title {
    font-size: 16px;
    font-family: "e-Ukraine-Bold";
    margin-bottom: 8px;
}
.footer__phone {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.footer__phone-ico {
    display: block;
    width: 24px;
    height: auto;
    margin-right: 6px;
    margin-top: 2px;
}
.footer__phone-links {
    display: flex;
    flex-direction: column;
}
.footer__phone-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.3s linear;
    position: relative;
    margin-bottom: 12px;
}
.footer__phone-links a:hover {
    color: #EE7623;
	text-decoration: underline;
	text-underline-offset: 4px;
}
.footer__phone-links a::after {
    /*content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: all .3s ease-in-out;*/
}
.footer__phone-links a:hover::after {
   /* background-color: #EE7623;
    opacity: 1;
    transform: translateY(0px);*/
}
.footer__mail {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.footer__mail-ico {
    display: block;
    width: 24px;
    height: auto;
    margin-right: 6px;
    margin-top: 3px;
}
.footer__mail-links {
    display: flex;
    flex-direction: column;
}
.footer__mail-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.3s linear;
    position: relative;
}
.footer__mail-links a:hover {
    color: #EE7623;
	text-decoration: underline;
	text-underline-offset: 4px;
}
.footer__mail-links a::after {
   /* content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: all .3s ease-in-out;*/
}
.footer__mail-links a:hover::after {
    /*background-color: #EE7623;
    opacity: 1;
    transform: translateY(0px);*/
}

.footer__social-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}
.footer__social {
    display: flex;
    flex-wrap: wrap;
    transform: translate(-8px, -8px);
}
.footer__social a {
    display: table;
    margin: 8px;
}
.footer__social a img {
    display: block;
    width: 26px;
    height: auto;
    filter: brightness(0) grayscale(1) invert(1);
}
.footer__social a:hover img {
    filter: brightness(1) grayscale(0) invert(0);
}
.footer__developer {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    background-image: url(../img/cursor-logo.svg);
    background-repeat: no-repeat;
    background-position: center right;
    padding-right: 24px;
    align-self: flex-start;
}
.footer__developer span {
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all .3s linear;
}
.footer__developer:hover span {
    color: #EE7623;
}

.home-slider {
	margin-top: -50px;
	margin-bottom: 40px;
}

.home-slider__desc {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
	top: 0px;
	left: 0px;
	display: flex;
	justify-content: center;
	align-items:center;
	background-color: rgba(0, 0, 0, 0.56);
}

.home-slider__desc__text {
	width: 1288px;
}

.home-slider__desc__text p {
	font-size: 76px;
	line-height:1.15;
	font-family: "e-Ukraine-Bold";
	color: #fff;
}

.home-slider .owl-nav {
	position: absolute;
    margin-top: -80px;
    width: 240px;
    left: 50%;
    margin-left: -120px;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    display: none;
}

.owl-carousel .owl-nav button span {
    width: 50px;
    height: 50px;
    display: block;
    color: #EE7623;
    background-color: transparent;
    border: 2px solid #EE7623;
    border-radius: 50%;
    line-height: 44px;
    font-size: 40px;
    font-family: "e-Ukraine-Regular";
    text-align: center;
}

.owl-carousel .owl-nav button span:hover {
	color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
}

.owl-carousel .owl-nav button.disabled {
	opacity: 0.5;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.invalid .modal1__radio-dropdown:not(.full) {
    border: 2px solid #EE7623;
}

.slider-power {
    display: none;
}
