:root {
    --accent-color: rgb(149, 154, 220);
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

a {
    text-decoration: none;
    color: #222
}

body {
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 16px;
    background: #fff;
    color: #222
}

.content {
    margin: 0 auto;
    width: 1140px
}

.benefits-short {
    display: flex;
    justify-content: space-between;
    margin-top: 30px
}

.benefits-short > div {
    flex: 1 1 24%;
    display: grid;
    grid-auto-flow: row;
    align-items: center;
    justify-items: center
}

.benefits-short>div>img {
    height: 35px;
    width: auto;
    filter: drop-shadow(-1px -1px 1px #000) drop-shadow(3px 3px 5px var(--accent-color)) drop-shadow(0 0 8px var(--accent-color))
}
.benefits-short > div > p{
    text-align: center;
}

.defb {
    background: var(--accent-color);
    color: #fff;
    display: inline-block;
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 3px;
    transition: all .3s;
    border: none;
    margin-left: 5px;
}

.benefits-full {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    justify-content: space-around
}

.list-check {
    display: block;
    color: var(--accent-color);
    grid-area: benefits-list;
    margin: 0 auto
}

.list-check:before {
    content: 'L';
    display: block;
    background-color: var(--accent-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 1.7rem;
    transform: rotateZ(45deg) scaleX(-1)
}

.benefits-full h5 {
    margin: 0;
    font-size: 1.5rem;
    grid-area: benefits-head
}

.benefits-full p {
    grid-area: benefits-descr;
    margin: 10px 0
}

.benefits-full>div {
    display: grid;
    grid-template-areas: "benefits-list benefits-head" "benefits-list benefits-descr";
    grid-template-columns: 40px auto;
    flex: .25 1 500px;
    margin: 20px 0
}

.defb:hover {
    background: #f2f2f2;
    color: #222
}

header {
    padding-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

header .top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #ededed
}

header .logo {
    height: 100px;
    display: flex;
    align-items: center;
    filter: brightness(1.07)
}

header nav {
    display: grid;
    grid-auto-flow: column;
    margin-top: 9px
}

header .logo img {
    width: 100%;
    display: block
}

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

.hmenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex
}

.hmenu>li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 3px solid #fff;
    transition: all .3s
}

.hmenu>li a {
    transition: all .3s;
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 4em;
}

.hmenu>li:hover {
    border-bottom: 3px solid var(--accent-color)
}

.hmenu>li:hover a {
    color: var(--accent-color)
}

.hmenu li>ul {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    background: #f2f2f2;
    bottom: -156px;
    width: 100%;
    left: 0;
    z-index: 2
}

.hmenu li>ul>li {
    padding: 0 15px;
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center
}

.hmenu .phones {
    position: relative
}

.hmenu .phones:hover ul {
    display: block
}

.hmenu .phones:after {
    content: '';
    position: absolute;
    right: 0;
    background-image: url(/images/angle-down-solid.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 1em;
    width: 0.85em;
}

.hmenu .phones:hover:after {
    color: var(--accent-color)
}

.slider {
    position: relative;
    overflow: hidden;
    background: var(--accent-color)
}

.slider .left {
    background: var(--accent-color);
    position: relative;
    z-index: 1;
    height: 510px;
    width: 290px;
    float: left
}

.slider .left h1 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 100;
    display: block;
    width: 650px;
    margin-top: 50px;
    margin-bottom: 50px
}

.slider .left h1 b {
    font-size: 68px;
    text-transform: uppercase;
    line-height: 100px
}

.slider .left h1 span {
    font-size: 23px;
    text-transform: uppercase
}

.slider .right {
    background: url(../images/slide01.jpg) no-repeat;
    background-position: left;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    margin-left: 290px;
    width: calc(100% - 290px)
}

.slider .left p {
    margin: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.25sec linear;
}
.slider .left>p:hover {
    background-color: white;

}
.slider .left p a {
    display: inline-block;
    text-align: center;
    border-radius: 2px;
    border: 2px solid #fff;
    color: #fff;
    text-transform: uppercase;
    padding: 20px 25px;
    user-select: none;
    transition: all 0.25sec linear;
}
.slider .left p:hover a {
    color: var(--accent-color);
}
.row h2 {
    border-left: 4px solid var(--accent-color);
    text-transform: uppercase;
    padding-left: 20px;
    font-size: 36px;
    margin: 100px 0 40px 0
}

.row h2 span {
    font-size: 20px;
    text-transform: none;
    font-weight: 100;
    display: block;
    width: 100%;
    padding-bottom: 5px
}

.item {
    padding: 4px 2px;
    padding-bottom: 54px
}

.item .in {
    border-radius: 2px;
    border: 1px solid #dcdcdc;
    width: 100%;
    padding: 10px
}

.item .in img {
    width: 100%;
    border: 1px solid #f2f2f2
}

.item .in h3 {
    font-weight: 100;
    color: #747070;
    font-size: 14px;
    margin: 30px 0 20px 0
}

.item .in h3 a {
    color: #747070
}

.item .in h3 span {
    display: block;
    width: 100%
}

.item .in p {
    font-size: 14px
}

.item .in p s {
    color: #747070;
    font-size: 12px;
    padding-left: 15px
}

.item .in div {
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    display: none
}

.item .in div .defb {
    padding: 0 25px
}

.item:hover {
    padding-bottom: 4px
}

.item:hover .in {
    border-color: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4)
}

