:root {
    --main-font: "Century Gothic";
    --main-color: #000000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--main-font);
    color: var(--main-color);
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: var(--main-color);
    text-decoration: none;
    transition: color .3s ease;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main {
    flex-grow: 1;
}

.container {
    width: 100%;
    max-width: 1125px;
    margin: 0 auto;
    padding: 0 15px;
}

.header.border {
        border-bottom: #000 2px solid;
}

.logo {
    display: block;
    width: 200px;
}

.logo img {
    display: block;
    width: 100%;
}

.footer {
    min-height: 80px;
    color: #000;
}

.footer > .container {
    border-top: #3d3a39 1px solid;
}

.btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #1d922c;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.header-phone {
    font-weight: 700;
    font-size: 20px;
}

.header-phone:hover {
    color: #1d922c;
}

.header-contacts {
    display: flex;
    align-items: center;
}

.header-contacts img {
    height: 24px;
}

.header-wt {
    display: block;
    margin: 0 5px;
}

.top-banner-one {
    width: 100%;
    min-height: 560px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.modals {
    display: none;
    max-width: 450px;
}

.modals-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px;
    padding: 0;
}

.modals-description {
    margin: 0 0 10px;
    font-size: 14px;
}

.modals form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modals form input {
    width: 100%;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    padding: 5px 10px;
    margin-bottom: 10px;
    border: #363636 1px solid;
}

.modals form button {
    border: none;
    color: #ffffff;
    background-color: #1d922c;
    font-size: 14px;
    padding: 7px 15px;
    cursor: pointer;
    display: block;
    width: 100%;
    font-family: inherit;
    border-radius: 5px;
    font-size: 16px;
}

.page-title {
    color: #3d3a39;
    text-transform: uppercase;
    margin: 0 0 50px;
    text-align: center;
    font-size: 38px;
    line-height: 1.2;
    padding-top: 50px;
}

.feature-item {
    flex-direction: column;
    align-items: center;
    display: flex;
}

.feature-item img {
    display: block;
    width: 100%;
    max-width: 100px;
}

.feature-item__text {
    text-align: center;
}

.feature-item__text strong {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-top: 15px;
    display: block;
}

.feature-item__text p {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    font-family: Arial;
    margin-top: 15px;
}

.faq-question {
    display: flex;
    align-items: center;
}

.faq-question a {
    font-weight: 600;
    color: #1d922c;
    display: inline-block;
    border-bottom: #1d922c 1px dotted;
    font-size: 18px;
}

.faq-question i {
    font-size: 14px;
    color: #1d922c;
    margin-left: 10px;
}

.faq-answer {
    font-family: 'Arial';
    font-size: 15px;
    display: none;
}

.main-work-item img {
    transition: transform .3s ease;
}

.main-work-item:hover img {
    transform: scale(1.1);
}

.cabines-grid__img img {
    display: block;
    width: 100%
}

.cabines-grid__text {
    text-align: center;
    text-align: center;
    font-family: "Century Gothic";
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px
}

.cabines-grid__btn button {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: #0377b4;
    border: 0;
    cursor: pointer;
    color: #fff;
    text-align: center;
    font-family: "Century Gothic";
    font-size: 14px;
    margin-top: 10px
}

@media(max-width: 768px) {
    .cabines-grid__text {
        font-size: 16px;
        line-height: 20px
    }
}


.dcub-calc__btn {
    margin: 60px 0
}

.dcub-calc__btna {
    width: 100%;
    height: 470px;
    background-image: url("../img/dcab-calc-bg.jpg");
    background-position: center;
    background-repeat: no-repeat
}

.dcub-calc__text {
    width: 645px;
    padding-top: 300px
}

.dcub-calc__text a {
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    background-color: #ff9f0a;
    width: 250px;
    padding: 10px 25px;
    margin: 0 auto
}

@media(max-width: 768px) {
    .dstep-images {
        margin:55px 0;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 15px
    }

    .dcub-calc__btna {
        background-image: url("../img/dcab-calc-bg-m.jpg");
        background-size: contain;
        height: 345px
    }

    .dcub-calc__text {
        width: 100%;
        padding-top: 320px
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.75);
    z-index: 1000000000
}

.modal {
    display: none;
    z-index: 10000000001;
    position: fixed;
    top: 50%;
    left: 50%;
    background: #e8e9ed;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 550px
}

.modal-inner {
    padding: 40px;
    font-family: 'Arial';
}

