/* variables */
:root {
    --bg-color-white-theme: radial-gradient(circle at center, #ffffff 0%, #f4f4f4 100%);
    /* --bg-color-white-theme: #F4F4F4; */
    --bg-color-dark-theme: radial-gradient(circle at center, #351c18 0%, #0d1529 100%) ;
    --text-white-theme: #282828;
    --text-dark-theme: #ffffff;
    --btn-bg-white-theme: #f3234a;
    --btn-bg-dark-theme: #FFA800;
    --btn-text-white-theme: #ffffff;
    --btn-text-dark-theme: #282828;
    --link-white-theme: #f3234a;
    --link-dark-theme: #FFA800;
    --icon-white-theme: #f3234a;
    --icon-dark-theme: #FFA800;
    --border-color-white-theme: #dddddd;
    --border-color-dark-theme: #57596E;
    --item-bg-white-theme: #ffffff;
    --item-bg-dark-theme: #020926;
    --img-bg: #dddddd;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    pointer-events: none;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* СБРОС СТАНДАРТНИX СТИЛІВ */
*,
*::before,
*::after {
    box-sizing: border-box;
    outline: none;
    outline: none;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

ul,
ol {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration-skip-ink: auto;
}

img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: all .4s ease;
}

img.img_sh {
    filter: brightness(0.5);
}

article>*+* {
    margin-top: 1em;
}

article a {
    text-decoration: underline;
}

input,
button,
textarea,
select {
    font: inherit;
    transition: all .4s ease;
}

input {
    height: 44px;
    width: 100%;
    font-size: 13px;
    color: #727272;
    padding-left: 40px;
    background-color: #ffffff;
    border: 1px solid var(--border-color-white-theme);
}

.radius input {
    border-radius: 5px;
}

input.without_label {
    padding-left: 10px;
}

input:focus {
    border-color: #111;
    transition: all .4s ease;
}

input.error {
    border-color: red;
    transition: all .4s ease;
}

form label {
    position: absolute;
    top: 13px;
    left: 12px;
}

form span {
    font-size: 12px;
    color: #727272;
    display: flex;
    align-items: center;
    justify-content: center;
}

form span .svg_icon {
    fill: #09C500;
}

form .row+.row {
    margin-top: 12px;
}

form .btn {
    margin: 20px auto 25px;
}

img {
    position: relative;
    overflow: hidden
}
img[alt]::after,
img[data-lazy]::after {  
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--img-bg);
    font-family: 'Helvetica';
    font-size: 0;
    text-align: center;
    content: attr(alt);
}

/* ЗАГАЛЬНІ СТИЛІ */
body {
    font: normal 16px/1.35 Arial, sans-serif;
}

section,
article {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 50px 0;
    background: var(--bg-color-white-theme);
}

* > article {
    background: transparent;
}

.item {
    background: var(--item-bg-white-theme);
    position: relative;
}

.container {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 10px;
}

.svg_icon {
    width: 20px;
    height: 20px;
    fill: grey;
    margin-right: 5px;
}

.site_header .svg_icon,
.footer .svg_icon {
    fill: var(--icon-white-theme);
}

.site_header a,
.footer a {
    color: var(--link-white-theme);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .4s ease;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 100%;
    color: var(--btn-text-white-theme);
    background-color: var(--btn-bg-white-theme);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    transition: all .4s ease;
}

.radius .btn {
    border-radius: 8px;
}

a.btn:hover {
    opacity: .75;
    transition: all .4s ease;
}

a:not(.btn):hover {
    opacity: .55;
    transition: all .4s ease;
}

.title,
article h1 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 32px;
    text-transform: uppercase;
    text-align: center;
}

.subtitle,
article h2 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 32px;
}

.title_sm {
    font-size: 24px;
    margin-bottom: 25px;
}

/* СТАТТЯ  */
article p {
    margin-bottom: 12px;
}

article ol,
article ul {
    padding-left: 40px;
    margin: 20px 0;
}

article ul {
    list-style: disc;
}

article ol {
    list-style: decimal;
}

table {
    width: 100%;
    min-width: 850px;
    border-collapse: separate;
    padding: 10px;
    background: #fff;
    border-spacing: 0 7px;
    margin: 0 auto;
}

.radius table {
    border-radius: 10px;
}

tr:not(:first-child) {
    background-color: #f4f4f4;
    border-spacing: 10px 0;
}

