* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    list-style: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #4A4A4A;
}

body,
html {
    height: 100%;
}

.hover_default {
    cursor: pointer;
    transition-duration: .1s;
}

.hover_default:hover {
    text-shadow: 0 0 1px #4A4A4A;
}

.hover_default:active {
    text-shadow: 0 0 1px #2E2E2E;
    color: #2E2E2E;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.page-title {
    margin-bottom: 80px;
}

.page-title span {
    font-weight: 500;
    font-size: 36px;
}

.page-title_center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.page-title_column {
	gap: 20px;
	flex-direction: column;
}

.page-title_animate span {
    position: relative;
}

.page-title_animate span:after {
    content: "";
    position: absolute;
    background: url("../images/o-p-animate.svg") no-repeat;
    width: 160px;
    height: 160px;
    top: -65px;
    right: -70%;
    background-position: center;
    animation: rotateCircle 8s linear infinite;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn {
    background: linear-gradient(103.05deg, #FFD600 -248.98%, #FF8A00 127.18%);
    box-shadow: 15px 15px 30px rgba(255, 138, 0, 0.2);
    border-radius: 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition-duration: .3s;
}

.btn:hover {
    box-shadow: 15px 15px 30px rgba(255, 138, 0, 0.4);
}

.btn:active {
    background: #EB7F00;
}

.btn img {
    width: 26px !important;
    margin-right: 6px;
}

.btn.btn_nofill {
    background: white;
    color: #FF8A00;
    border: 1px solid #FF8A00;
    transition-duration: .3s;
}

.btn.btn_nofill:hover {
    border: 2.5px solid #FF8A00;
}

.btn.btn_nofill:active {
    border: 2.5px solid #EB7F00;
    color: #EB7F00;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header_logo {
    width: 250px;
    cursor: pointer;
}

.header_logo img {
    width: 100%;
}

.header_location,
.header_time {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
}

.header_location {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: underline;
    cursor: pointer;
    text-shadow: 0px 0px 1px transparent;
}

.header_time:after {
    content: "";
    position: absolute;
    left: 0px;
    background: url("../icon/time.svg") no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.header_location:after {
    content: "";
    position: absolute;
    left: 2px;
    background: url("../icon/location.svg") no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.header_phone {
    display: flex;
    font-weight: 500;
    font-size: 24px;
    line-height: 20px;
    cursor: pointer;
    margin-bottom: 10px;
    transition-duration: .1s;
}

.header_phone:hover {
    color: #FF8A00;
}

.header_phone:active {
    color: #DE7800;
}

.header_phone img {
    margin-right: 5px;
}

.header_callback {
    position: relative;
    left: 26px;
    line-height: 20px;
    text-decoration-line: underline;
}

.header_burger {
    display: none;
}

.header_buttons .btn {
    width: 270px;
    height: 60px;
}

.header_burger .header_open-menu {
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
    background: white;
    border: 1px solid #FF9D01;
    transition-duration: .1s;
}

.header_burger .header_open-menu:hover {
    background: linear-gradient(103.05deg, #FFD600 -248.98%, #FF8A00 127.18%);
}

.header_burger .header_open-menu:after {
    content: "";
    width: 20px;
    height: 14px;
    background: url('../icon/menu.svg') no-repeat;
    position: absolute;
    background-size: contain;
    top: 12px;
    left: 9px;
}

.header_burger .header_open-menu:hover:after {
    background-image: url('../icon/menu_w.svg');
}

.header_burger .header_open-menu:active {
    background: #EB7F00;
}

.header_menu {
    width: 100%;
    background: #F6F6F6;
}

.header.sticky {
    position: fixed;
    top: 0;
	left: 0;
	right: 0;
    z-index: 40;
	background-color: #fff;
}

.header_menu.sticky .container {
    padding: 20px 0;
}

.header_menu ul:not(.drop ul) {
    display: flex;
    padding: 0 200px;
    justify-content: space-between;
    width: 100%;
}

.header_menu .drop {
    position: relative;
}

.header_menu .drop:after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    right: -14px;
    background: url(../icon/dropmenu.svg) no-repeat;
    top: 7px;
}

.header_menu .drop ul {
    display: none;
    position: absolute;
    left: 0;
    z-index: 10;
    top: 30px;
}

.header_menu .drop:before {
    content: "";
    width: 150px;
    height: 15px;
    z-index: 5;
    position: absolute;
    bottom: -14px;
}

.header_menu .drop:hover > ul {
    display: flex;
    flex-direction: column;
}

.header_menu .drop ul li {
    background: #FFFFFF;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    padding: 10px;
}

.header_menu .drop ul li:not(:last-child) {
    margin-bottom: 5px;
}

.header_menu .drop ul li a {
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    transition-duration: .1s;
}

.header_menu .drop ul li a:hover {
    text-shadow: 0px 0px 1px #4A4A4A;
}

.header_menu .drop ul li a:active {
    color: #2E2E2E;
    text-shadow: 0px 0px 1px #2E2E2E;
}

.header_menu ul a:not(.hover_default) {
    cursor: default;
}

.first-screen {
    position: relative;
}

.slider_item {
    position: relative;
}

.slider_item img.m1024 {
    display: none;
}

.slider_item img.m768 {
    display: none;
}

.slider_item img.m600 {
    display: none;
}

.slider_content {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((100% - 1000px) / 2);
    /*left: 410px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider_btns {
	display: flex;
	gap: 10px;
}

.slider_title, .slider_title h1 {
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
	color: inherit;
}

.slider_subtitle {
    font-size: 18px;
    line-height: 20px;
    margin: 40px 0;
}

.slider_item_white .slider_title {
    color: white;
}

.slider_item_white .slider_subtitle {
    color: white;
}

.slider_button {
	flex-shrink: 0;
    width: 270px;
    height: 60px;
}

.slider_dots {
    position: absolute;
    bottom: 75px;
    z-index: 10;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.slider_dots.slider_dots_black .owl-dot {
    background: white;
}

.slider_dots .owl-dot {
    width: 12px;
    height: 12px;
    background: #4A4A4A;
    border-radius: 50%;
    border: none;
    margin: 0 4px;
    cursor: pointer;
}
.image-22 {
	width: 40px;
	margin-right:15px;
}
.flexup {
    width:100%;	
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
	padding-bottom: 25px;
}
.maker {
        color: #001924;
    }
.slider_dots .owl-dot.active {
    background: #FF8A00;
}

.slider_nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.slider_nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: url("../icon/arrow_w.svg") no-repeat, #4A4A4A;
    background-size: 50%;
    background-position: center;
    cursor: pointer;
    z-index: 15;
    position: absolute;
    top: calc(50% - 20px);
    transition-duration: .1s;
}

.slider_nav button:hover {
    background-color: #FF9D01 !important
}

.slider_nav button:active {
    background-color: #EB7F00 !important
}

.slider_nav.slider_nav_black button {
    background: url("../icon/arrow_b.svg") no-repeat, white;
    background-size: 50%;
    background-position: center;
}

.slider_nav button span {
    color: transparent;
}

.slider_nav .owl-prev {
    left: calc((100% - 1200px) / 2);
}

.slider_nav .owl-next {
    right: calc((100% - 1200px) / 2);
    transform: rotate(180deg);
}

.advantages {
    margin-bottom: 60px;
}

.advantages .container {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: -50px;
    z-index: 10;
}

.advantages_item {
    width: calc((100% - 159px) / 4);
    padding: 42px 36px 44px 36px;
    background: #FFFFFF;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.advantages_item img {
    margin-bottom: 30px;
}

.advantages_title {
    text-align: center;
}

.our-product {
    margin-bottom: 230px;
}

.our-product_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.our-product_item {
    width: 45%;
    position: relative;
}

.our-product_item img {
    width: 100%;
    height: auto;
}

.mainpage .our-product_item:nth-child(2) {
    position: relative;
    top: 100px;
}

.mainpage .our-product_item:nth-child(3) {
    position: relative;
    top: 180px;
}

.our-product_content {
    padding: 28px 20px;
    width: 300px;
    background: #FFFFFF;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -35px;
    left: 50px;
}

.our-product_content ul {
    margin-top: 30px;
}

.our-product_content ul li {
    position: relative;
    padding: 0 0 0 20px;
}

.our-product_content ul li:after {
    content: "";
    width: 13px;
    height: 13px;
    position: absolute;
    left: 0;
    top: 5px;
    background: url(../images/list.svg) no-repeat;
    background-size: contain;
}

.our-product_content ul li:not(:last-child) {
    margin-bottom: 25px;
}

.our-product_link {
    font-weight: 500;
    font-size: 24px;
    line-height: 20px;
    transition-duration: .1s;
    display: block;
}

a.our-product_link {
    cursor: pointer;
}

a.our-product_link:hover {
    color: #FF9D01;
}

a.our-product_link:active {
    color: #DE7800;
}

.about {
    margin-bottom: 80px;
    position: relative;
}

.about .page-title_animate span:after {
    background: url("../images/o-p-animate-2.svg") no-repeat;
    background-position: center;
}

.about_bg {
    position: absolute;
    right: 75px;
    bottom: -145px;
}

.about .about_block {
    width: 450px;
}

.about_content p {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 20px;
}

.about .page-title span {
    position: unset;
}

.about .page-title span:after {
    right: 0;
}

.about .page-title {
    position: relative;
}

.reviews {
    padding: 85px 0;
    margin-bottom: 60px;
    background: #F6F6F6;
    overflow-x: hidden;
}

.reviews .container {
    position: relative;
}

.reviews_wrap {
    padding: 0 70px;
}

.reviews .owl-item:not(.active) {
    visibility: hidden;
}

.reviews .owl-stage-outer {
    overflow: unset;
}

.review_item {
    padding: 54px 30px 54px 41px;
    background: white;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}

.review_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.review_date {
    font-size: 18px;
    line-height: 30px;
}

.review_name {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}

.review_text {
    font-size: 18px;
    line-height: 30px;
    overflow: hidden;
}

.review_showmore {
    cursor: pointer;
    text-decoration: underline;
    margin-top: 40px;
    display: inline-block;
}

.review_showmore.active {
    margin-top: 0px;
}

.reviews_nav_mobile {
    display: none;
}

.review_nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.review_nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: url("../icon/arrow_w.svg") no-repeat, #FF8A00;
    background-size: 50%;
    background-position: center;
    cursor: pointer;
    z-index: 15;
    position: absolute;
    top: calc(50% - 20px);
}

.review_nav button span {
    color: transparent;
}

.review_nav .owl-prev {
    left: 0;
}

.review_nav .owl-next {
    right: 0;
    transform: rotate(180deg);
}

.our-works {
    overflow: hidden;
    margin-bottom: 80px;
}

.our-works .page-title {
    display: flex;
    align-items: center;
}

.our-works_nav {
    margin-left: 25px;
}

.our-works_nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: url("../icon/arrow_w.svg") no-repeat, #FF8A00;
    background-size: 50%;
    background-position: center;
    cursor: pointer;
    z-index: 15;
}

.our-works_nav button span {
    color: transparent;
}

.our-works_nav .owl-next {
    margin-left: 25px;
    transform: rotate(180deg);
}

.question_content {
    width: 450px;
    z-index: 1;
}

.question_bg {
    display: none;
}

.question_buttons {
    margin-top: 80px;
    display: flex;
}

.question_buttons .btn {
    width: 250px;
    height: 60px;
}

.question_buttons .btn:first-child {
    margin-right: 25px;
}

.question p {
    font-size: 18px;
    line-height: 30px;
}

.question .container {
    background: url("../images/q-bg.jpg") no-repeat;
    background-position: right bottom;
    padding: 75px 0;
    background-size: contain;
}

.footer {
    background: #F7F7F7;
    padding: 50px 0;
}

.footer_mobile-btn {
    display: none !important
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_logo {
    cursor: pointer;
}

.footer_logo,
.footer_logo img {
	max-width: 250px;
	max-height: 100px;
}

.footer_location,
.footer_time {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
}

.footer_location {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: underline;
    text-shadow: 0px 0px 1px transparent;
}

.footer_time:after {
    content: "";
    position: absolute;
    left: 0px;
    background: url("../icon/time.svg") no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.footer_location:after {
    content: "";
    position: absolute;
    left: 2px;
    background: url("../icon/location.svg") no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.footer_phone {
    display: flex;
    font-weight: 500;
    font-size: 24px;
    line-height: 20px;
    cursor: pointer;
    margin-bottom: 10px;
    transition-duration: .1s;
}

.footer_phone:hover {
    color: #FF8A00;
}

.footer_phone:active {
    color: #DE7800;
}

.footer_phone img {
    margin-right: 5px;
}

.footer_callback {
    position: relative;
    left: 26px;
    line-height: 20px;
    text-decoration-line: underline;
}

.footer_buttons .btn {
    width: 270px;
    height: 60px;
}

.footer_menu {
    padding: 75px 0 0 0;
}

.footer_menu nav {
    display: flex;
    width: 100%;
    padding: 0 120px;
}

.footer_menu .col {
    width: calc(100% / 5);
    display: flex;
    flex-direction: column;
}

.footer_menu_sublink {
    font-weight: 300;
}

.footer_menu_sublink_margin {
    margin: 35px 0;
}

.footer_bottom {
    padding: 90px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer_policy {
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 12px;
    text-decoration-line: underline;
    color: #949494;
    cursor: pointer;
}

.footer_copyrigth {
    color: #949494;
    font-size: 12px;
}

.banner {
    position: relative;
    margin-bottom: 130px;
}

.banner_bg {
    width: 100%;
}

.banner_content {
    position: absolute;
    left: calc((100% - 1200px) / 2);
    top: 0;
    bottom: 0;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_bg.m768,
.banner_bg.m500,
.banner_bg.mobile {
    display: none;
}

.banner.temp2 {
    background: #ECECEC;
}

.banner_title {
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 40px;
}

.banner_title.mobile {
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 40px;
    display: none;
}

.banner_subtitle {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 40px;
}

.banner_subtitle.mobile {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 40px;
    display: none;
}

.banner_btn {
    width: 270px;
    height: 60px;
}

.catalog {
    margin-bottom: 140px;
}

.catalog_container {
    display: flex;
}

.catalog .sidebar {
    width: 350px;
    margin-right: 80px;
}

.catalog .sidebar .page-title {
    line-height: 55px;
}

.catalog .woocommerce.columns-3 {
    width: calc(100% - 350px - 80px);
    padding: 143px 0 0 0;
}

.catalog .filter {
    padding: 38px 40px;
    background: #F6F6F6;
}

.catalog .filter .yith-wcan-filter:not(:last-child) {
    margin-bottom: 60px;
}

.catalog .filter .filter-title {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 30px;
}

.catalog .filter .filter_value:not(:last-child) {
    margin-bottom: 20px;
}

.catalog .filter .checkbox input+label:before {
    border-radius: 0px;
}

.catalog .color.yith-wcan-filter .color_wrap {
    display: flex;
    flex-wrap: wrap;
}

.catalog .color.yith-wcan-filter .color_item {
    width: 40px;
    height: 40px;
    margin: 0 15px 15px 0;
    border: none;
    display: block;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.catalog .color.yith-wcan-filter .color_item.active:after {
    content: "";
    background: url(../icon/check_filter.svg) no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    background-size: contain;
    top: 5px;
    left: 5px;
}

.catalog .filter_clear button {
    width: 100%;
    height: 50px;
    background: #DFDFDF;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition-duration: .1s;
}

.catalog .filter_clear button:hover {
    background: #A9A9A9;
}

.catalog .filter_clear button:active {
    background: #8C8C8C;
}

.filter_body {
    margin-bottom: 60px;
}

.cart {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.cart_item {
    width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 36px 95px 36px;
    background: #F6F6F6;
    margin-bottom: 40px !important
}

.cart_name {
    font-size: 18px;
    margin-bottom: 15px;
}

.cart_image {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.cart_image img {
    max-width: 100%;
}

.cart_price {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 25px;
}

.cart_button {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 36px;
}

.cart_color {
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
}

.cart_button .btn {
    width: 80%;
    height: 45px;
}

.pagination ul {
    width: 100%;
    display: flex;
    align-items: center;
}

.pagination ul li a,
.pagination ul li span {
    font-size: 18px;
    margin: 0 10px;
    transition-duration: .1s;
}

.pagination ul li .current {
    font-size: 24px;
    color: #FF9D01;
}

.pagination ul .next.page-numbers {
    position: relative;
    display: flex;
    align-items: center;
}

.pagination ul .next.page-numbers:after {
    content: "";
    width: 15px;
    height: 15px;
    margin-left: 5px;
    background: url(../icon/next.svg) no-repeat;
    background-position: center;
}

.pagination ul .next.page-numbers:hover {
    color: #FF9B01;
    text-shadow: none;
    text-decoration: none;
}

.pagination ul .prev.page-numbers {
    position: relative;
    display: flex;
    align-items: center;
}

.pagination ul .prev.page-numbers:before {
    content: "";
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: url(../icon/next.svg) no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

.pagination ul .prev.page-numbers:hover {
    color: #FF9B01;
    text-shadow: none;
    text-decoration: none;
}

.pagination ul .prev.page-numbers:hover:before {
    background: url(../icon/next_o.svg) no-repeat;
    background-position: center;
}

.pagination ul .prev.page-numbers:active {
    color: #DE7800;
}

.pagination ul .next.page-numbers:active {
    color: #DE7800;
}

.pagination .page-numbers:hover {
    text-decoration: underline;
    text-shadow: 0 0 1px #4A4A4A;
}

.pagination .page-numbers.dots:hover {
    text-shadow: none;
    text-decoration: none;
}

.pagination .page-numbers:active {
    text-shadow: 0 0 1px #2E2E2E;
    color: #2E2E2E;
}

.induce {
    height: 470px;
    margin-bottom: 140px;
}

.induce .container {
    display: flex;
    height: 100%;
}

.induce_content {
    width: 530px;
    padding-right: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.induce_title {
    margin-bottom: 60px;
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
}

.induce_btn {
    width: 270px;
    height: 60px;
}

.induce_image {
    position: relative;
    width: calc(100% - 530px);
}

.induce_image_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.induce_image_top {
    position: absolute;
    top: 0;
    right: 0;
}

.induce_image_animate {
    position: absolute;
    top: 0;
    left: 0;
    animation: rotateCircle 8s linear infinite;
}

.map {
    height: 690px;
    width: 100%;
}

.contact {
    position: relative;
    display: flex;
    align-items: center;
}

.contact_content {
    position: absolute;
    width: 440px;
    background: #F6F6F6;
    padding: 58px 44px;
    left: 120px;
    z-index: 10;

}

.contact_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.contact_row a {
    cursor: pointer;
    transition-duration: .1s;
}

.contact_row a:hover {
    text-shadow: 0 0 1px #4A4A4A;
}

.contact_row a:active {
    text-shadow: 0 0 1px #2E2E2E;
}

.contact_name {
    width: 30%;
    margin-right: 24px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.contact_name img {
    margin-right: 12px;
}

.contact_value {
    width: calc(100% - 30% - 24px);
    font-weight: 300;
}

.contact_value_phone a {
    font-weight: 300;
    font-size: 18px;
}

.contact_value_underline {
    text-decoration: underline;
}

.contact_btn {
    width: 250px;
    height: 60px;
}

.contact_title {
    margin-bottom: 60px;
}

.call {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.call_bg {
    position: absolute;
    bottom: -70px;
    left: calc((100% - 1200px) / 2);
}

.call .container {
    display: flex;
}

.call .page-title {
    margin-bottom: 55px;
}

.call_content {
    width: 50%;
    padding-right: 160px;
}

.call_content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
}

.call_form {
    width: 50%;
}

.call_form form {
    border: 1px solid #FF8A00;
    border-radius: 18px;
    padding: 60px 33px;
}

.form_row {
    margin-bottom: 30px;
}

.form_row.row {
    display: flex;
}

.call .form_row.row .form_item:first-child {
    width: 60%;
    padding-right: 15px;
}

.call .form_row.row .form_item:last-child {
    width: auto;
}

.form_item {
    display: flex;
    flex-direction: column;
}

.form_item label {
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 10px;
}

.form_item .input {
    background: #DFDFDF;
    border-radius: 5px;
    padding: 0 15px;
    font-weight: 300;
    font-size: 12px;
    height: 46px;
    border: none;
}

.form_item textarea {
    height: 150px !important;
    padding: 15px !important;
    resize: none;
}

.form_item.row {
    flex-direction: row;
}

.call_btn {
    margin: 0 auto;
    width: 270px;
    height: 60px;
}

.glazing {
    margin-bottom: 140px;
}

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

.glazing_item {
    width: calc((100% - 120px) / 4);
    background: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}

.glazing_item img {
    width: 100%;
}

.glazing_content {
    padding: 40px 25px 120px 25px;
}

.glazing_name {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 35px;
}

.glazing_prop li {
    position: relative;
    padding: 0 0 0 24px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.glazing_prop li:not(:last-child) {
    margin-bottom: 24px;
}

.glazing_prop li:after {
    content: "";
    background: url('../images/list.svg') no-repeat;
    position: absolute;
    width: 15px;
    height: 10px;
    left: 0;
    background-size: contain;
}

.glazing_item .btn {
    width: 220px;
    height: 45px;
    position: absolute;
    bottom: 40px;
    font-size: 16px;
}

.promotion {
    margin-bottom: 140px;
}

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

.promotion_item {
    width: calc((100% - 40px) / 2);
    position: relative;
    padding: 70px 200px 70px 45px;
    background: #F6F6F6;
}

.promotion_bg {
    position: absolute;
    top: 45px;
    right: 25px;
}

.promotion_title {
    font-weight: 500;
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 40px;
}

.promotion_item .btn {
    width: 220px;
    height: 45px;
}

.decor {
    margin-bottom: 140px;
}

.decor_item {
    padding: 95px 45px;
    border-radius: 15px;
    border: 2px solid #FF8A00;
    position: relative;
}

.decor_item:not(:last-child) {
    margin-bottom: 80px;
}

.decor_content {
    width: 385px;
}

.decor_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 40px;
}

.decor_content ul li {
    margin-bottom: 30px;
    position: relative;
    padding: 0 0 0 26px;
}

.decor_content ul li:after {
    content: "";
    background: url('../images/list2.svg') no-repeat;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 2px;
    background-size: contain;
}

.decor_bg {
    position: absolute;
    right: 60px;
    top: 20px;
    bottom: 20px;
    height: 94% !important
}

.mobile_menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    background: #F6F6F6;
    display: none;
    flex-direction: column;
    padding: 40px 35px;
}

.mobile_menu.active {
    display: flex;
}

.menu_row {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.menu_row.between {
    justify-content: space-between;
}

.menu_row.g-center {
    align-items: center;
}

.menu_logo {
    width: 160px;
    cursor: pointer;
}

.menu_logo img {
    width: 100%;
}

.menu_close {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: white;
    border: 1px solid #FF8A00;
    border-radius: 50%;
}

.menu_close:after {
    content: "";
    width: 12px;
    height: 12px;
    background: url('../icon/close.svg') no-repeat;
    position: absolute;
    left: calc(50% - 5px);
    top: calc(50% - 5px);
}

.menu_row nav {
    margin: 0 auto;
}

.menu_row nav ul {
    text-align: center;
}

.menu_row nav ul a {
    font-size: 14px;
}

.menu_row nav ul li:not(:last-child) {
    margin-bottom: 25px;
}

.menu_row.center {
    justify-content: center;
}

.menu_row.address {
    margin-bottom: 5px;
}

.menu_row.address a {
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    text-decoration-line: underline;
    position: relative;
}

.menu_row.address a:after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../icon/location.svg) no-repeat;
    position: absolute;
    left: -20px;
    background-size: contain;
}

.menu_row.schedule {
    margin-bottom: 45px;
}

.menu_row.schedule span {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    position: relative;
}

.menu_row.schedule span:after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../icon/time.svg) no-repeat;
    position: absolute;
    left: -20px;
    background-size: contain;
}

.menu_row.phone {
    margin-bottom: 10px;
}

.menu_row.phone a {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    position: relative;
}

.menu_row.phone a:after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../icon/phone.svg) no-repeat;
    position: absolute;
    left: -25px;
    background-size: contain;
    top: 2px;
}

.menu_row.callback {
    margin-bottom: 30px;
}

.menu_row.callback a {
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    text-decoration-line: underline;
}

.menu_row .btn {
    width: 180px;
    height: 40px;
    font-weight: 500;
    font-size: 12px;
}

.menu_row .btn img {
    width: 18px !important
}

.window-form_inner {
    width: 550px;
}

.window-form .page-title {
    margin-bottom: 60px;
}

.window-form .form_row.row .form_item:first-child {
    width: calc(65% - 15px);
    margin-right: 15px;
}

.window-form .form_row.row .form_item:last-child {
    width: 35%;
}

.window-form .form_row.row {
    margin-bottom: 50px;
}

.window-form .btn {
    width: 270px;
    height: 60px;
}

.window-form {
    margin-bottom: 130px;
    position: relative;
}

.window-form_bg {
    position: absolute;
    right: calc((100% - 1200px) / 2);
    bottom: -130px;
}

.window-form_bg-mob {
    display: none;
}

.window-form .page-title.mob {
    display: none;
}

.call_form .checkbox input+label:before {
	position: relative;
	top: 5px;
}

.checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkbox input+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

.checkbox input+label:before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    width: 20px;
    height: 20px;
    background: #DFDFDF;
    border-radius: 5px;
    margin-right: 15px;
    border: 1px solid #DFDFDF;
}

.checkbox input:checked+label:before {
    background: url(../images/check.svg), #DFDFDF;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    top: 5px;
}

.call_form .policy {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
}

.providers_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.providers_item {
    width: 26%;
    margin-bottom: 50px;
}

.providers {
    margin-bottom: 90px;
}

.catalog .section {
    display: flex;
    justify-content: space-between;
}

.catalog .section_col {
    width: calc(50% - 30px);
}

.catalog .section_col:nth-child(2) {
    padding: 50px 0 0 0;
}


.catalog .section_item {
    width: 100%;
}

.catalog .section_link {
    width: 300px;
    background: #FFFFFF;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
    padding: 28px 20px;
    position: relative;
    left: 50px;
    bottom: 100px;
}

.catalog.furniture {
    margin: 0;
}

.catalog .section_item img {
    width: 100%;
}

.catalog .section_link__root {
    margin-bottom: 50px;
    font-weight: 500;
    font-size: 24px;
    line-height: 20px;
}

.catalog .section_link__sublink:not(:last-child) {
    margin-bottom: 40px;
}

.catalog .section_link__sublink {
    font-size: 18px;
    position: relative;
    display: flex;
    align-items: center;
}

.catalog .section_link__sublink:before {
    content: "";
    width: 20px;
    height: 12px;
    background: url(../images/list.svg) no-repeat;
    margin-right: 10px;
}

.question.furniture .container {
    background-image: url(../images/furn-bg.png);
}

.question.furniture {
    margin-bottom: 100px;
}

.overlay {
    display: none;
    position: fixed;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.3);
}

.overlay.active {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 60;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.modal.active {
    display: flex;
}

.modal_inner {
    padding: 50px 70px;
    width: 600px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    position: relative;
}

.modal .form {
    display: none;
}

.modal .form.active {
    display: block;
}

.modal .form .form_item {
    width: 100%;
}

.modal .form .form_item .input {
    border-radius: 10px;
}

.modal .form .form_title {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 24px;
}

.modal .form .btn {
    width: 200px;
    height: 50px;
    font-size: 14px;
    line-height: 18px;
}

.modal .form .form_row:last-child {
    margin: 0;
}

.modalclose {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    background: url(../images/close.svg),#C4C4C4;
    background-repeat: no-repeat;
    background-size: 45%;
    background-position: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition-duration: .1s;
}

.modalclose:hover {
    background-color: #A9A9A9;
}

.modalclose:active {
    background-color: #8C8C8C;
}

.modal .message {
    display: none;
}

.modal .message.active {
    display: block;
    padding-left: 20px;
}

.modal .message_title {
    font-size: 24px;
    line-height: 24px;
    color: #FF8A00;
    margin-bottom: 20px;
    position: relative;
}

.modal .message_title:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url(../icon/success.svg) no-repeat;
    left: -60px;
    top: -8px;
}

.modal .message_subtitle {
    font-size: 18px;
    line-height: 30px;
}

.filter .yith-wcan-filter li span.count {
    display: none;
}

.yith-wcan-filters {
    background: none;
}

.yith-wcan-filters .yith-wcan-filter .filter-items.filter-color {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color {
    overflow: hidden;
    margin: 0 15px 15px 0;
    width: auto;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-color {
    border-radius: 0;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-color:hover {
    border: none;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active.color > a:after {
    content: "" !important;
    background: url(../icon/check_filter.svg) no-repeat;
    left: 13px;
    width: 20px;
    height: 20px;
    top: 11px;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-color .color-swatch,
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.color .term-color {
    width: 40px;
    height: 40px;
    border: none;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > label > a:hover {
    position: relative;
    color: #4A4A4A;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > label > a:active {
    color: #4A4A4A;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > label > a {
    position: relative;
    display: flex;
    align-items: center;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > label > a:before {
    content: "";
    width: 20px;
    height: 20px;
    background: #DFDFDF;
    margin-right: 12px;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active > label > a:after {content: "";
    content: "";
    width: 14px;
    height: 14px;
    background-position: center center;
    background: url(../icon/check_filter.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 3px;
    top: 9px;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active > label > a {
    color: #4A4A4A;
}

.woocommerce .blockUI.blockOverlay {
    display: none !important
}

.owl-carousel .owl-item img {
    height: auto;
}

input.no_valid::placeholder,
textarea.no_valid::placeholder {
    color: #FF4242;
}

label.no_valid_checkbox:before {
    border: 1px solid #FF4242 !important
}

label.policy {
    display: inline !important
}

label.policy a {
    text-decoration: underline;
}

.goup {
    position: fixed;
    bottom: 50px;
    right: 100px;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 5px 5px 30px rgb(0 0 0 / 14%);
    z-index: 25;
    background: url("../icon/arrow_w.svg") no-repeat, #333;
    background-size: 50%;
    background-position: center;
    border: none;
    transform: rotate(90deg);
}

.gocall {
	background: url("../icon/phone_w.svg") no-repeat, linear-gradient(103.05deg, #FFD600 -248.98%, #FF8A00 127.18%);
	position: fixed;
    bottom: 100px;
    right: 100px;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
	box-shadow: 5px 5px 30px rgb(0 0 0 / 14%);
    z-index: 25;
    animation: pulsetwo 1s linear infinite;
    background-position: center;
}

@keyframes pulsetwo {
    0% {
        transform: scale(1.03);
    }

    20% {
        transform: scale(1.06);
    }

    50% {
        transform: scale(1.1);
    }

    60% {
        transform: scale(1.06);
    }

    80% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.preloader:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/preload.svg) no-repeat, white;
    z-index: 20;
    background-position: center;
}

.preloader {
    height: 500px;
    z-index: 5;
}

.preloader img {
    visibility: hidden !important;
}

.preloader .slider_content {
    visibility: hidden !important;
}

/*  */

.popup {
	position: fixed;
	z-index: 9999;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
}

.popup-block {
	position: relative;
	z-index: 9999;
	padding: 40px 30px;
	max-width: 600px;
	width: 100%;
	background-color: #fff;
}

.popup-bg {
	position: fixed;
	z-index: 9998;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, .3);
}

.popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background-color: #C4C4C4;
	background-image: url('/wp-content/themes/homeorion/assets/images/close.svg');
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center;
	border-radius: 100%;
}

.popup-title {
	font-size: 32px;
    text-align: center;
}

.popup-text {
	text-align: center;
    margin-top: 20px;
}

#wpforms-submit-579 {
	height: 60px;
    background: linear-gradient(103.05deg, #FFD600 -248.98%, #FF8A00 127.18%);
    box-shadow: 15px 15px 30px rgba(255, 138, 0, 0.2);
    border-radius: 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition-duration: .3s;
}

#wpforms-submit-579:hover {
    box-shadow: 15px 15px 30px rgba(255, 138, 0, 0.4);
}

#wpforms-submit-579:active {
    background: #EB7F00;
}

#wpforms-579-field_3 {
	height: 120px;
	resize: none;
}

/*  */

.vidy {
	margin-bottom: 140px;
}

.vidy-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 255px;
	grid-auto-rows: 255px;
	gap: 20px;
}

.vidy-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding: 30px;
}

.vidy .btn {
	margin-top: auto;
	height: 45px;
	padding: 0 25px;
}

.vidy-title {
	font-size: 24px;
	font-weight: 600;
}

@media screen and (max-width: 991px) {
	.vidy-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 700px) {
	.vidy-list {
		grid-template-columns: 1fr;
	}
}

.slider_btns .marquiz__container {
	width: auto;
}

.slider_btns .marquiz__button {
	height: 60px;
	font-size: 18px;
}

.small-form {
	margin-bottom: 140px;
}

.small-form-2 {
	margin-top: 240px;
}

.small-form__content {
	padding: 30px;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	align-items: center;
	gap: 30px;
	background: #F6F6F6;
	box-shadow: 5px 5px 30px rgba(0,0,0,.1);
}

.small-form__text {
	font-size: 18px;
	line-height: 130%;
}

.small-form__content .btn {
	height: 60px;
}

@media screen and (max-width: 991px) {
	.small-form__content {
		grid-template-columns: 1fr;
	}
	
	.small-form__text {
		font-size: 16px;
	}
}