.modal-close {
    font-weight: bold;
    font-size: 40px;
    text-decoration: none;
    color: #000;
    line-height: 40px;
    position: absolute;
    top: 10px;
    right: 15px
}

.dstep {
    display: none
}

.dstep-head {
    text-align: center;
    font-size: 22px;
    line-height: 26px;
    color: #000
}

.dstep-head span {
    color: #009746;
    display: block;
    text-align: center;
    margin-bottom: 15px
}

.dstep-checkrows {
    margin: 55px 0
}

.dstep-checkrow {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px
}

.dstep-checkrow input[type="radio"],.dstep-checkrow input[type="checkbox"],.dstep-image input[type="radio"],.dstep-image input[type="checkbox"] {
    width: 25px;
    height: 25px;
    background: #fff;
    border: #000002 1px solid;
    border-radius: 2px;
    -webkit-appearance: none;
    -moz-appearance: none
}

.dstep-checkrow input[type="radio"]:checked,.dstep-checkrow input[type="checkbox"]:checked,.dstep-image input[type="radio"]:checked,.dstep-image input[type="checkbox"]:checked {
    background-image: url("../img/checked.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%
}

.dstep-sizes {
    margin: 55px 0
}

.dstep-size {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px
}

.dstep-size input {
    width: 80px;
    height: 34px;
    background: #fff;
    border: #000002 1px solid;
    border-radius: 2px;
    font-family: inherit;
    padding: 5px 10px;
    font-size: 16px;
}

.dstep-size span {
    padding: 0 10px
}

.dstep-size span:last-of-type {
    padding-right: 0
}

.dstep-images {
    margin: 55px 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px
}

.dstep-image {
    position: relative
}

.dstep-image input {
    position: absolute;
    top: 0;
    right: 0
}

.dstep-arrows {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%
}

.dstep-arrows__label {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 7px 15px;
    font-size: 14px;
    background-color: #009746;
    font-family: inherit;
    border: 0
}

.dstep-arrows__prev img {
    height: 55px
}

.dstep-arrows__next img {
    height: 55px
}

.dcab-phone {
    width: 220px !important
}

.dstep-image img {
    display: block;
    width: 100%
}

.dcub-furniture__images img {
    display: block;
    width: 100%;
}

.dcub-furniture__images img:nth-child(2) {
    display: none;
}

.review-row-data {
    font-family: "Arial";
}

.review-name {
    font-weight: 600;
    
}

.review-date {    
    font-size: 14px;
}

.review-text {
    font-size: 15px;
}

.review-stars {
    color: gold;
}



.calc-green-block {
    background: #1d9229;
    padding: 30px 30px;
    color: #fff;
    margin-bottom: 40px;
    white-space: nowrap;
}

.calc-green-block-title {
    font-family: 'Arial';
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.calc-line-data {
    margin-bottom: 5px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.calc-line-data:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    display: block;
    border-bottom: #fff 2px dotted;
}

.calc-line-data span {
    font-family: 'Arial';
    font-size: 16px;
    background: #1d9229;
    z-index: 1;
}

.calc-line-data span:nth-child(1) {
    padding-right: 5px;
}

.calc-line-data span:nth-child(2) {
    padding-left: 5px;
}

.hrd {
    height: 20px;
}

.calc-line-total {
    font-family: 'Arial';
    font-size: 20px;
}

.line-one {
    padding-bottom: 15px;
    font-family: 'Arial';
}

.line-one label {
    width: 35%;
    display: inline-block;
    font-size: 18px;
}

.box-calck .inputa {
    display: inline-block;
}

.box-calck .inputa select {
    height: 38px !important;
    background: #e3e3e4;
    width: 260px !important;
    width: 164px !important;
    border: 0;
    padding: 0 5px;
    margin: 0 5px;
    font-size: 16px;
}

.box-calck .inputa select {
    width: 167px !important;
}

.area-panel-lf {
    width: 70%;
    vertical-align: middle;
    display: inline-block;
}

.line-one.spanel {
    padding-bottom: 10px;
}

.line-one.spanel label {
    font-size: .9em;
    width: 50%;
}

.toolinf {
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    position: relative;
    line-height: 20px;
    margin-bottom: -3px;
    white-space: normal;
    vertical-align: top;
}

.toolinf:before {
    content: "";
    position: absolute;
    top: -0.9em;
    left: -0.5em;
    right: 0;
    width: 9em;
    height: 3em;
    visibility: hidden;
}

.toolinf>p {
    width: 20px;
    margin: 0 1px;
    padding: 0;
    display: inline-block;
    position: relative;
    font-size: 14px;
    text-align: center;
    line-height: 18px;
    height: 20px;
    color: #1d9229;
    border: 1px solid #1d9229;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.toolinf>span {
    text-align: left;
    box-shadow: 0 6px 20px 5px rgba(0,0,0,.15);
    color: white;
    position: absolute;
    bottom: 100%;
    max-width: 310px;
    max-height: 80vh;
    overflow: auto;
    visibility: hidden;
    margin: 0 auto 1em;
    padding: 1em;
    font-size: 90%;
    background: #39b034;
    line-height: normal;
    cursor: auto;
    z-index: 99;
}

.toolinf.lefta>span {
    left: 0;
    right: -20em;
    margin: 0 0 1em;
}

.toolinf:after {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    visibility: hidden;
    margin: 0 0 0 -0.5em;
    cursor: auto;
    width: 2.1em;
    height: 1.3em;
    background: transparent;
    border: 0.8em solid #38a233;
    border-top: 0;
    border-right: 0;
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
}

.toolinf.lefta:after {
    left: 1em;
}

.box-calck .inputa input {
    height: 42px;
    height: 30px;
    margin: 0 5px;
    font-size: 16px;
    display: inline-block;
}

.box-calck .inputa input {
    height: 34px;
}

.box-calck .inputa .input-small {
    display: inline-block;
    width: 66px;
}

.area-panel-rt {
    width: 20%;
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 15px;
}

.area-panel-rt {
    margin-bottom: 10px;
}

.box-calck .inputa {
    display: inline-block;
    font-family: 'Arial';
}

.thischeck {
    position: relative;
    vertical-align: middle;
    margin: 0 5px;
}

.thischeck input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.box-calck .inputa input[type="checkbox"] {
    width: auto;
    vertical-align: middle;
}

.thischeck .itcheker {
    display: inline-block;
    background: #e3e3e4;
    width: 40px;
    height: 40px;
}

.thischeck input:checked+.itcheker {
    background-image: url(../img/icon-galochka.png);
    background-position: 11px 11px;
    background-repeat: no-repeat;
}


.header-calc {
    font-weight: 600;
    color: #1d922c;
    display: block;
}

.order-cab-btn {
    display: block;
    padding: 10px 15px;
    color: #fff;
    background-color: #1d9229;
    text-align: center;
    font-family: 'Arial';
    font-size: 20px;
    margin-bottom: 40px;
}

.order-cab-btn:hover {
    background-color: #09701b;
}

.box-calck .inputa .input-medium {
    display: inline-block;
    width: 100px;
}

.main-work-item_hide {
    display: none;
}

.show-more-works {
    display: block;    
    background: #61b136;
    padding: 12px 25px 11px;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    border: 0;
    border-radius: 1px;
    cursor: pointer;
    text-decoration: none;
    -webkit-box-shadow: 0 4px 2px -1px #19621c;
    -moz-box-shadow: 0 4px 2px -1px #19621c;
    box-shadow: 0 4px 2px -1px #19621c;
    width: 215px;
    text-align: center;
    margin: 0 auto;
    font-family: 'Arial';
}

.show-more-works:hover {
    background: #1d9229;
}

@media screen and (max-width: 999px) {
    .top-banner-one {
        min-height: 45vw;
    }
}


@media screen and (max-width: 767px) {
    .page-title {
        font-size: 26px;

    }

    .cabines-grid__text {
        font-size: 14px;
        line-height: 20px;
    }

    .box-calck .left {
        width: 100%;
        float: none;
    }

    .box-calck .line-one {
        padding: 15px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .box-calck .line-one>label {
        width: 40%;
        font-size: 14px;
    }

    .box-calck .inputa {
        width: 60%;
    }

    .box-calck .inputa select {
        width: calc(100% - 30px) !important;
    }

    .area-panel-lf {
        width: 100%;
    }

    .area-panel-rt {
        width: 100%;
        text-align: right;
        margin-top: 0;
    }

    .box-calck .line-one.spanel label {
        width: 40%;
    }

    .box-calck .line-one.spanel .inputa {
        text-align: right;
    }

    .area-panel-rt {
        width: 100%;
        text-align: right;
        margin-top: 0;
    }

    .area-panel-rt .inputa {
        padding-right: 12px;
    }

    .box-calck .line-one {
        padding: 15px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mounting-box .inputa {
        width: 50px;
    }

    #mounting_sel {
        width: calc(100% - 80px);
    }
}


.productPopup-data-content, #load-product {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.productPopup-data .swiper-container, #load-product .swiper-container {
    max-width: 600px;
    background-color: #e7e7e7;
    width: 100%;
}

.productPopup-data .swiper-container .swiper-slide, #load-product .swiper-container .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide a {
    display: block;
    text-align: center;
}

.swiper-slide a img {
    display: inline-block;
    max-height: 500px;
    width: auto;
}

.swiper-button-prev, .swiper-button-next {
    background-color: #5b5b5b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    opacity: .5;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    color: #fff;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;

}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: 'prev';
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: 'next';
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    opacity: 1;
}