tr:first-child,
tr:first-child td {
    border: none;
    color: #727272;
}

td {
    padding: 10px 5px;
    font-weight: 600;
    border: 1px solid transparent;
}

.radius td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.radius td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.content_text {
    padding: 0;
    color: var(--text-white-theme);
    background-color: var(--bg-color-white-theme);
}

.dark .content_text {
    color: var(--text-dark-theme);
    background-color: var(--bg-color-dark-theme);
}

.content_text.top_text {
    margin-bottom: 25px;
    padding: 0;
}

.content_text.bottom_text {
    margin-top: 25px;
    padding: 0;
}

.banner_text {
    text-align: left;
    color: var(--text-white-theme);
    max-width: 700px;
}

.banner_text .title,
.banner_text .subtitle,
.banner_text .title_sm {
    text-align: left;
    line-height: 1.3;
}

.fig_title {
    font-size: 18px;
    margin-bottom: 22px;
    font-weight: bold;
    color: var(--text-white-theme);
}

.fig_sub_title {
    font-size: 14px;
}

.row {
    position: relative;
    width: 100%;
}

.shadow .item,
.shadow .step_content,
.shadow .r_content,
.shadow .banner_form,
.shadow .product_details-description,
.shadow .product_gallery {
    box-shadow: 0 0 7px rgb(0 0 0 / 30%);
}

.radius .item,
.radius .item img,
.radius .step_content,
.radius .r_content,
.radius .gallery_main-wrap,
.radius .banner_form,
.radius .gallery_item-inner {
    border-radius: 8px;
}

.radius .radius_sm,
.radius .radius_sm .table_row {
    border-radius: 6px;
}

.shadow a.item {
    display: inline-block;
    transition: all .4s ease;
}

.shadow a.item:hover {
    box-shadow: 0px 1px 15px rgba(40, 40, 40, 0.9);
    transition: all .4s ease;
}

figure {
    text-align: center;
}

figure img {
    margin-bottom: 20px;
}

.slick-arrow {
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 11;
    background-color: transparent;
    font-size: 0;
    padding: 0;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 2px solid #282828;
    cursor: pointer;
}

.slick-arrow.slick-disabled {
    opacity: 0.5;
}

.dark .slick-arrow {
    border-color: #fff;
}

.slick-arrow:hover {
    border-color: transparent;
}

.slick-next.slick-arrow {
    left: auto;
    right: 10px;
    transform: scale(-1);
}

.slick-arrow:after,
.slick-arrow:before {
    content: '';
    background-color: #282828;
    position: absolute;
    top: 7px;
    left: 15px;
    width: 2px;
    height: 12px;
    transform: rotate(45deg);
}

.dark .slick-arrow:after,
.dark .slick-arrow:before {
    background-color: #fff;
}

.slick-arrow:before {
    top: 15px;
    transform: rotate(-45deg);
}

.slick-dots {
    display: flex;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.slick-dots li {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
}

.slick-dots li.slick-active {
    border: 2px solid #F3234A;
}

.slick-dots li.slick-active button {
    background: #F3234A;
}

.slick-dots li button {
    padding: 0;
    font-size: 0;
    width: 8px;
    height: 8px;
    background: #282828;
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tile .slick-slide {
    margin:  0 12px;
}

.tile .slick-list {
    padding: 10px 5px !important;
}

.checkbox {
    position: relative;
    height: 100%;
    cursor: pointer;
}

.checkbox:before,
.checkbox:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 27px;
    height: 27px;
    border: 1px solid #727272;
    background-color: #fff;
}

.radius .checkbox:before, 
.radius .checkbox:after {
    border-radius: 6px;
}

.checkbox:after {
    z-index: -1;
    left: 50%;
    top: 53%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    border: none;
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='14px' height='14px' fill='white'><path d='M31.706 7.133l-2.839-2.839c-0.393-0.393-1.026-0.393-1.419 0l-14.515 15.324-8.32-8.324c-0.397-0.397-1.041-0.397-1.438 0l-2.876 2.878c-0.397 0.396-0.397 1.040 0 1.438l11.833 12.108c0.229 0.23 0.54 0.309 0.839 0.27 0.309 0.046 0.631-0.032 0.868-0.27l17.867-19.165c0.392-0.392 0.392-1.028 0-1.42z'></path></svg>");
}

.checkbox.active:before {
    background-color: #F3234A;
    border-color: #F3234A;
}

.checkbox.active:after {
    z-index: 1;
}

/* ХЕДЕР */
.site_header {
    width: 100%;
    position: relative;
    padding: 8px 0;
}

.site_header::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--bg-color-white-theme);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.header_inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 150px;
    height: auto;
}