.item:hover .in div {
    display: block
}

.owl-nav {
    position: absolute;
    top: 140px;
    width: 100%
}

.owl-nav .owl-prev {
    position: absolute;
    left: -40px
}

.owl-nav .owl-next {
    position: absolute;
    right: -40px
}

.owl-nav .owl-prev:hover:before {
    color: #000
}

.owl-nav .owl-next:hover:before {
    color: #000
}

.owl-nav .owl-prev span {
    color: transparent;
    font-size: 0
}

.owl-nav .owl-next span {
    color: transparent;
    font-size: 0
}

.owl-nav .owl-prev:before {
    content: " ";
    display: block;
    font-size: 30px;
    color: #747070;
    background-image: url(/images/arrow-left-solid.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 1em;
    width: 1.5em;
    margin: 0.15em 0;
}

.owl-nav .owl-next:before {
    content: " ";
    display: block;
    font-size: 30px;
    color: #747070;
    background-image: url(/images/arrow-right-solid.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 1em;
    width: 1.5em;
    margin: 0.15em 0;
}

.owl-dots {
    display: none;
    left: -20px
}


/*.row .filter {
    background: #f2f2f2;
    padding: 30px 10px;
    width: 100%;
    margin-bottom: 30px
}

.row .filter p {
    text-transform: uppercase;
    margin: 0
}*/

.portfolio .owl-nav {
    top: -80px;
    max-width: 60%;
    width: calc(100% - 500px);
    right: 0
}

.portfolio .owl-nav .owl-prev {
    left: 40px
}

.portfolio .owl-nav .owl-next {
    left: 100px
}

.portfolio .item {
    margin-bottom: 25px;
    padding: 0
}


/*.why {
    background: url(../images/wbg.jpg) no-repeat center;
    background-size: cover;
    padding: 80px 0
}

.why ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.why ul li {
    position: relative;
    width: 23%;
    margin-bottom: 12%
}

.why ul li:before {
    content: "";
    display: block;
    padding-top: 100%
}

.why ul li .in {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: all .3s
}

.why ul li:hover .in {
    border-color: var(--accent-color)
}

.why ul li .in div {
    text-align: center
}

.why ul li .in img {
    margin-bottom: 10px
}

.why ul li .in p {
    text-align: center;
    font-size: 18px;
    margin: 0;
    width: 100%
}

.why ul li .in span {
    color: var(--accent-color);
    display: block
}*/

.calc {
    width: 100%;
    text-align: center;
    padding-top: 10px;
    position: relative;
}


/*.why ul li:nth-child(2n) .in {
    top: 50%;
    bottom: -50%
}*/

.calc a,
.next-step {
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 25px 50px;
    background: #fff;
    display: inline-block;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    transition: all .3s linear;
    border: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}

.calc a:hover,
.next-step:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
    cursor: pointer;
}


/*.reviews .owl-nav {
    top: 0;
    width: 40px;
    right: 0
}

.reviews .owl-nav .owl-prev {
    right: 40px
}

.reviews .owl-nav .owl-next {
    right: 0
}

.reviews .item {
    margin-bottom: 100px;
    padding: 0 170px;
    display: flex;
    justify-content: center;
    align-items: center
}

.reviews .item img {
    width: 300px!important
}

.reviews .item div {
    padding-left: 30px
}

.reviews .item h3 {
    text-transform: uppercase;
    font-weight: 100;
    color: #222;
    font-size: 16px
}

.reviews .item span {
    color: #dcdcdc;
    font-size: 14px;
    float: right
}

.reviews .item p {
    font-style: italic;
    color: #747070;
    font-size: 16px
}*/

.contacts {
    display: grid;
    grid-template-areas: "contacts-map contacts-list";
    grid-template-columns: 3fr 2fr;
    margin-top: 40px;
}

.contacts-list-form {
    display: grid;
}

.contacts-list-form input[type=text] {
    border: none;
    border-bottom: 3px solid var(--accent-color);
    margin-bottom: 1rem;
}

.contacts-list-form input[type=submit] {
    width: 15rem;
    height: 3.5rem;
    place-self: center;
    border-radius: 10px;
    border-style: none;
    border-color: var(--accent-color);
    border-width: 8px;
    background-color: var(--accent-color);
    transition: all .15s linear;
    font-size: 1.25rem;
}

.contacts-list-form input[type=submit]:hover {
    background-color: #ddd;
    border-style: solid;
    border-color: var(--accent-color);
    border-width: 8px;
}

.map {
    height: 700px;
    width: 100%;
    background: #f7f7f7;
    grid-area: contacts-map;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.contacts-list {
    padding: 3rem;
    display: grid;
    height: 500px;
    grid-area: contacts-list;
}

.contacts-list a {
    display: block;
    width: 8em;
    height: 1.2em;
    text-align: center;
    line-height: .95em;
}

.contacts-list a:after {
    content: '';
    display: block;
    position: static;
    width: inherit;
    height: 0;
    left: 0;
    top: 0;
    margin-top: -1em;
    background-color: var(--accent-color);
    z-index: 1000;
    transition: all .3s linear;
}

.contacts-list a:hover:after {
    height: inherit;
}

footer {
    background: #2c2c2c;
    min-height: 70px;
    display: flex;
    width: 100%;
    align-items: center;
}

footer p {
    color: #fff;
    font-size: 14px;
    margin: auto;
    width: 10rem;
    /*! display: block; */
}

.wrp {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 100;
    display: none
}

.close {
    position: absolute;
    right: 30px;
    top: 30px;
    color: #8b8888;
    cursor: pointer
}

.window {
    padding: 60px;
    position: absolute;
    background: #fff;
    z-index: 101;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .4);
    display: none
}

.window h4 {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    font-weight: 100
}

.window .info {
    text-align: center;
    padding-top: 20px;
    line-height: 28px;
    font-size: 14px
}

.window .inp0 {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #222;
    padding: 15px 0;
    margin-top: 25px;
    transition: all .3s
}

.window .inp0:focus {
    border-color: var(--accent-color)
}

.window .btns {
    text-align: center;
    padding: 20px 0 30px 0
}

.window .btns .defb {
    padding: 0 30px
}

.callme {
    top: 115px;
    right: 0;
    width: 420px
}

.metering {
    width: 520px;
    left: 50%;
    margin-left: -260px;
    top: 80px;
    position: fixed
}


/*#prods {
    position: relative;
}*/


/*.order {
    width: 850px;
    top: 80px;
    left: 50%;
    margin-left: -425px
}

.order h3 {
    font-size: 20px;
    margin-bottom: 30px
}

.order h3 span {
    color: #747070;
    font-size: 16px;
    padding-right: 10px;
    font-weight: 100
}

.order .left {
    width: 49%;
    float: left
}

.order .left img {
    width: 100%
}

.order .right {
    width: 45%;
    float: right
}*/


/*.rowin [type=radio]:checked,
[type=radio]:not(:checked) {
    position: absolute;
    left: -9999px
}

.rowin [type=radio]+label {
    padding: 10px 5px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 6px;
    float: left;
    margin-bottom: 3px;
    font-size: 12px;
    width: 48px;
    height: 34px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s
}

.rowin [type=radio]+label img {
    position: absolute;
    left: 0;
    top: -25%;
    width: 100%;
    transition: all .3s
}

.rowin [type=radio]:not(:checked)+label {
    background: #dcdcdc;
    color: #747070;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2)
}

.rowin [type=radio]:checked+label {
    background: #74b65f;
    color: #fff;
    box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, .2)
}

.rowin {
    padding-bottom: 4px;
    border-bottom: 1px solid #f0f0f0
}

.rowin [type=radio]:checked+label img {
    width: 80%;
    left: 10%;
    height: 80%;
    top: 10%;
    border-radius: 4px
}

.rowin h5 {
    display: block;
    width: 100%;
    color: #747070;
    font-weight: 100;
    font-size: 16px;
    margin: 10px 0
}*/


/*.sbtn {
    display: none
}*/


/*.step2 {
    display: none
}*/

.preorder-form {
    position: fixed;
    width: 100%;
    max-width: 730px;
    margin: 0px -375px;
    min-height: 720px;
    display: none;
    border: 3px solid RGBA(149, 154, 220, 0.33);
    top: calc( ( 100vh - 730px) / 2);
    left: 50%;
    background-color: white;
    z-index: 100;
}

.preorder-form>a {
    position: absolute;
    display: block;
    width: 1.2em;
    height: 1.2em;
    right: 30px;
    top: 30px;
    z-index: 200;
    text-align: center;
    cursor: pointer;
    color: #8b8888;
}

.preorder-form>section {
    position: absolute;
    visibility: hidden;
    min-height: 650px;
    min-width: 725px;
    padding: 0 10px;
    top: 0px;
    left: 0px;
    display: grid;
    grid-template-rows: 5em auto 6.5em;
    height: 100%;
}

.preorder-form>section>p {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    font-weight: 100;
}

.preorder-form input[type=radio] {
    display: none;
}

.selector-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 705px;
    align-content: stretch;
}