.productPopup-close {
    text-align: right;
}

.productPopup-close a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    text-decoration: none;
    background-color: #000;
    width: 40px;
    height: 40px;
    font-size: 35px;
}

.productPopup-data .product-flex, #load-product .product-flex {
    background-color: #e7e7e7;
    max-width: 445px;
    width: 100%;
    font-family: 'Arial';
}

#load-product .product-flex h1 {
    font-size: 22px;
    padding-bottom: 20px;
}

.product-param-table {
    width: 100%;
    color: #000;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 5px 0;
}

.product-param-table td {
    padding: 10px 12px !important;
    font-size: 16px;
}

.product-param-table tr:nth-child(2n+1) td {
    background-color: #ccc;
}

.product-param-table tr td:nth-child(2) {
    text-align: right;
    color: #38982a;
}

.product-hint {
    text-align: center;
    color: #000;
    padding-top: 10px !important;
    line-height: 1.2;
    padding-bottom: 10px;
}

.product-hint-btn {
    text-align: center;
    margin-bottom: 10px;
}

.product-hint-btn button {
    background: #1d922c;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    padding: 7px 0;
    border-radius: 15px;
    border: #777374 1px solid;
    width: 195px;
}

.product-hint-tel {
    text-align: center;
    padding-bottom: 10px;
}