.logo a {
    display: block;
    width: 100%;
}

.top_menu li a {
    color: var(--text-white-theme);
}

#burger {
    width: 40px;
    height: 40px;
    position: relative;
    padding: 5px 7px;
    order: -1;
}

#burger span {
    display: block;
    background-color: #282828;
    width: 100%;
    height: 2px;
    margin: 6px 0;
}

.top_menu_wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-1000px);
    z-index: 100000;
    transition: all .4s linear;
}

.top_menu_wrap_open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: all .4s linear;
}

.top_menu_close {
    background-color: rgba(0, 0, 0, .8);
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

.top_menu_close:after,
.top_menu_close:before {
    position: absolute;
    content: '';
    width: 24px;
    height: 2px;
    top: 30px;
    right: 4%;
    background-color: #fff;
    display: block;
    transform: rotate(45deg);
}

.top_menu_close:before {
    transform: rotate(-45deg);
}

.top_menu {
    position: fixed;
    min-width: 270px;
    width: 80%;
    background-color: var(--bg-color-white-theme);
    height: 100%;
    overflow-y: auto;
}

.top_menu ul {
    padding: 0;
    margin: 0;
}

.top_menu ul li {
    width: 100%;
}

.top_menu ul li a {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 10px;
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}

.phone_container {
    display: block;
    text-align: right;
    line-height: 0;
    padding-left: 30px;
    position: relative;
}

.phone_container .call_us {
    font-size: 0;
    display: none;
}

.phone_container .call_us.mobile {
    display: block;
}

.phone_container .write_us {
    display: none;
}

.phone_container .call_us .svg_icon {
    width: 24px;
    height: 24px;
    margin-right: 0;
    /* position: absolute; */
    left: 0;
}

/* БАННЕР */
.banner {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    background: center / cover no-repeat;
}

.banner.parallax {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.banner>.container {
    z-index: 1;
}

.banner.banner_not-form .banner_text {
    min-width: 100%;
    text-align: center;
}

.banner.banner_not-form .banner_text .title, 
.banner.banner_not-form .banner_text .subtitle, 
.banner.banner_not-form .banner_text .title_sm {
    text-align: center;
}

.banner:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(2555, 255, 255, .5);
}

.banner_inner {
    position: relative;
    display: flex;
    flex-direction: column;
}

.banner_form header {
    margin-bottom: 23px;
}

.banner_form {
    width: 100%;
    max-width: 351px;
    margin: 65px auto 0;
    padding: 30px 17px 30px;
    text-align: center;
    background-color: #fff;
}

.banner_form form {
    padding: 0 10px;
}

.banner_form .title {
    text-transform: uppercase;
    margin: 0 auto 13px;
    font-weight: 900;
    padding: 0 15px;
    font-size: 18px;
    line-height: 24px;
}

.banner_form .subtitle {
    font-size: 14px;
    color: #727272;
    margin-bottom: 20px;
    font-weight: normal;
}

/* ПЕРЕВАГИ */
.advantages .item {
    padding: 25px 30px;
    background-color: var(--item-bg-white-theme);
    z-index: 1;
}

.advantages .item img {
    font-size: 0;
    width: 65px;
    height: 65px;
    margin-bottom: 25px;
}

/* МИ ПРОПОНУЄМО */
.we_offer .item {
    color: var(--text-white-theme);
    background-color: var(--item-bg-white-theme);
}

.we_offer .item img {
    font-size: 0;
    height: 256px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* ПРИКЛАДИ РОБІТ  */

.our_work .item {
    margin: 0 10px;
    color: var(--text-white-theme);
    background-color: var(--item-bg-white-theme);
}

.our_work.radius .item {
    margin: 0 12px 10px 12px;
}

.our_work .item figure img {
    font-size: 0;
    height: 375px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.our_work .fig_title {
    font-size: 16px;
    padding: 0 10px;
}

/* ДОДАТКОВІ ПОСЛУГИ */
.add_services_table_wrap {
    width: 100%;
    position: relative;
}

.swipe_wrap {
    color: var(--text-white-theme);
    width: 100%;
    position: relative;
    overflow-x: auto;
}

.add_services_table {
    min-width: 1110px;
    background-color: #fff;
    padding: 14px 14px 0px;
}

.add_services.radius .add_services_table {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.table_row {
    background-color: #F4F4F4;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 10px 0 25px;
}

.table_row:not(:last-child) {
    margin-bottom: 7px;
}

.table_row>td {
    color: #282828;
    font-weight: bold;
    font-size: 15px;
    min-width: 142px;
}

.table_row>td.checkbox {
    min-width: 60px;
}

.table_row>td:first-child {
    width: 100%;
    max-width: 355px;
    flex-shrink: 0;
}

.table_row input {
    width: 60px;
    height: 27px;
    padding-left: 0;
    background: transparent;
    text-align: center;
    color: #282828;
}

.table_title_row {
    background-color: transparent;
}

.table_title_row>div {
    color: #727272;
    font-weight: normal;
}

.table_title_row>div:last-child {
    min-width: 60px;
    text-align: center;
}

.table_row_bottom {
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff;
    height: auto;
    padding: 10px;
}

.radius .table_row_bottom {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.table_row_bottom div.top_part {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
}

.table_row_bottom .top_part a {
    line-height: 1.2;
    color: #F3234A;
    text-align: center;
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    border-bottom: 1px solid;
    width: max-content;
    margin: 0 50%;
    white-space: nowrap;
}

.table_row_bottom .top_part span {
    font-size: 15px;
    color: #727272;
    margin: 15px 0;
}

.table_row_bottom .top_part .total_sum {
    font-size: 24px;
    font-weight: bold;
    color: #282828;
    margin: 15px 0 9px 15px;
}

.table_row_bottom a.btn {
    margin: 0 auto;
    width: 180px;
    text-transform: capitalize;
    font-weight: bold;
}

/* ПРОЦЕС СПІВПРАЦІ */
.process_tree {
    width: 100%;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.pr_step {
    display: flex;
    justify-content: flex-end;
    width: auto;
    position: relative;
    margin-left: 30px;
    padding-bottom: 30px;
}

.pr_step+.pr_step {
    margin-top: 11px;
}

.pr_step:after {
    content: '';
    position: absolute;
    bottom: 0;
    top: 77px;
    left: 0;
    transform: translateX(-50%);
    width: 5px;
    height: auto;
    background-color: #cacaca;
    border-radius: 8px;
}

.pr_step:last-child:after {
    display: none;
}

.pr_step .step_number {
    position: absolute;
    z-index: 11;
    left: 0;
    transform: translateX(-50%);
    width: 66px;
    height: 66px;
    color: #fff;
    border: 8px solid #F7E1B7;
    background-color: #0059AC;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radius .pr_step .step_number {
    border-radius: 50%;
}

.pr_step .step_content {
    position: relative;
    overflow: visible;
    width: calc(100% - 60px);
    padding: 20px;
    color: var(--text-white-theme);
    background-color: var(--item-bg-white-theme);
    text-align: left;
}

.pr_step .step_content:after {
    content: '';
    position: absolute;
    top: 43px;
    left: -19px;
    border: 10px solid transparent;
    border-right: 10px solid #fff;
    /* border-bottom: 10px solid #fff; */
}

.shadow .pr_step .step_content:after {
    filter: drop-shadow(-4px 2px 2px rgba(40, 40, 40, 0.23));
}

.step_content .fig_title {
    color: #F3234A;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: left;
}

.step_content .fig_sub_title {
    color: #727272;
}

.step_content .apply {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    color: #F3234A;
    border-bottom: 1px solid #F3234A;
    margin-top: 10px;
    width: max-content;
    display: flex;
}

.work_process_inner a.btn {
    width: 100%;
    margin-top: 50px;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    filter: none;
    text-transform: none;
}

/* КАТАЛОГ */
.catalog .slick-list {
    padding: 10px 5px;
}

.catalog .item {
    color: var(--text-white-theme);
    margin: 0 12px 10px 12px;
    background-color: var(--item-bg-white-theme);
}

.catalog .item figure img {
    font-size: 0;
    height: 253px;
    object-fit: cover;
}

.catalog figure {
    text-align: left;
}

.catalog figcaption {
    padding: 0 25px 25px;
}

.catalog .fig_bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.catalog .price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    width: auto;
}

.catalog a.btn {
    width: 140px;
    font-weight: bold;
    text-transform: capitalize;
}

/* НОВИНИ */
.news figure {
    text-align: left;
}

.news figcaption {
    padding: 0 25px 25px;
}

.news .fig_sub_title {
    color: #727272;
}

.news .item img {
    font-size: 0;
    height: 300px;
}

.news .fig_bottom {
    display: flex;
    margin-top: 20px;
    color: #727272;
}

.news .fig_bottom>div {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-right: 30px;
}

.news .fig_bottom>div .svg_icon {
    width: 16px;
    height: 16px;
}

/* ВІДГУКИ */
.reviews .item {
    position: relative;
    margin: 0 5px;
    background-color: transparent;
    box-shadow: none !important;
}

.author_foto {
    position: relative;
    width: 90px;
    height: 90px;
    overflow: hidden;
    overflow: hidden;
    margin: 0 auto 0;
    transform: translateY(-45px);
}

.radius .author_foto {
    border-radius: 50%;
}

.radius .author_foto img {
    font-size: 0;
}

.r_content {
    color: var(--text-white-theme);
    text-align: center;
    padding: 0 25px 25px;
    margin: 50px auto 25px;
    overflow: visible;
    background-color: var(--item-bg-white-theme);
}

.r_text {
    margin: -20px auto 20px;
    font-style: italic;
}

.r_author {
    font-size: 14px;
    font-weight: bold;
}

.r_city,
.r_author_date {
    font-size: 12px;
    color: #727272;
}

.r_gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}

.radius .r_gallery img {
    border-radius: 5px;
    font-size: 0;
}

/* ВІДГУКМ ПРО НАШІ РОБОТИ */
.reviews_work .item {
    color: var(--text-white-theme);
    padding: 20px 20px 0;
    background-color: var(--item-bg-white-theme);
}

.rw_item_title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviews_work .author_foto {
    transform: none;
    width: 40px;
    height: 40px;
    margin: 0 12px 0 0;
}

.reviews_work .author_foto img {
    font-size: 0;
}

.rw_item_text {
    font-size: 14px;
    margin-bottom: 10px;
}

.rw_item_bottom {
    background-color: #F1F1F1;
    padding: 0 18px;
    height: 48px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #727272;
    margin: auto -20px 0;
}

.radius .rw_item_bottom {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.reviews_work .item>div {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.reviews_work .item>div .svg_icon {
    width: 14px;
    height: 14px;
}

.comment_original a {
    border-bottom: 1px solid;;
    color: var(--link-white-theme)
}

.inner_dark .comment_original a {
    color: var(--link-dark-theme)
}

/* ФОТОГАЛЕРЕЯ */
.foto_gallery figure img {
    margin-bottom: 0;
    font-size: 0;
}

/* ЗАЛИШИЛИСЬ ПИТАННЯ */
.question_inner a.btn {
    width: 100%;
    filter: none;
}

/* ФУТЕР */
.footer {
    background-color: var(--bg-color-white-theme);
    color: var(--text-white-theme);
    padding: 40px 0;
}

.footer_top {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin-bottom: 45px;
}

.footer_top .logo {
    max-width: 300px;
    margin-bottom: 20px;
}

.footer_top .write_us {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
    max-width: max-content;
    border-bottom: 1px solid;
}

.footer_top .foo_adv {
    font-size: 13px;
}

.foo_col {
    position: relative;
}

.foo_col_content {
    margin-left: 30px;
    display: flex;
    flex-direction: column;
}

.footer_top .svg_icon {
    width: 16px;
    height: 16px;
    position: absolute;
}

.footer_top a.map {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
    border-bottom: 1px solid;
    width: max-content;
}

.footer_top .foo_subtitle {
    font-size: 14px;
    font-weight: bold;
}

.footer_top .foo_title {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer_bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 13px;
    color: #282828;
    opacity: 0.5;
}

.foo_col .call_us {
    font-size: 18px;
    color: #282828;
    margin-top: -4px;
}

.footer_bottom a {
    color: #282828;
}

.footer_bottom .sufix a:hover {
    color: #F3234A;
}

/* ПОПАП */
.popup {
    color: var(--text-white-theme);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 100000;
    transition: all .3s linear;
}


.popup_close {
    background-color: rgba(0, 0, 0, .8);
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

.popup_close:after,
.popup_close:before {
    position: absolute;
    content: '';
    width: 24px;
    height: 2px;
    top: 30px;
    right: 4%;
    background-color: #fff;
    display: block;
    transform: rotate(45deg);
}

.popup_close:before {
    transform: rotate(-45deg);
}

.popup_inner {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 350px;
    width: calc(100% - 20px);
    max-width: 400px;
    width: auto;
    padding: 20px;
    background-color: #fff;
    height: auto;
    overflow-y: auto;
    border-radius: 8px;
}

.popup_inner.popup_map {
    max-width: 750px;
}


.popup.dark .popup_inner {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);    
}

.popup_open {
    opacity: 1;
    visibility: visible;
    transition: all .3s linear
}

.popup .popup_title {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--text-white-theme);
    text-align: center;
    display: flex;
    align-items: center;
    justify-self: center;
    margin-bottom: 20px;
}

.popup_icon-text {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

/* .popup_icon-text svg { 
    fill: 
} */

.popup.dark .popup_icon-text svg {
    fill: #fff;
}

.popup .popup_subtitle {
    font-size: 14px;
    line-height: 1.2;
    color: var(--text-white-theme);
    text-align: center;
    display: flex;
    align-items: center;
    justify-self: center;
    margin-bottom: 25px;
}

.popup.dark .popup_title {
    color: var(--text-dark-theme);
}

.popup.dark .popup_subtitle {
    color: var(--text-dark-theme);
}

.mobile_contacts_popup a.call_us {
    margin-bottom: 12px;
    display: flex;
}

.success_popup .popup_inner {
    display: flex;
}

.success_popup .svg_icon {
    fill: #09C500;
}

.map_popup .popup_inner {
    width: calc(100% - 20px);
    height: 500px;
    overflow: hidden;
}

.map_popup .map_wrap {
    width: 100%;
    height: 100%;
}

.map_popup .popup_inner iframe {
    width: 100%;
    height: 100%;
}

.popup.dark {
    color: var(--text-dark-theme);
}

.popup.dark a.btn {
    color: var(--btn-text-dark-theme);
    background-color: var(--btn-bg-dark-theme);
}

.popup.dark input {
    background: transparent;
    border-color: var(--border-color-dark-theme);
}

/*.................... ТЕМНА ТЕМА................... */

/* ХЕДЕР ТЕМНИЙ */

.site_header.dark {
    color: var(--text-dark-theme);
}

.site_header.dark::before {
    background: var(--bg-color-dark-theme);
}

.site_header.dark #burger span {
    background-color: #fff;
}

.site_header.dark a {
    color: var(--link-dark-theme);
}

.site_header.dark .top_menu ul li a {
    color: var(--text-dark-theme);
}

.site_header.dark .svg_icon {
    fill: var(--icon-dark-theme);
}

.site_header.dark .top_menu {
    background: var(--bg-color-dark-theme);
}

.site_header.dark .top_menu ul li a {
    color: var(--text-dark-theme)
}

/* БАННЕР ТЕМНИЙ */

.banner.dark::after {
    background-color: rgba(31, 27, 27, 0.93);
    opacity: 0.93;
}

.banner.dark .banner_text {
    color: var(--text-dark-theme);
}

.banner.inner_dark .banner_form {
    background-color: var(--item-bg-dark-theme);
}

.banner.inner_dark .banner_form .title {
    color: var(--text-dark-theme);
}

.banner.inner_dark .banner_form .subtitle {
    color: var(--text-dark-theme);
}

.banner.inner_dark form .btn {
    background-color: var(--btn-bg-dark-theme);
    color: var(--btn-text-dark-theme);
}

.banner.inner_dark form input {
    background: transparent;
    border-color: var(--border-color-dark-theme);
}

/* ПЕРЕВАГИ ТЕМНИЙ */

.advantages.dark {
    background: var(--bg-color-dark-theme);
}

.advantages.dark .title,
.advantages.dark .subtitle {
    color: var(--text-dark-theme);
}

.advantages.inner_dark .item  {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.advantages.inner_dark .item .fig_title {
    color: var(--text-dark-theme);
}

/* МИ ПРОПОНУЄМО ТЕМНИЙ */

.we_offer.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.we_offer.inner_dark .item {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.we_offer.inner_dark .fig_title {
    color: var(--text-dark-theme);
}

/* ПРИКЛАДИ РОБІТ ТЕМНИЙ */

.our_work.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.our_work.inner_dark .item {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.our_work.inner_dark .fig_title {
    color: var(--text-dark-theme);
}

/* ДОДАТКОВІ ПОСЛУГИ ТЕМНИЙ */

.add_services.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.add_services.inner_dark .add_services_table {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.add_services.inner_dark .table_row.table_title_row {
    background-color: transparent;
}
.add_services.inner_dark .table_row.table_title_row > div {
    color: #727272
}

.add_services.inner_dark .table_row {
    background-color: #1F202E;
    color: var(--text-dark-theme);
}

.add_services.inner_dark .table_row>td {
    color: var(--text-dark-theme);
}

.add_services.inner_dark .table_row input {
    color: #fff;
    border-color: #57596E; 
}

.add_services.inner_dark .checkbox:before, 
.add_services.inner_dark .checkbox:after {
    background-color: transparent;
}

.add_services.inner_dark .table_row_bottom {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.add_services.inner_dark .table_row_bottom .top_part .total_sum {
    color: var(--text-dark-theme);
}

.add_services.inner_dark .table_row_bottom .top_part a {
    color: var(--link-dark-theme);
}

.add_services.inner_dark .table_row_bottom a.btn {
    color: var(--btn-text-dark-theme);
    background-color: var(--btn-bg-dark-theme);
}

/* ПРОЦЕС СПІВПРАЦІ ТЕМНИЙ */
.work_process.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.work_process.inner_dark .pr_step .step_number,
.work_process.dark.inner_dark .pr_step .step_number {
    background-color: #FFA800;
    border-color: #493430;
}
.work_process.dark .pr_step .step_number  {
    border: 8px solid #F7E1B7;
    background-color: #0059AC;
}

.work_process.inner_dark .pr_step:after,
.work_process.dark .pr_step:after {
    background-color: #513F3C;
}
/* 
.work_process.dark.inner_dark .pr_step:after {

} */


/* .work_process.dark .pr_step.reverse .step_content:after, */
.work_process.inner_dark .pr_step.reverse .step_content:after {
    /* border-left-color: var(--item-bg-dark-theme); */
    border-left-color: transparent;
    border-bottom-color: transparent;
}

/* .work_process.dark .pr_step .step_content:after, */
.work_process.inner_dark .pr_step .step_content:after {
    border-right-color: var(--item-bg-dark-theme);
    border-bottom-color: var(--item-bg-dark-theme);
    border-bottom-color: transparent;
}

.work_process.inner_dark .pr_step .step_content {
    background-color: var(--item-bg-dark-theme);
}

.work_process.inner_dark .step_content .fig_title {
    color: var(--btn-text-white-theme);
}

.work_process.inner_dark .step_content .apply {
    color: var(--link-dark-theme);
    border-color: var(--link-dark-theme);
}

.work_process.dark .work_process_inner a.btn {
    color: var(--btn-text-dark-theme);
    background-color: var(--btn-bg-dark-theme);
}

/* КАТАЛОГ ТЕМНИЙ */

.catalog.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.catalog.inner_dark .item {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.catalog.inner_dark .fig_title {
    color: var(--text-dark-theme);
}

.catalog.inner_dark a.btn {
    color: var(--btn-text-dark-theme);
    background-color: var(--btn-bg-dark-theme);
}

.inner_dark .slick-dots li.slick-active button {
    background: var(--link-dark-theme);
}

.inner_dark .slick-dots li.slick-active {
    border: 2px solid var(--link-dark-theme);
}

/* НОВИНИ ТЕМНИЙ */

.news.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.news.inner_dark .item {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.news.inner_dark .fig_title {
    color: var(--text-dark-theme);
}

/* ВІДГУКИ ТЕМНИЙ */

.reviews.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.reviews.inner_dark .r_content {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

/* ВІДГУКИ ПРО НАШІ РОБОТИ ТЕМНИЙ */

.reviews_work.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.reviews_work.inner_dark .item {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.reviews_work.inner_dark .item > div {
    background-color: var(--item-bg-dark-theme);
}

/* ФОТОГАЛЕРЕЯ ТЕМНИЙ */

.foto_gallery.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.foto_gallery.dark a.item {
    opacity: 1;
}

.foto_gallery.dark a.item:hover {
    opacity: .55;
}

/* ЗАЛИШИЛИСЬ ПИТАННЯ ТЕМНИЙ */

.banner.question.dark::after {
    background-color: rgba(5,9,15,.5);
}

.banner.question.dark .question_inner a.btn {
    color: var(--btn-text-dark-theme);
    background-color: var(--btn-bg-dark-theme);
}

/* СТАТТЯ ТЕМНИЙ */
.article_text.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.article_text.inner_dark .swipe_wrap table {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.article_text.inner_dark tr:not(:first-child) {
    background-color: #1F202E;
    color: var(--text-dark-theme);
}

/* ФУТЕР ТЕМНИЙ */

.footer.dark {
    color: var(--text-dark-theme);
    background: var(--bg-color-dark-theme);
}

.footer.dark .footer_top .svg_icon {
    fill: var(--icon-dark-theme);
}

.footer.dark .footer_top a.map {
    color: var(--link-dark-theme);
}

.footer.dark .foo_col .call_us,
.footer.dark .footer_bottom,
.footer.dark .footer_bottom a {
    color: var(--text-dark-theme);
}

.footer.dark .footer_bottom a:hover {
    opacity: 1;
    color: var(--link-dark-theme);
}

/* ДЕТАЛЬНЕ ТОВАРУ */

.product_details.dark {
    background: var(--bg-color-dark-theme);
}

.product_details .container {
    display: flex;
    flex-direction: column;
}

.product_gallery {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fff;
}

.product_details.inner_dark .product_gallery {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.product_details.radius .product_gallery {
    border-radius: 8px;
}

.gallery_main-wrap {
    margin-bottom: 10px;
    padding-bottom: 75%;
    width: 100%;
    height: 0;
    position: relative;
}

.gallery_main {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.product_details .slick-arrow {
    border: 2px solid #282828;
}

.product_details .slick-arrow:after,
.product_details .slick-arrow:before {
    background-color: #282828;
}

.gallery_main .slick-list {
    height: 100%;
}

.gallery_main .slick-track {
    height: 100%;
}

.gallery-details__inner {
    display: block;
    width: 100%;
    height: 100%;
}

.slick-initialized .slick-slide.gallery-details__inner {
    height: 100%;
}

.gallery-details__inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 0;
    background: #ffffff;
}

.product_details.radius .gallery-details__inner img {
    border-radius: 8px;
}

.gallery_main:not(.slick-initialized) .gallery-details__inner {
    flex: 0 0 100%;
}

.gallery_main:not(.slick-initialized) .gallery-details__inner:not(:nth-child(1)) {
    display: none;
}

.gallery_nav {
    display: flex;
    overflow: hidden;
}

.gallery_nav:not(.slick-initialized) {
    width: calc(100% + 10px);
    margin: 0 -5px;
}

.gallery_nav.slick-initialized {
    overflow: unset;
}

.gallery_nav .slick-list {
    width: calc(100% + 10px);
    margin: 0 -5px;
}

.gallery_nav-item {
    width: auto;
    height: auto;
    padding: 0 5px;
    cursor: pointer;
}

.gallery_nav:not(.slick-initialized) .gallery_nav-item {
    flex: 0 0 calc(100% / 4);
}

.gallery_item-inner {
    padding-bottom: 75%;
    width: 100%;
    height: 0;
    position: relative;
}

.gallery_item-inner img {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.product_details.radius img {
    border-radius: 8px;
}

.photo_description {
    margin-top: 20px;
    padding: 0;
}

.product_details-description {
    display: flex;
    flex-direction: column;
    padding: 30px 26px 30px;
    background-color: #fff;
}

.product_details.inner_dark .product_details-description {
    color: var(--text-dark-theme);
    background-color: var(--item-bg-dark-theme);
}

.product_details.radius .product_details-description {
    border-radius: 8px;
}

.product_details-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.product_info-top {
    margin-bottom: 16px;
}

.product_characteristics {
    margin-bottom: 16px;
}

.product_details-text {
    margin-bottom: 16px;
    padding: 0;
}

.product_details-text p {
    margin-bottom: 12px;
}

.product_details-price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product_details.inner_dark .btn {
    background-color: var(--btn-bg-dark-theme);
    color: var(--btn-text-dark-theme);
}