.selector-block > label {
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: rgba(0, 0, 0, 0);
    text-align: center;
    line-height: 1.5em;
    margin: 5px 0px;
    align-items: center;
    
}

.selector-block > input:checked + label {
    color: rgba(0, 0, 0, 1);
    text-shadow: 1px 1px 2px white, -1px -1px 2px white, -1px 1px 2px white, 1px -1px 2px white;
}

/*.select-finishing>label {
    flex-basis: 200px;
    height: 150px;
    padding: 15px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-origin: padding-box;
    margin: 3px;
    text-align: center;
    line-height: 1em;
    color: rgba(0, 0, 0, 0);
}*/

.selector-block > label > img {

}

.preorder-form label:hover {
    color: rgba(0, 0, 0, 1);
    text-shadow: 1px 1px 2px white, -1px -1px 2px white, -1px 1px 2px white, 1px -1px 2px white;
    transition: all 0.33s linear;
}

.preorder-form input:checked+label {
    outline: 2px solid var(--accent-color);
    filter: contrast(133%);
    color: rgba(0, 0, 0, 1);
    text-shadow: 1px 1px 2px white, -1px -1px 2px white, -1px 1px 2px white, 1px -1px 2px white;
}

.kitchen-size-container {
    width: 500px;
    height: 500px;
    position: relative;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.kitchen-size-container>input {
    border: none;
}

.kitchen-size-container>input {
    font-size: 1.2em;
    width: 5em;
    font-size: 2em;
    background: none;
    text-shadow: 1px 1px 2px white, -1px -1px 2px white, -1px 1px 2px white, 1px -1px 2px white;
}

.kitchen-size-container>.ks-bottom {
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -2.5em;
    margin-bottom: 1em;
    border-bottom: 2px solid var(--accent-color);
    text-align: center;
}

.kitchen-size-container>.ks-left {
    position: absolute;
    left: 0px;
    top: 45%;
    border-bottom: 2px solid var(--accent-color);
}

.kitchen-size-container>.ks-right {
    position: absolute;
    right: 0px;
    top: 45%;
    border-bottom: 2px solid var(--accent-color);
    text-align: right;
}

.kitchen-size-container>.ks-top {
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -2.5em;
    border-bottom: 2px solid var(--accent-color);
    text-align: center;
}

.next-step {
    display: block;
    margin: 1em auto;
}

.btn-blocked {
    color: gray;
}

.btn-blocked:hover {
    background-color: #eee;
}

.preorder-contact-info {
    display: grid;
    grid-template-areas: "contactForm-name contactForm-name" "contactForm-phone contactForm-email" "contactForm-notes contactForm-notes";
    grid-gap: 1em;
    grid-template-rows: 4em 4em auto;
    height: 100%;
    width: 100%;
}

.preorder-contact-info>.name {
    grid-area: contactForm-name;
}

.preorder-contact-info>.phone {
    grid-area: contactForm-phone;
}

.preorder-contact-info>.email {
    grid-area: contactForm-email;
}

.preorder-contact-info>.notes {
    grid-area: contactForm-notes;
    resize: none;
    overflow: auto;
}

.preorder-contact-info>input,
.preorder-contact-info>textarea {
    border: none;
    border-bottom: 3px solid var(--accent-color);
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 1.5em;
}

.step-final {
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.nav-anchor{
    top:-2rem;
    position: relative;
}

@media (max-width:1200px) {
    .content {
        margin: 0 auto;
        width: 98%;
        min-width: 320px;
        padding: 0 15px;
    }
    header {
        padding-bottom: 20px;
    }
    header .logo {
        width: 150px;
        height: auto;
    }
    .hmenu>li {
        padding: 0 8px;
        height: 64px;
    }
    .hmenu li>ul {
        bottom: -123px;
    }
    .hmenu li>ul>li {
        padding: 0 8px;
        height: 64px;
        display: flex;
        align-items: center;
    }
    header .callb .defb {
        padding: 0 5px;
    }
    .hmenu .phones:after {
        right: -5px;
    }
    @media (max-width:1023px) {
        .reviews .item {
            padding: 0 70px;
        }
        header .content {
            width: 100%;
            padding: 0;
        }
        header {
            padding-bottom: 0;
            height: 58px;
        }
        .hmenu {
            /*! position: absolute; */
            top: 58px;
            width: 100%;
            background: #fff;
            left: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
        }
        header .top {
            padding: 4px 15px;
        }
        .contacts {
            grid-template-areas: "contacts-list" "contacts-map";
            grid-template-columns: 1fr;
        }
    }
    @media (max-width:850px) {
        body {
            font-size: 16px;
        }
        .order {
            width: 100%;
            left: 0;
            margin-left: 0;
        }
        .preorder-form {
            position: fixed;
            min-width: 100%;
            min-height: unset;
            max-height: unset;
            height: 100%;
            margin: 0;
            display: none;
            border: 3px solid RGBA(149, 154, 220, 0.33);
            top: 0px;
            left: 0px;
            background-color: white;
            z-index: 100;
        }
        .preorder-form>section {
            min-width: 100%;
        }
        .kitchen-type-container,
        .select-finishing {
            max-width: unset;
        }
        .kitchen-type-container>label {
            flex-basis: calc((100vw / 2) - 35px);
        }
        .select-finishing>label>span,
        .select-furniture>label>span {
            display: block;
        }
        .select-finishing>label {
            flex-basis: calc((95vw / 2) - 15px);
            height: calc((100vh - 20em) / 3);
            padding: 0px;
        }
        .select-finishing>label>img {
            max-width: 100%;
        }
        .select-furniture>label {
            padding: 0px;
            width: 24%;
            height: auto;
        }
        .kitchen-size-container {
            width: 100%;
            height: 50vh;
            position: relative;
            margin: auto;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        .step-1 {
            display: grid;
            grid-template-rows: 5rem auto 6rem;
            height: 100%;
        }
    }
    @media (max-height: 700px) {
        body {
            font-size: 10px;
        }
        .preorder-form {
            max-height: 100%;
            min-height: 100%;
        }
        .kitchen-type-container>label {
            flex-basis: calc((100vw / 3) - 20px);
            height: 100px;
        }
        .preorder-form>section {
            position: absolute;
            visibility: hidden;
            min-height: unset;
            min-width: unset;
            height: 100%;
            width: 100%;
            padding: 0 10px;
            top: 0px;
            left: 0px;
        }
        .preorder-contact-info {
            display: grid;
            grid-template-areas: "contactForm-name" "contactForm-phone" "contactForm-email" "contactForm-notes";
            grid-gap: 1em;
            grid-template-rows: 3em 3em 3em auto;
            height: 100%;
            width: 100%;
        }
    }
    @media (max-width:780px) {
        /*.reviews .item {
            padding: 0;
            flex-wrap: wrap;
        }
        .reviews .item img {
            display: block;
            margin: 0 auto;
        }
        .reviews .item div {
            width: 100%;
            padding-top: 20px;
            padding-left: 0;
        }
        .item .in div {
            display: block;
        }
        .why ul li {
            width: 46%;
        }*/
        .hmenu {
            display: block;
            display: none;
        }
        .slider {
            background: #000;
        }
        .slider .left {
            width: 100%;
            background: 0 0;
            display: flex;
            flex-direction:column;
            justify-content: space-around;
        }
        .slider .left>h1{
            margin: 0;
        }
        .slider .right {
            margin-left: 0;
            left: 0;
            width: 100%;
            opacity: .6;
            background-position-x: 0px;
        }
        .slider .left h1 {
            width: 100%;
            text-align: center;
        }
        .slider .left h1 b {
            font-size: 42px;
        }
        .owl-nav {
            display: none;
        }
        .row h2 {
            font-size: 26px;
            margin: 60px 0 30px 0;
        }
        /*.reviews .item {
            margin-bottom: 60px;
            padding: 0;
        }*/
        .window {
            width: 100%;
            padding: 30px;
            margin: 0!important;
            left: 0;
        }
        .callme {
            top: 58px;
        }
        /*.order .left {
            width: 100%;
        }
        .order .right {
            width: 100%;
            margin-top: 25px;
        }*/
        header .callb {
            position: static;
        }
    }
}