@media screen and (max-width: 767px) {
    .footer .logo {
        margin: 0 auto 15px;
        width: 150px;
    }

    .header .logo {
        width: 150px;
    }

}


#widget_footer {
    width: 344px;
    height: 68px;
    position: fixed;
    bottom: 16px;
    right: 20px;
    border-radius: 10px;
    background-color: #009746;
    z-index: 999999999
}

.widget_footer_box {
    width: 100%;
    height: 100%;
    height: 0;
    transition: opacity 1.5s ease-out;
    opacity: 0;
    overflow: hidden
}

.widget_footer_box.active {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    opacity: 1;
    height: 100%
}

.widget_footer_box.active:hover {
    cursor: pointer
}

.widget_footer_box .widget_icon {
    width: 54px;
    height: 54px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%
}

.widget_footer_box .widget_icon img {
    width: 50px;
    height: 50px
}

.widget_footer_box .widget_text {
    font-size: 14px;
    color: #fff;
    width: 250px
}

.widget_suport_blocks {
    display: flex
}

.widget_block_link {
    width: 230px;
    height: 40px;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    text-decoration: none;
    color: #fff;
    color: black;
    text-transform: uppercase;
    font-weight: bold
}

.call_phone,.get_call_phone {
    background-color: #1cd645;
    position: relative
}

@keyframes pulsation {
    0% {
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    to {
        transform: scale(1);
        opacity: 0
    }
}

@media screen and (max-width: 762px) {
    .header .logo {
        width: 140px;
    }
    #widget_footer {
        background-color: transparent;
        width: 100px;
        height: 100px;
    }
    #widget_footer {
        background-color: transparent;
        width: 100px;
        height: 100px
    }

    .pulsation {
        width: 100px;
        height: 100px;
        background-color: #099349;
        border-radius: 50px;
        position: absolute;
        z-index: -1;
        transform: scale(0);
        animation: pulsation 1.6s infinite
    }

    .widget_footer_box .widget_icon img {
        width: 72px;
        height: 72px
    }

    .widget_footer_box .widget_icon {
        width: 75px;
        height: 75px
    }

    .widget_footer_box .widget_text {
        display: none
    }
    .modal {
        width: 100%;
        top: 0;
        left: 0;
        height: 100vh;
        transform: none;
        position: fixed;
        overflow-y: scroll;
    }
    .dstep-images {
        margin: 55px 0;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
    }
}