body {
  font-family: 'Noto Sans', 'Ubuntu', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}



.sticker{
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 0px;
    background-color: #ec1c24;
    padding: 5px 15px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    padding: 10px 60px;
    border-bottom: 1px solid #d7d7d7;
}

header:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
}

.phone{
    display: inline-block;
    float: right;
    font-size: 16px;
    color: #383838;
    padding-left: 20px;
    margin-left: 10px;
    background-position: center left;
    background-size: 14px;
    background-repeat: no-repeat;
    margin-top: 13px;
    background-image: url(../img/phone_gray.svg);
}

.logo{
    display: inline-block;
    float: left;
    height: 50px;
    width: 168px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../img/logo.svg);
    position: relative;
    z-index: 10;
}

.menu{
    display: inline-block;
    height: 50px;
    list-style: none;
    float: left;
    padding-left: 0px;
    margin-left: 60px;
    margin-bottom: 0px;
}

.menu li{
    display: inline-block;
    height: 50px;
    padding-right: 30px;
}

.menu li>a, .menu li>span{
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    overflow: hidden;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
     -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.menu li>a:hover, .menu li>span:hover{
    color: #ec1c24;
    text-decoration: none;
}

.menu li>span{
    padding-right: 15px;
    background-position: right center;
    background-size: 12px;
    background-repeat: no-repeat;
    background-image: url(../img/arrow_down.svg);
}

.subList{
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    margin-top: 1px;
    background-color: #fff;
    padding: 40px 60px;
    display: inline-block;
    z-index: -1;
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.subBtn:hover .subList{
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);  
}

.subList>li{
    width: 20%;
    float: left;
    margin-right: 0px;
    padding: 0px;
    text-align: center;
    height: auto;
}

.subList>li>a{
    height: auto;
}

.subList>li span{
    width: 100%;
    height: 60px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.subList>li span.allProd{background-image: url(../img/all.svg)}
.subList>li span.bedroomProd{background-image: url(../img/bedroom.svg)}
.subList>li span.livingRoomProd{background-image: url(../img/living_room.svg)}
.subList>li span.kitchenProd{background-image: url(../img/kitchen.svg)}
.subList>li span.childrenProd{background-image: url(../img/children.svg)}

.subList>li:hover span.allProd{background-image: url(../img/all_hover.svg)}
.subList>li:hover span.bedroomProd{background-image: url(../img/bedroom_hover.svg)}
.subList>li:hover span.livingRoomProd{background-image: url(../img/living_room_hover.svg)}
.subList>li:hover span.kitchenProd{background-image: url(../img/kitchen_hover.svg)}
.subList>li:hover span.childrenProd{background-image: url(../img/children_hover.svg)}

.subList>li b{
    display: inline-block;
    width: 100%;
    font-weight: 700;
}

.menu li:hover>span{
    background-image: url(../img/arrow_up.svg);
}

.lang{
    display: inline-block;
    float: right;
    padding-left: 0px;
    list-style: none;
    margin-left: 15px;
    margin-bottom: 0px;
    height: 24px;
    margin-top: 14px;
}

.lang li{
    display: inline-block;
}

.lang li>a{
    display: inline-block;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    overflow: hidden;
    color: #000;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    padding-right: 5px;
     -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; 
}

.lang li>a:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    width: 2px;
    height: 16px;
    margin-top: -8px;
    background-color: #969696;
}

.lang li:last-child>a:after{
    display: none;
}

.lang li>a.active, .lang li>a:hover{
    color: #ec1c24;
    text-decoration: none;
}

button:focus, input:focus, textarea:focus{
    outline: none;
}

.search{
    display: inline-block;
    width: 16px;
    height: 36px;me
    margin-top: 7px;
    float: right;
    position: relative;
}

.search .searchBtn{
    display: inline-block;
    width: 26px;
    height: 36px;
    position: absolute;
    top: 0;
    right: 0px;
    background-position: left center;
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    cursor: pointer;
}

.search form{
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.searchPageHead{
    display: inline-block;
    width: 100%;
    text-align: center;
}

.searchPageHead form{
    display: inline-block;
    position: relative;
    height: 36px;
    width: 400px;
}

.search form.active{
    width: 300px;
}

.search form input, .searchPageHead input{
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 5px 41px 5px 15px;
    border: 1px solid #d7d7d7;
    font-size: 14px;
}

.search form button, .searchPageHead button{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 36px;
    border: 0px;
    background-position: center;
    background-image: url(../img/searchW.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-color: #ec1c24;
    cursor: pointer;
}

.homeSliderWrap, .homeSlider{
    display: inline-block;
    width: 100%;
    float: left;
    position: relative;
}

.slideItem {
    display: inline-block;
    width: 100%;
    float: left;
    position: relative;
}

.slideItem:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background-color: #000;
    z-index: 1;
    opacity: 0.4;
}

.slideItem img{
    width: 100%;
}

.slideItem div{
    position: absolute;
    bottom: 130px;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.slideItem div h3{
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 40px;
    color: #fff;
    font-size: 36px;
    width: 100%;
    font-weight: 700;
    letter-spacing: 1px;
}

.more{
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 40px;
    line-height: 17px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.more:hover{
    color: #fff;
    text-decoration: none;
    border: 2px solid #ec1c24;
    background-color: #ec1c24;
}

.controlWrap{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: 30;
    padding-left: 60px;
    padding-right: 60px;
}

.controlBox{
    width: 100%;
    height: 80px;
    background-color: #fff;
}

.controls{
    position: absolute;
    z-index: 40;
    bottom: 0;
    left: 80px;
}

.controls>a{
    display: inline-block;
    width: 60px;
    height: 30px;
    font-size: 0px;
    margin-bottom: 25px;
    background-position: center;
    background-size: auto 45%;
    background-repeat: no-repeat;
    float: left;
}

.prevBtn{
    background-image: url(../img/arrow_left_gray.svg);
    border-right: 1px solid #7d7d7d;
}

.nextBtn{
   background-image: url(../img/arrow_right_gray.svg); 
}

.numericControls{
    display: none;
    list-style: none;
    height: 30px;
    width: 40px;
    float: left;
    margin-bottom: 25px;
    padding-left: 0px;
    position: relative;
}

.numericControls li{
    position: absolute;
    height: 40px;
    width: 40px;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.numericControls li.current{
    opacity: 1;
}

.numericControls li>a{
    line-height: 30px;
    font-size: 17px;
    color: #7d7d7d;
}

.socBox{
    display: inline-block;
    float: right;
    margin-top: 25px;
    height: 30px;
    margin-right: 20px;
    text-align: right;
}

.socBox span{
    color: #B9B9B9;
    display: inline-block;
    vertical-align: top;
    height: 30px;
    line-height: 30px;
}

.socBox a{
    display: inline-block;
    width: 20px;
    height: 30px;
    margin-left: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 55%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.socBox a.face{background-image: url(../img/fb_light.svg);}
.socBox a.insta{background-image: url(../img/insta_light.svg);}

.socBox a.face:hover{background-image: url(../img/fb_dark.svg);}
.socBox a.insta:hover{background-image: url(../img/insta_gray.svg);}

.scrollBox{
    display: inline-block;
    position: absolute;
    height: 100%;
    width: 30px;
    top: 0;
    left: 50%;
    margin-left: -15px;
    background-position: top center;
    background-image: url(../img/scroll.svg);
    background-repeat: no-repeat;
    background-size: auto 80%;
    cursor: pointer;
}

.aboutWrap{
    display: inline-block;
    width: 100%;
    padding: 120px 80px 0px 80px;
    background-image: url(../images/background_pattern_left.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.aboutWrap h2{
    display: inline-block;
    margin-top: 0px;
    text-align: center;
    width: 100%;
    font-weight: 700;
    margin-bottom: 30px;
}

.aboutWrap>p{
    width: 50%;
    margin-left: 25%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
}

.standartTextWrap p{
    width: 60%;
    margin-left: 20%;
    font-size: 16px;
}

.standartTextWrap img {
width: 100% !important;
height: auto !important;
margin-top: 20px;
margin-bottom: 20px;
}

.standartTextWrap iframe{
    width: 100% !important;
}

.aboutTextWrap{
    display: inline-block;
    width: 100%;
    position: relative;
    margin-top: 60px;
}

.aboutTextWrap img{
    width: 60%;
    float: left;
}

.textBox{
    display: inline-block;
    width: 40%;
    float: left;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
}

.textBox h3{
    display: inline-block;
    margin-top: 60px;
    width: 100%;
    color: #ec1c24;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
    position: relative;
}

.textBox h3:after{
    position: absolute;
    bottom: 100%;
    left: 0px;
    background-image: url(../img/red_rectangle.svg);
    width: 30px;
    height: 40px;
    content: "";
    background-repeat: no-repeat;
    background-size: 100%;
}

.textBox{
    font-size: 14px;
    margin-bottom: 30px;
}

.moreBtn{
    color: #ec1c24;
    padding-bottom: 2px;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid #ec1c24;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.moreBtn:hover{
    text-decoration: none;
    color: #7d7d7d;
    border-bottom: 2px solid #7d7d7d;
}

.redWrap{
    display: inline-block;
    float: left;
    width: 100%;
    position: relative;
    padding-top: 300px;
    margin-bottom: 60px;
}

.left{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
}

.left img{
    width: 100%;
}

.right{
    display: inline-block;
    width: 60%;
    margin-left: 40%;
}

.right.aboutPage{
    margin-left: 15%;
    width: 85%;
}

.right img{
    width: 100%;
}

.aboutPageIcons{
    display: inline-block;
    width: 100%;
    margin-top: 120px;
    margin-bottom: 60px;
    text-align: center;
}

.aboutPageIcons>div{
    display: inline-block;
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
}

.aboutPageIcons>div>img{
    height: 100px;
}

.aboutPageIcons>div>h3{
    display: inline-block;
    width: 100%;
    color: #ec1c24;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

.left h2{
    display: inline-block;
    width: 100%;
    padding-left: 60px;
    padding-bottom: 30px;
    font-weight: 700;
    font-size: 28px;
    color: #000;
}

.redTextWrap{
    position: absolute;
    top: 20%;
    height: 80%;
    left: 50%;
    margin-left: -250px;
    width: 500px;
    z-index: 1;
}

.redTextWrap.aboutPage{
    left: 10%;
    margin-left: 0px;
    height: 100%;
}

.redTextBox{
    position: absolute;
    top: 50%;
    left: 0px;
    display: inline-block;
    padding-left: 60px;
    padding-right: 60px;
    z-index: 1
}

.redTextWrap:after{
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0;
    display: inline-block;
    background-color: #ec1c24;
    -moz-transform: skewY(-200deg);
    -webkit-transform: skewY(-200deg);
    -o-transform: skewY(-200deg);
    -ms-transform: skewY(-200deg);
    transform: skewY(-200deg);
}

.redTextBox h3{
    display: inline-block;
    margin-top: 60px;
    width: 100%;
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
    position: relative;
}

.redTextBox h3:after{
    position: absolute;
    bottom: 100%;
    left: 0px;
    background-image: url(../img/white_rectangle.svg);
    width: 30px;
    height: 40px;
    content: "";
    background-repeat: no-repeat;
    background-size: 100%;
    
}

.redTextBox p{
    color: #fff;
    font-size: 14px;
}

.redTextBox .moreBtn{
    color: #fff;
    border-bottom: 2px solid #fff;
}

.best.aboutWrap{
    background-image: none;
    margin-top: 60px;
    text-align: center;
}

.best.aboutWrap .moreBtn{
    margin-top: 30px;
    margin-bottom: 60px;
}

.itemRow{
    display: inline-block;
    width: 100%;
}

.itemRow .item{
    width: 25%;
    display: inline-block;
    float: left;
    position: relative;
}

.itemRow .item img{
    width: 100%;
}

.itemRow .item a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: inline-block;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.itemRow .item h3{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: -36px;
    
}

.itemRow .item:hover a{
    opacity: 1;
}

.itemRow .item h3 span{
    font-weight: 400;
    display: inline-block;
    width: 100%;
    margin-top: 5px;
    font-size: 16px;
}

footer{
    display: inline-block;
    width: 100%;
    float: left;
    background-color: #efefef;
    padding: 60px 60px 0px 60px;
    margin-top: 30px;
}

.footLogo{
    display: inline-block;
    width: 30%;
    float: left;
    padding-right: 30px;
}

.footLogo img{
    height: 63px;
}

.footCol{
    width: 17.5%;
    float: left;
    padding-left: 30px;
    
}

.footCol h3{
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 15px;
    
}

.partnerLogo{
    display: inline-block;
    width: 100%;
    margin-bottom: 10px
}

.footCol p, .footCol .socPage{
    display: inline-block;
    margin-top: 0px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 0px;
    color: #7d7d7d;    
}

.copy{
    display: inline-block;
    width: 100%;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #7d7d7d;
    margin-bottom: 15px;
}

.pageCover{
    display: inline-block;
    width: 100%;
    float: left;
}

.prodCat{
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-left: 0px;
    list-style: none;
}

.prodCat li{
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
}

.prodCat li>a{
    display: inline-block;
    width: 100%;
    position: relative;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.prodCat li>a:after{
    content: "";
    position: absolute;
    top: -30px;
    left: 0px;
    height: 20px;
    width: 30px;
    display: inline-block;
    background-color: #ec1c24;
    -moz-transform: skewY(-10deg);
    -webkit-transform: skewY(-10deg);
    -o-transform: skewY(-10deg);
    -ms-transform: skewY(-10deg);
    transform: skewY(-10deg);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.prodCat li>a:hover, .prodCat li>a.active{
    text-decoration: none;
    color: #ec1c24;
    
}

.prodCat li>a.active:after, .prodCat li>a:hover:after{
    opacity: 1;
}

.prodList{
    display: inline-block;
    width: 100%;
    padding-left: 30px;
    margin-top: 60px;
    margin-bottom: 120px;
}

.prodList h2{
    display: inline-block;
    width: 100%;
    margin-top: 100px;
}

.prodItem{
    display: inline-block;
    width: 33.333333%;
    float: left;
    position: relative;
    padding-right: 30px;
    margin-bottom: 30px;
}

.prodItem.big{
    width: 50%;
}

.prodItem img{
    width: 100%;
}

.prodItem span{
    width: 100%;
    display: inline-block;
    font-size: 14px;
    margin-top: 15px;
    color: #7d7d7d;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.prod_slider{
    display: inline-block;
    width: 100%;
    position: relative;
    list-style: none;
    padding-left: 0px;
}

.prodItem h3{
    display: inline-block;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 0px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.prodItem:hover h3{
    color: #ec1c24
}

.prodItem a{
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.rightWrap{
    display: inline-block;
    width: 40%;
    position: relative;
    float: left;
}

.rightWrap>div{
    display: inline-block;
    width: 100%;
    position: relative;
}

.rightWrap .controls{
    bottom: 50%;
    left: 0px;
    width: 100%;
    margin-bottom: 15px;
}

.rightWrap .controls>a{
    position: absolute;
    top: 0px;
    background-color: #ec1c24;
    height: 30px;
    width: 30px;
}

.bx-next, .bx-prev, .slick-next{
    position: absolute;
    top: 50%;
    background-color: #ec1c24;
    height: 30px;
    width: 30px;
    font-size: 0px;
    margin-top: -15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 60%;
}

.bx-prev{
    left: 0%;
    border-right: 0px;
    background-image: url(../img/arrow_left_white.svg);
}

.bx-next{
    right: 0%;
    background-image: url(../img/arrow_right_white.svg);
}

.sliderMinBox{
    width: 100%;
    margin-bottom: 30px;
}

.sliderMinBox img{
    width: 100%;
}

.slider-nav{
    width: 100%;
    margin-left: 0%;
}

.slider-nav .slick-slide{
    width: 20%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.slider-nav .slick-slide.slick-current, .slider-nav .slick-slide:hover{
    opacity: 1;
}

.slider-nav .slick-slide>img{
    width: 100%;
}

.leftWrap{
    display: inline-block;
    width: 60%;
    float: left;
    padding-left: 30px;
}

.leftWrap h1{
    display: inline-block;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    margin-top: 0px;
    color: #ec1c24;
    margin-bottom: 5px;
}

.leftWrap h2{
    display: inline-block;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    margin: 0px;
    margin-bottom: 10px;
}

.leftWrap>div{
    display: inline-block;
    width: 100%;
    border-top: 1px solid #d7d7d7;
    margin-top: 0px;
    position: relative;
}

.leftWrap>div.active{
    margin-top: 10px;
}

.leftWrap>div>h3{
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.leftWrap>div>h3:after, .leftWrap>div>h3:before{
    content: "";
    display: inline-block;
    width: 15px;
    height: 4px;
    background-color: #d7d7d7;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: 5px;
}

.leftWrap>div>h3:before{
    opacity: 1;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.leftWrap>div.active>h3:before{
    opacity: 0;
}

.leftWrap>div>p{
    display: none;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    color: #323232;
}

.leftWrap>div.active>p{
    display: inline-block;
}

.leftWrap>div>table{
    width: 100%;
    margin-top: 10px;
    display: none;
}

.leftWrap>div.active>table{
    display: table;
}

.leftWrap>div>table td{
    border-bottom: 1px solid #d7d7d7; 
    padding: 10px;
    font-size: 14px;
}

.first{
    font-weight: bold;
    border-right: 1px solid #d7d7d7;
}

.desc{
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    line-height: 22px;
    text-align: justify;
    color: green;
    font-weight: bold;
}

.contactPageWrap{
    display: inline-block;
    width: 80%;
    margin-left: 10%;
    float: left;
    position: relative;
    z-index: 1;
    padding-left: 400px;
    -moz-transform: translateY(-25%);
-webkit-transform: translateY(-25%);
-o-transform: translateY(-25%);
-ms-transform: translateY(-25%);
transform: translateY(-25%);
    background-color: #fff;
}

.contactPageWrap h2{
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    margin-top: 40px;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.contactPageWrap h2:after{
    content: "";
    position: absolute;
    bottom: 100%;
    margin-bottom: 10px;
    width: 30px;
    height: 15px;
    background-color: #000;
    left: 0px;
    -moz-transform: skewY(-10deg);
    -webkit-transform: skewY(-10deg);
    -o-transform: skewY(-10deg);
    -ms-transform: skewY(-10deg);
    transform: skewY(-10deg);
}

.contactPageWrap .contactInfoWrap{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 400px;
    background-color: #ec1c24;
    padding: 60px 40px;
}

.contactPageWrap .contactInfoWrap h2{
    color: #fff;
}

.contactPageWrap .contactInfoWrap h2:after{
    background-color: #fff;
}

.contactPageWrap .contactInfoWrap p{
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 14px;
    padding-left: 20px;
    background-position: left 3px;
    background-repeat: no-repeat;
    background-size: 12px;
}

.contactPageWrap .contactInfoWrap p.map{background-image: url(../img/map.svg)}
.contactPageWrap .contactInfoWrap p.tel{background-image: url(../img/phone_white.svg)}
.contactPageWrap .contactInfoWrap p.mail{background-image: url(../img/message.svg)}

.contactPageWrap .contactInfoWrap .soc{
    display: inline-block;
    width: 100%;
}

.contactPageWrap .contactInfoWrap .soc a{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    margin-right: 10px;
}

.contactPageWrap .contactInfoWrap .soc a.face{background-image: url(../img/fb_white.svg)}
.contactPageWrap .contactInfoWrap .soc a.insta{background-image: url(../img/insta_white.svg)}

.contactPageWrap form{
    display: inline-block;
    width: 100%;
    border: 1px solid #d7d7d7;
    border-left: 0px;
    padding: 60px 40px
}

.contactPageWrap form input, .contactPageWrap form textarea{
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #d7d7d7;
}

.contactPageWrap form>input{
    width: 50%;
    float: left;
}

.contactPageWrap form>div{
    width: 50%;
    float: left;
    padding-left: 20px;
}

.contactPageWrap form>button{
    display: inline-block;
    float: right;
    margin-top: 15px;
    border: 0px;
    text-transform: uppercase;
    color: #fff;
    background-color: #ec1c24;
    font-size: 14px;
    padding: 10px 25px;
    cursor: pointer;
}

.contactPageWrap form>div>input{
    width: 100%;
}

.contactPageWrap form textarea{
    width: 100%;
    margin-top: 20px;
}

.menu li>a.haybedLink{
    color: #A967A9;
}

.menuBtn{
    display: none;
}

.lSizing{
    display: inline-block;
    width: 100%;
}
.mSizing{
    display: none;
}

.blogItem{
    display: inline-block;
    width: 33.333333%;
    float: left;
    padding-right: 40px;
}

.blogItem img{
    width: 100%;
}

.blogItem h2{
    margin-top: 20px;
    width: 100%;
    text-align: left;
    font-size: 20px;
    margin-bottom: 10px;
}

.blogItem p{
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    color: #323232;
    overflow: hidden;
    height: 67px;
}

.blogItem .date{
    width: 100%;
    display: inline-block;
    font-size: 14px;
    margin-top: 0px;
    color: #7d7d7d;
}

.blik{
    display: none;
}

.chatbox{
    display: inline-block;
    position: fixed;
    right: 60px;
    bottom: 0px;
    z-index: 100;
    width: 327px;
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -o-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.chatbox.active{
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}

.chatbox form{
    width: 100%;
    padding: 40px;
    display: inline-block;
    background-color: #fff;
    border: 1px solid #d7d7d7;
}

.chatbox form input{
    width: 100%;
    font-size: 14px;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #d7d7d7;
}

.chatbox form textarea{
    width: 100%;
    font-size: 14px;
    display: inline-block;
    margin-top: 20px;
    padding: 5px 15px;
    border: 1px solid #d7d7d7;
}

.chatbox form button{
    width: 100%;
    margin-top: 20px;
    background-color: #ec1c24;
    border-color: #ec1c24;
    cursor: pointer;
}

.chatbox span{
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    color: #fff;
    padding: 15px 40px 15px 48px;
    background-position: 20px center;
    background-repeat: no-repeat;
    background-size: auto 40%;
    background-image: url(../img/chat.svg);
    display: inline-block;
    background-color: #ec1c24;
    position: absolute;
    top: -47px;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.chatbox.active span{
    padding-left: 68px;
    background-position: 40px center;
}

.thankPop{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.thankPop div{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    margin-top: -100px;
    margin-left: -200px;
    background-color: #fff;
    padding: 35px 40px;
    text-align: center;
}
.thankPop div>h2{
    display: inline-block;
    margin-top: 0px;
    text-align: center;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}
.thankPop .more.okBtn{
    border: 2px solid #ec1c24;
    color: #ec1c24;
    cursor: pointer;
}
.thankPop .more.okBtn:hover{
    color: #fff;
}

.thankPop.active{
    display: none;
}

.subPop{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    text-align: center;
    display: none;
}
.subPop.active{
    display: none;
}
.subPop form{
    display: inline-block;
    background-color: #fff;
    padding: 30px 40px;
    position: relative;
}
.okPop{
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 30px 40px;
}
.okPop h2{
    padding-top: 0px;
    background-image: none !important;
}
.popCloseBtn{
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}
.popCloseBtn:after, .popCloseBtn:before{
    content: "";
    width: 16px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -2px;
    display: inline-block;
    background-color: #ec1c24;
}
.popCloseBtn:after{
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.popCloseBtn:before{
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.subPop h2{
    width: auto;
    margin-top: 0px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    background-image: url(../img/subscribe.svg);
    background-position: center top;
    background-size: 35px;
    background-repeat: no-repeat;
    padding-top: 50px;
}
.subPop input{
    display: inline-block;
    padding: 5px 15px;
    border: 2px solid #d7d7d7;
    border-right: 0px;
    height: 41px;
    line-height: 43px;
    vertical-align: top;
    margin-right: -5px;
}
.subPop button.more{
    border: 2px solid #ec1c24;
    color: #fff;
    background-color: #ec1c24;
    cursor: pointer;
}
.subPop button.more:hover{
    color: #fff;
}
.subPop p{
    font-size: 16px;
    color:#ec1c24;
    margin-top: 10px;
}

@media only screen and (max-width: 1420px) {
    
    .search{
        float: right;
        margin-right: 10px;
    }
    
    .menu{
        position: absolute;
        right: 0px;
        top: 0px;
        height: 70px;
        z-index: 1;
        width: 100%;
        background-color: #fff;
        text-align: right;
        padding-right: 120px;
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -o-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }
    
    .menu.active{
        -moz-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -o-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    
    .menu:after{
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: inline-block;
        height: 100%;
        width: 100%;
        background-color: #fff;
        z-index: -1;
    }
    
    header:before{
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        display: inline-block;
        height: 100%;
        width: 100px;
        background-color: #fff;
        z-index: 10;
    }
    
    .menu>li{
        height: 71px;
    }
    
    .menu>li>a, .menu>li>span{
        line-height: 71px;
        height: 71px;
    }
    
    .menuBtn{
        display: inline-block;
        width: 30px;
        height: 30px;
        float: right;
        margin-top: 10px;
        margin-left: 20px;
        position: relative;
        cursor: pointer;
        z-index: 12;
    }

    .menuBtn span{
        position: absolute;
        top: 50%;
        left: 50%;
        display: inline-block;
        height: 2px;
        width: 25px;
        background-color: #ec1c24;
        margin-top: -1px;
        margin-left: -12.5px;
    }

    .menuBtn span:after, .menuBtn span:before{
        content: "";
        position: absolute;
        right: 0;
        transform-origin: center right;
        display: inline-block;
        height: 2px;
        width: 25px;
        background-color: #ec1c24;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .menuBtn span:after{
        top: -7px;
    }

    .menuBtn span:before{
        bottom: -7px;
    }
    
     .menuBtn.active span:after{
        width: 15px;
        top: 0px;
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .menuBtn.active span:before{
        bottom: 0px;
        width: 15px;
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@media only screen and (max-width: 1110px) {
    .logo{
        z-index: 0;
    }
}

@media only screen and (max-width: 980px) {
    .blogItem {
    display: inline-block;
    width: 100%;
    float: left;
    padding-right: 0;
}
.standartTextWrap p {
    width: 100%;
    margin-left: 0;
    font-size: 16px;
}
.standartTextWrap{
    padding: 80px 2.5% !important;
}
.standartTextWrap h1{
    font-size: 28px;
}
    .contactPageWrap{
        width: 100%;
        padding-left: 0px;
        margin-left: 0px;
    }
    .contactPageWrap .contactInfoWrap {
        display: inline-block;
        position: relative;
        top: 0;
        left: 0;
        height: auto;
        width: 100%;
        background-color: #ec1c24;
        padding: 40px 2.5%;
    }
    .rightWrap{
        width: 100%;
    }
    #sliderControls {
        width: 95%;
        margin-left: 2.5%;
    }
    .prodCat{
        margin-top: 60px;
    }
    .prodCat li>a:after{
        display: none;
    }
    .contactPageWrap form {
        display: inline-block;
        width: 100%;
        border: 1px solid #d7d7d7;
        border-left: 0px;
        padding: 40px 2.5%;
        border-bottom: 0px;
    }
    .contactPageWrap {
        -moz-transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    .prodList{
        padding-left: 0px;
    }
    .prodItem{
        width: 100%;
        padding-right: 0px;
        margin-bottom: 80px;
    }
    .aboutWrap h2{
        margin-top: 40px;
        text-transform: none;
        font-size: 24px;
    }
    .leftWrap{
        width: 100%;
        margin-top: 40px;
        padding-left: 0px;
    }
    .contactPageWrap form>div{
        width: 100%;
        padding-left: 0px;
        margin-top: 20px;
    }
    .contactPageWrap form>input{
        width: 100%;
    }
    .pageCover{
        display: none;
    }
    .aboutWrap.aboutPage{
        margin-top: 60px !important;
    }
    .aboutPageIcons>div{
        width: 100%;
    }
    .right.aboutPage{
        display: inline-block !important;
        width: 100%;
        margin-left: 0px;
    }
    .redTextWrap.aboutPage{
        left: 0px;
    }
    .aboutPageIcons {
        display: inline-block;
        width: 100%;
        margin-top: 40px;
        margin-bottom: 40px;
        text-align: center;
    }
    .menu li>span, .menu li:hover>span{
        background-image: none;
    }
    .redWrap{
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .aboutWrap{
        margin-top: 0px !important;
    }
    .lang{
        position: absolute;
        z-index: 10;
        width: 100%;
        text-align: center;
        top: 20px;
        left: 0;
        margin-left: 0px;
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -o-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;        
    }
    .lang.active{
        -moz-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -o-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    .menu{
        height: auto;
        padding: 80px 0px 0px 0px;
        overflow: auto;
    }
    
    .blik{
        position: absolute;
        width: 100%;
        height: 80px;
        top: 0;
        left: 0;
        display: inline-block;
        background-color: #fff;
        z-index: 3;
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -o-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out; 
    }
    
    .blik.active{
        -moz-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -o-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    
    .subBtn{
        margin-bottom: 0px;
    }
    .menu>li>a, .menu>li>span{
        height: 40px;
        line-height: 40px;
    }
    .menu>li{
        width: 100%;
        text-align: center;
        padding: 0px;
        height: auto;
    }
    .subList{
        margin-bottom: 10px;
        padding-left: 0px;
        padding-right: 0px;
        position: relative;
        opacity: 1;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: #efefef;
        -moz-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        -o-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }
    .subList>li{
        width: 32%;
        float: none;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 850px) {
    .subList>li span{
        height: 40px;
    }
    .prodCat li{
        width: 100%;
    }
    .searchPageHead form{
        width: 100%;
    }
    .lSizing{
        display: none;
    }
    .mSizing{
        display: inline-block;
        width: 100%;
    }
    header{
        padding-left: 15px;
        padding-right: 15px;
    }
    header:before{
        width: 40px;
    }
    .search{
        margin-top: -1px;
    }
    .logo{
        width: 120px;
        height: 35px;
    }
    .menuBtn{
        margin-top: 2px;
    }
    .phone{
        margin-top: 5px;
    }
    .search form.active{
        width: 210px;
    }
    .footCol{
        width: 50%;
        margin-bottom: 20px;
    }
    .footLogo{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    footer{
        display: inline-block;
        width: 100%;
        float: left;
        background-color: #efefef;
        padding: 20px 2.5% 0px 2.5%;
        margin-top: 30px;
    }
    .footCol.partner{
        width: 100%;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-left: 0px;
    }
    .partnerLogo{
        width: 100%;
        text-align: center;
    }
    .partnerLogo img{
        height: 45px;
    }
}

@media only screen and (max-width: 800px) {
    .controlWrap{
        position: relative;
        display: inline-block;
        padding-left: 2.5%;
        padding-right: 2.5%;
    }
    .controls{
        left: 2.5%;
    }
    .controls>a{
        margin-bottom: 28px;
    }
    .aboutWrap{
        padding: 60px 2.5% 0px 2.5%;
    }
    .aboutWrap>p{
        margin-left: 0px;
        width: 100%;
    }
    .left{
        width: 100%;
    }
    .redTextWrap {
        position: relative;
        top: 0;
        height: auto;
        left: 0;
        margin-left: 0px;
        padding-top: 40px;
        padding-bottom: 20px;
        width: 100%;
        z-index: 1;
        background-color: #ec1c24;
        
    }
    
    .itemRow .item a{
        opacity: 1;
    }
    
    .right{
        display: none;
    }
    
    .redTextBox {
        position: relative;
        top: 0;
        left: 0px;
        display: inline-block;
        padding-left: 2.5%;
        padding-right: 2.5%;  
        margin-top: 0px !important;
    }
    .itemRow .item{
        width: 50%
    }
    .aboutTextWrap img{
        display: none;
    }
    .textBox {
        display: inline-block;
        width: 100%;
        float: none;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 30px;
        text-align: center;
    }
    .textBox h3{
        width: auto;
    }
    .left h2{
        text-align: center;
        padding-left: 0px;
    }
}

@media only screen and (max-width: 610px) {
    
    .slideItem div h3{
        font-size: 28px;
    }
    .scrollBox, .controls{
        display: none;
    }
    .phone{
        position: absolute;
        top: 10px;
        left: 50%;
        margin: 0px;
        margin-left: -70px;
        z-index: 10;    
        -moz-transform: translateX(800px);
        -webkit-transform: translateX(800px);
        -o-transform: translateX(800px);
        -ms-transform: translateX(800px);
        transform: translateX(800px);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;        
    }
    .phone.active{
        -moz-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -o-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    .lang{
        top: 35px;
    }
    .subList>li{
        width: 49%;
    }
    .search{
        margin-right: 0px;
        position: relative;
        z-index: 1;
    }
    .menuBtn{
        margin-left: 10px;
    }
    .redWrap{
        padding-top: 0px;
    }
    .footCol{
        width: 100%;
        text-align: center;
        padding-left: 0px;
    }
    .chatbox{
        right: 2.5%;
        width: 95%;
    }
}