* { 
    box-sizing: border-box; 
    padding: 0;
    margin: 0;
}


body {
    font-family: 'Montserrat', sans-serif;
    color: #42444a;
        font-weight: 100;
        background: #eee;
}

img {
    max-width: 100%;
}

ul, ol {
    list-style-position: inside;
}

h1, h2, h3{
    text-align: center;
    margin: 30px 0;
    font-weight: 300;

}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 30px;
}

a {
 transition: 0.5s all;  
 color: #42444a;
}

a:hover {
  color: #fb0;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

.text_left {
    text-align: left;
}

.flex_block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

.flex_column {
    flex-direction: column;
}

.flex_nowrap {
    flex-wrap: nowrap;
}

.justify_center {
    justify-content: center;
}

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

.justify_around {
    justify-content: space-around;
}

.justify_end {
    justify-content: flex-end;
}

.align_center {
    align-items: center;
}

.flex_row_reverse {
    flex-direction: row-reverse;
}

.flex_column_reverse {
    flex-direction: column-reverse;
}


.w_20 {
    width: 20%;
}

.w_25 {
    width: 25%;
}

.w_30 {
    width: 30%;
}

.w_33 {
    width: 33.3333333333%;
}

.w_40 {
    width: 40%;
}

.w_50 {
    width: 50%;
}

.w_60 {
    width: 60%;
}

.w_70 {
    width: 70%;
}

.w_75 {
    width: 75%;
}

.w_80 {
    width: 80%;
}

.w_100 {
    width: 100%;
}

.container {
    width: 100%;
    margin: 0 auto; 
    max-width: 1170px;
}

.button {
    cursor: pointer;
    transition: 1s all;
    position: relative;
    border: 1px solid transparent;
    display: inline-block;
    background-color: #2ecc71;
    margin: 20px 0;
    text-decoration: none;
    color: #fff;
    padding: 12px 18px;
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
    border-radius: 3px;
    transition: 0.5s all;
}

.button:hover {
    background-color: #3a3d45;
    color: white;
}


.title {
    text-align:  center;
    margin:  20px 0;
    font-size: 35px;
        text-transform: uppercase;
}

.page_content p {
    margin-bottom: 10px;
}

.page_content ul {
    margin: 10px;
}

#mainSlider .carousell-cell {
    width: 100%;
    color: white;
}

#mainSlider .carousell-cell .slide_wrapper {
    position: relative;
}

#mainSlider .carousell-cell .slide_overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    z-index: 10;
}

#mainSlider .carousell-cell img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}


#mainSlider .slide_title {
    text-shadow: 0 2px 5px rgba(0,0,0,.5);
    font-size: 42px;
    font-weight: 600;
    margin: 20px 0;
}

#mainSlider  .slides_bg {
    position: absolute;
    top:  0;
    right:  0;
    left:  0;
    bottom: 3px;
    background: #0000003d;
    line-height:  0;
    z-index: 1;
}



#mainSlider .carousell-cell .slide_title {
    transform: translate(0px,-40px);
    transition-delay: 0.2s;
    opacity: 0;
    transition: 1s all;
}


#mainSlider .carousell-cell .slide_text  {
    transform: translate(40px,0px);
    transition-delay: 0.2s;
    opacity: 0;
    transition: 1s all;
}

#mainSlider .carousell-cell .button {
    transform: translate(0,40px);
    transition-delay: 0.2s;
    opacity: 0;
    transition: 1s all;
}

#mainSlider .carousell-cell:nth-child(odd) .slide_title {
    transform: translate(-40px,0px);
    transition-delay: 0.2s;
    opacity: 0;
    transition: 1s all;
}

#mainSlider .carousell-cell:nth-child(odd) .slide_text  {
    transform: translate(40px,0px);
    transition-delay: 0.2s;
    opacity: 0;
    transition: 1s all;
}

#mainSlider .carousell-cell:nth-child(odd) .button {
    transform: translate(-40px,0px);
    transition-delay: 0.2s;
    opacity: 0;
    transition: 1s all;
}


#mainSlider .carousell-cell.is-selected .button,
#mainSlider .carousell-cell.is-selected .slide_text,
#mainSlider .carousell-cell.is-selected .slide_title {
    transform: translate(0,0);
    opacity: 1;
}

#mainSlider  .flickity-page-dots {
    bottom: 20px;
}

#mainSlider  .flickity-page-dots .dot {
        background: #e0a203;
}



.relativeSlider {
    position:  relative;
}

.absoluteSlider{
    bottom:  0;
    position: absolute;
    z-index:  100;
    left:  0;
    right:  0;
}

#navSlider .carousell-cell {
    width: 20%;
    color: white;
    padding: 20px;
}




#navSlider .carousell-cell a {
    color: white;
    text-decoration: none;
}

#navSlider .carousell-cell img {
    width: 100%;
    object-fit: contain;
    max-height: 60px;
}


#navSlider .slide_title {
    text-shadow: 0 2px 5px rgba(0,0,0,.5);
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    text-align: center;
    color: white;
    text-decoration: none;
}

#navSlider .flickity-button {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
}

#navSlider .flickity-prev-next-button {
    top: calc(50% - 19px);
}

#categories {
          background: #cc9600; 
}

#categories .categoryItem {
    width: 23%;
    transition: width .5s;
    position: relative;
        line-height: 0;

}

#categories:hover .categoryItem,
#categories .categoryItem.inactive  {
     width: 18%;
}

#categories .categoryItem.active,
#categories .categoryItem:last-child.active  {
    width: 38%;
}


#categories .categoryItem img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    min-height: 50vh;
}
#categories .categoryItem:last-child {
    background: #cc9600;
    
    font-size: 50px;
    color: white;
    
    line-height: 1.7;
    width: 8%;
      position: relative;
}

#categories .categoryItem:last-child div {
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}


#categories .categoryItem:last-child span {
    display: block;
    font-size: 20px;
    position: absolute;
    opacity: 0;
    transition: 1s all;
}

#categories .categoryItem:last-child img {
    height: 30px;
    width: 30px;
    display: block;
    line-height: 1.7;
    position: absolute;
    opacity: 1;
    transition: 0.5s all;
      min-height: unset;
  
}

#categories .categoryItem:last-child:hover span {
    opacity: 1;
}

#categories .categoryItem:last-child:hover img {
     opacity: 0;
}

#categories .category_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #05050559;

}

#categories .caregoryName {
    margin: 10px 0;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}

#categories .categoryItem:hover .catico {
     display: none;
}

#categories .categoryItem:hover .category_overlay {
    top: unset;
    bottom: 0;
    background: #cc9603;
    padding: 10px;
}

#categories .categoryItem a {
    color: white;
}

#categories .category_overlay img {
    height: 60px;
    object-fit: contain;
      min-height: unset;
}



/* Inner */

#categoriesInner {
          background: #cc9600; 
}

#categoriesInner  .categoryItem {
    width: 25%;
    transition: width .5s;
    position: relative;
        line-height: 0;

}

#categoriesInner:hover .categoryItem,
#categoriesInner .categoryItem.inactive  {
     width: 20%;
}

#categoriesInner  .categoryItem.active{
    width: 40%;
}


#categoriesInner  .categoryItem img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    min-height: 50vh;
}


#categoriesInner .category_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #05050559;

}

#categoriesInner  .caregoryName {
    margin: 10px 0;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}

#categoriesInner .categoryItem:hover .catico {
     display: none;
}

#categoriesInner  .categoryItem:hover .category_overlay {
    top: unset;
    bottom: 0;
    background: #cc9603;
    padding: 10px;
}

#categoriesInner .categoryItem a {
    color: white;
}

#categoriesInner  .category_overlay img {
    height: 60px;
    object-fit: contain;
      min-height: unset;
}


#kitchenCtegory {
          background: #cc9600; 
          margin: 60px 0; 
}

#kitchenCtegory  .categoryItem {
    width: 50%;
    transition: width .5s;
    position: relative;
        line-height: 0;

}

#kitchenCtegory:hover .categoryItem,
#kitchenCtegory .categoryItem.inactive  {
     width: 40%;
}

#kitchenCtegory  .categoryItem.active{
    width: 60%;
}


#kitchenCtegory  .categoryItem img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    min-height: 50vh;
}


#kitchenCtegory .category_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #05050559;

}

#kitchenCtegory  .caregoryName {
    margin: 10px 0;
    line-height: 1.5;
    font-weight: bold;
}

#kitchenCtegory .categoryItem:hover .catico {
     display: none;
}

#kitchenCtegory  .categoryItem:hover .category_overlay {
    top: unset;
    bottom: 0;
    background: #cc9603;
    padding: 10px;
}

#kitchenCtegory .categoryItem a {
    color: white;
}

#kitchenCtegory  .category_overlay img {
    height: 60px;
    object-fit: contain;
      min-height: unset;
}


.content {
       margin-bottom: 60px;
    line-height: 1.7;
    text-align: justify;

}

#about {
    background: linear-gradient(to left, #0000003d, #0000003d), url(/img/bgs/gallery-4.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color:  white;
    text-shadow: 1px 1px #0a0a0a;
    padding: 100px 0;
}

#content {
    padding: 50px 0;
}

#topPadding {
    height: 119px;
}

#topbar .button {
    margin: 0;   
     padding: 5px 10px;
}

#headerMain {
     position: absolute;
    top:  0;
    left:  0;
    right:  0;
    z-index:  10;
    color:  white;
    font-weight: 500;
        background: #232529;
         text-shadow: 1px 1px #232529;
}

 #header  {
   z-index:  10;
   font-weight: 500;
   background: #232529;
   color:  white;
}



#headerMain.f_header, #header.f_header {
    position: fixed;
    background: #232529;
    transition: 0.5s all;
    z-index: 1000;
    box-shadow: 0px 0px 6px 2px #0000007d;
}

#headerMain .headerMain, #header .headerMain {
    transition: 0.5s all;
}

#headerMain.f_header .headerMain, #header.f_header .headerMain {
    display: none;
}

#headerMain a, .mainMenu a  {
    color: white;
    width: 100%;
    text-decoration: none;
    display: block;
}

#header a {
    color: #ededed;
    text-decoration: none;
}

#headerMain i, #header i {
    transition: 0.5s all;
    cursor: pointer;
    padding: 10px;
}

#headerMain a:hover, #headerMain i:hover,
#header a:hover, #header i:hover {
   color: #fb0;
}

#headerMain .tobbar_block,
#header .tobbar_block {
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
   
}

#headerMain .phone_block,
#header .phone_block  {
    position: relative;
}
#headerMain .other-phones,
#header .other-phones {
    display: none;
    left: 10px;
    right: 10px;
    padding: 10px 0px;
    background: rgb(35, 37, 41);
    top: calc(100% + 1px);
    position: absolute;
    z-index: 10;
}

#headerMain .other-phones a,
#header .other-phones a {
    display:  block;
    color: white;
}

#headerMain .other-phones a:hover,
#header .other-phones a:hover {
   color: #ffbb05;
}


.headerMain .logo_block img {
    height: 60px;
}  

 .headerMain  {
    padding: 5px 0;
 }

#navigation {
    border-top:  1px solid;
    padding: 8px 0;
    text-transform: uppercase;
    transition: 0.5 all;
    font-size: 14px;
}

#navigation .sub-menu {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 50px;
    left: 0;
    background: #232529;
    padding: 10px 0;
}

#navigation .sub-menu li {
    text-align: left;
    padding: 0;
}
#navigation .sub-menu a {
    padding: 5px 10px;
}

#navigation .parent-menu {
  position: relative;  
  cursor: pointer;
  transition: 0.5s all;
}

#navigation .parent-menu:hover,
#navigation .parent-menu:hover i {
    color: #ffbb05;
}

#navigation  img {
    height: 60px;
    display: none;
}

#headerMain.f_header #navigation  img {
    display: block;
}

#navigation ul {
    list-style-type: none;
}

#navigation ul li {
    padding: 5px 10px;
    position: relative;
    flex-grow: 2;
    text-align: center;
}

#gallery  {
    padding: 100px 0; 
}

#gallery .gallery_item {
    line-height:  0;
    position: relative;
    overflow: hidden;
    padding: 15px;
    
}


#gallery .gallery_item img {
    width:  100%;
    height: 100%;
    transition:  1.5s all;
    object-fit: cover;
}




#gallery .gal_wrapper {
    height:  250px;
    width:  100%;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
    transition: all .5s;
    position: relative;
}

#gallery .gal_wrapper .categoryButton {
    background-color: #fb0;
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -100%;
    right: -100%;
    z-index: 0;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transition: all .8s;
    -o-transition: all .8s;
    -webkit-transition: all .8s;
    transition: all .8s;
}

#gallery .gallery_item:hover  .categoryButton {   
    width: 150px;
    height: 150px;
    bottom: -83px;
    right: -75px;
    z-index: 0;  
}

#gallery .gallery_item i {
    position: absolute;
    bottom: 17px;
    right: 17px;
    opacity: 0;
  
    color: white;
    font-size: 25px;
    z-index: -1;
  

}

#gallery .gallery_item:hover i {
      transition: all 1.5s;
    transition-delay: 0.5s;
    opacity: 1;
    z-index: 10;    
}


#gallery .gallery_item:hover .gal_wrapper {
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

#gallery .gallery_item:hover img{
    transform: scale(1.1);
}

#blog {
    padding: 40px 0;
}

#blogList {
    padding: 20px 0;
}



#video, #benefits {
    padding: 50px 0 20px;
}


#video .videoBlock-item {
    padding: 10px;
}

#benefits .benefitsItem {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

#benefits .benefitsItem:hover i{
    transform: scale(1.1);
}

#benefits .benefitsItem:hover div {
    border: 8px solid  #ffbb05;
}

#benefits .benefitsItem div {
    padding: 30px 10px;
    box-shadow: 1px 0px 3px 0px #00000042;
    border: 8px solid #ffbb056b;
    transition: 0.5s all;
}

#benefits .benefitsItem i {
    font-size: 45px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffbb05;
    color: white;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
    margin: 0 auto;

}

#benefits .benefitsItem p {
    margin: 20px 0; 
    line-height: 1.7;
    font-size: 18px;
}

#steps {
    padding: 0px 0 10px;
}
#steps .stepItem {
    padding: 20px;
    text-align:  center;
    margin: 40px 0 20px;
    position:  relative;
}


#steps .stepNumber {
    font-size: 45px;
    font-weight:  bold;
    color: #ffbb05;
    text-shadow: 1px 1px #232529;
    margin: 20px 0;
    position:  absolute;
    top: -50px;
    width: 100px;
    background: #edeeee;
    left: calc(50% - 50px);
}

#steps .stepName {
    font-weight: 600;
    margin: 40px 0;
}

#steps .stepInner {
    padding: 10px;
    border: 5px solid #ffbb05;
    position:  relative;
}


#blogList .blogItem {
    padding: 20px;

}

#blogList .blogItem a {
    box-shadow: 0 1px 2px rgba(0,0,0,.1); 
    display: block;
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
    margin-bottom: 30px;
    background-color: #fff;
     text-decoration: none;

}
#blogList .blogItem a:hover {
    position: relative;
    color: initial;
    -moz-transform: translate3d(0,-20px,0);
    -ms-transform: translate3d(0,-20px,0);
    -o-transform: translate3d(0,-20px,0);
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
}


#blogList .caregoryName {
    padding: 10px;
    text-align: center;
    font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        height: 64px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        justify-content: center;
}


#blogList .show_more {
    background-color: #fff;
    position: absolute;
    padding: 0 15px 15px;
    left: 0;
    top: 100%;
    width: 100%;
    -moz-transform: scale(1,0);
    -ms-transform: scale(1,0);
    -o-transform: scale(1,0);
    -webkit-transform: scale(1,0);
    transform: scale(1,0);
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
   transition: all .2s; 
   display: -webkit-flex;
   display: -moz-flex;
   display: -ms-flex;
   display: -o-flex;
   display: flex;
   justify-content: center;
}
   
#blogList .blogItem a:hover .show_more {
     -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -o-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}

   
#blogList .blogItem a:hover .show_more .blogMore {
        -moz-transition-delay: .2s;
    -o-transition-delay: .2s;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}
#blogList .blogItem a .show_more .blogMore  {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
    margin: 0;
}
    

.pagination {
    margin: 20px 0 50px;
}

.pagination a {
    color: #282b2f;
    padding: 7px 14px;
    text-decoration:  none;
    transition:  0.5s all;
    display: block;
    font-size: 20px;
    border-radius: 5px;
}

.pagination li {
    list-style-type: none;
}

.pagination a.active {
    background: #232529;
    color:  white;
}
.pagination a:hover {
    background: #fb0;
    color:  white;
}


.albumList {
    
}

.albumList .albumItem {
    line-height:  0;
    padding: 1px;
}

.albumList .albumItem img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

#advantagers {
    padding: 30px 0 0;
}

#advantagers .advantagers_item {
    padding: 5px;
}

#advantagers .advantagers_wrapper {
    border: 1px solid #dfdfdf;
    min-height: 250px;
       display: -webkit-flex;
       display: -moz-flex;
       display: -ms-flex;
       display: -o-flex;
       display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 40px;
    box-shadow: 6pt 0.4375pc 0 0 #e7ebef;
}

#advantagers .advantagers_item i {
    width: 90px;
    height: 90px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
    font-size: 50px;
    border-radius: 50%;
}

#advantagers .advantagers_item:hover i {
    background: #fbc531;
    color: white;
    transform: translate(0px, -10px);

}


#advantagers .advantagers_name {
    font-weight: 600;
    margin-bottom: 15px;
}

#advantagers .advantagers_description {
    color: #bbb9b9;
    font-size: 12px;
}

#otzyvy .otzyvy_block {
    min-height: 60vh;
}


#otzyvy .otzyvy_title {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to left, #00000021, #00000021), url(/img/otzyvy_bg.jpeg);
    background-position: center center;
}



#otzyvy .otzyvy_title .title {
    width: 90%;
    background:  white;
    padding: 10px;
    border: 1px solid #dfdfdf;
    box-shadow: 6pt 0.4375pc 0 0 #e7ebef;
}

#otzyvy .otzyvy_slider {
    align-self: center;
}

#otzyvy .otzyvy_item {
    text-align: center;
    padding: 50px;
}

#otzyvy .otzyvy_item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

#otzyvy .otzyv_name {
    margin:  20px 0;
    font-weight:  bold;
    font-size: 18px;
}

#otzyvy .flickity-page-dots {
    bottom: 10px;
}

#seo_text {
    padding: 60px 0;
    text-align:  justify;
    line-height: 1.7;
}

#map {
    height: 400px;
    border-top: 3px solid #ffbb05;
}

#footer {
    padding: 40px 0 0px;
    background: #000;
    color: #b1b1b1;
    font-size: 14px;
}

#footer a {
    color: #b1b1b1;
    text-decoration:  none;
    display: block;
    transition: 0.5s all;
}
#footer a:hover {
    color: #ddb32a;
}


#footer .footer_contacts i {
    font-size: 20px;
    color: #e1b12c;
    margin-right: 15px;
}

#footer .footer_line {
    margin: 10px 0;
}


#footer .logo_block {
    font-weight: 900;
    font-size: 40px;
    padding: 0px 0;
}

#footer .logo_block img {
    width: 114px;
}

#footer  .footer_logo {
    text-align:  center;
    align-self: center;
}

#footer .footer_logo i {
     padding: 10px;
     font-size: 20px;
     /* background: #4a4d54; */
     margin: 0 5px;
     border-radius: 50%;
     color: white;
     transition: 0.5s all;
     display: block;
}

#footer .footer_logo i:hover {
    background: #ddb32a;
}

#footer .footer_menu a {
    display:  block;
    margin: 10px 0;
    transition: 0.5s all;
}

#footer .footer_menu a:hover {
       transform: translate(10px, 0);
}

#footer .footer_logo .logo_block {
    color:  white;
}

#footer .footer_title,
 #footer .footer_title a{
    color: #cc9600;
    text-align: left;
    margin: 0px 0 30px;
    font-size: 25px;
    font-weight: 500;
    text-transform:  uppercase;
}

#footer .topFooter a {
    font-size: 18px;
    font-weight: 600;
    margin:  10px 0;
}

#footer .topFooter .netixBlock a {
    margin: 0;
}

#footer .footerMenu ul {
    list-style-type: none;
}

#footer .footerMenu li {
    padding: 0 10px 0 0 ;
}

#footer .topFooter {
    border-bottom: 1px solid #222;
    padding-bottom:  20px;
}


#footer .topFooter a {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

#footer .footer_logo img {
    height: 50px;
}

#footer .seti_footer {
    padding: 10px 0;
}

#footer .seti_footer a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #fed73e;
    border-radius: 50%;
    align-items: center;
    line-height: 1;
    font-size: 19px;
    color: black;
    margin: 2px;
}

.netixBlock {
    padding: 0px 0 0;
    font-size:  12px;
    text-transform: unset;
    text-align: center;
}

.netixBlock img {
    height: 40px;
}

.phonePart {
    text-align:  right;
}

.copyright {
    padding:  10px;
    background: #000000;
    color: white;
    text-align:  center;
    font-size: 12px;
}



#bigImge.blogImage img {
    max-height: 30vh;
    min-height: 200px;
}

#bigImge {
    position: relative;
}

#bigImge img {
    max-height: 70vh;
    width: 100%;
    object-fit: cover;
    min-height: 600px;
}

#bigImge .big_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 4px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0000003d;
}

#bigImge .title_part h1 {
    color:  white;
    text-shadow: -2px 1px 2px #373a44;
    font-size: 50px;
    font-weight: 500;
    padding:  20px 0;
    /* background: linear-gradient(to right, #373a44, #3d3f48, #3a3c4600); */
    e: 0;
    margin:  0;
}

#bigImge .big_price {
        margin: 20px auto;
        background: #f4ca2a;
        width: 100%;
        display: block;
        max-width: 300px;
        text-align: center;
        font-size: 20px;
        color: white;
        padding: 10px;
        text-shadow: 1px 1px 0px #20212196;
        /* box-shadow: 6pt 0.4375pc 0 0 #e7ebef; */
}

#bigImge .big_price  span {
    font-size: 35px;
    font-weight: bold;
   
}



#conanctText {
    padding: 40px 0 80px;
}

#conanctText a {
    text-decoration:  none;
    color: #3a3c46;
    margin-bottom: 5px;
    display:  block;
}

#conanctText i {
    margin-right: 20px;
    color: #c1b857;
    font-size: 20px;
}

#conanctText .footer_line {
    margin-bottom: 10px;
}

.callback_phone {
    border-radius: 50%;
    position: fixed;
    font-size: 45px;
    bottom: 20px;
    right: 25px;
    background: #e74c3c;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    color: white;
    transition: 1s all;
    cursor: pointer;
    animation: pulse 2s infinite;
    box-shadow: 0px 0px red;
}

.callback_phone:hover {
    transform: rotate(360deg);
}

.pulse:hover {
  animation: none;
}

.netix {
    font-size: 14px;
    margin: 10px 0;
}

.logo_responsive {
    display: none;
}

.mail_responsive {
    display: none;
}

.gamburger {
    position:  relative;
    width: 34px;
    height: 30px;
    padding-top: 15px;
    transition: 0.5s all;
    display: none;
}

.gamburger span {
    width:  100%;
    background: #ffffff;
    height: 3px;
    display: block;
    position: absolute;
    transition: 0.5s all;
}

.gamburger span:nth-child(1) {
    top: 0;
    right: 0;
    left: 0;
}

.gamburger span:nth-child(2) {
    top: calc(50% - 1.5px);
    right: 0;
    left: 0;
}

.gamburger span:nth-child(3) {
    right: 0;
    left: 0;
    bottom: 0;
}

.gamburger.active_but span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    background: #f4ca2a;
}

.gamburger.active_but span:nth-child(2) {
    opacity: 0;
    background: #f4ca2a;
}

.gamburger.active_but span:nth-child(3) {
    transform: rotate(135deg);
    top: 50%;
     background: #f4ca2a;
}

.mainMenu .buttpn_block {
    display: none;
}

.mainMenu {
    width: 100%;
}

.notFound {
    padding: 60px 0;
    text-align:  center;
    font-size: 20px;
}

.notFound_number {
    font-size: 160px;
    font-weight: 500;
    color: #fed73f;
    margin: 35px 0;
    text-shadow: 1px 1px 1px #0101019c;
}

.notFound a {
    text-decoration: none;
    color: #2ecc71;
    font-weight:  bold;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        -ms-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@media only screen and (max-width: 1300px) {
    #ctegories .categy_name {
        font-size: 25px;
    }
    #ctegories .category_item:hover .categy_name {
        left: 10%;
    }

    #ctegories .category_item .categy_name {
        left: 5%;
    }
}



@media only screen and (max-width: 1170px) {
    .w_20 {
        width: 33.33333%;
    }

    .w_40, .w_60 {
        width: 50%;
    }

    .container {
        padding: 0 5px;
    }

    #advantagers .advantagers_wrapper {
        padding: 10px;
    }

    #gallery .gal_wrapper {
       height: 250px;
    }

    


}

@media only screen and (max-width: 920px) {

    
    .absoluteSlider {
        position: initial;
        background: #cc9603;
        padding: 20px 0 10px;
    }

    #categories .categoryItem:last-child span {
        display: none;
    }

    #categories, #categoriesInner {
        flex-wrap: wrap;
    }

    #categories .categoryItem, #categoriesInner .categoryItem{
        width: 50%;
    }

     #categories:hover .categoryItem, #categories .categoryItem.inactive {
        width: 50%;
    }

    #footer .footer_logo {
        order: 1;
        width: 100%;
        margin-bottom: 20px;
    }

    #footer .footer_contacts {
        order: 2;
        width: 50%;
    }

    #footer .footer_menu {
        order: 3;
        width: 50%;
    }

    #header .gamburger_block, #header .phone_block {
        width: 30%;
    }

    .w_20, .w_25, .w_33 {
        width: 50%;
    }

    .w_40, .w_60, .w_50 {
        width: 100%;
    } 

    

    #otzyvy .otzyvy_item {
        padding: 20px;
    }

    #otzyvy .flickity-page-dots {
            bottom: -10px;
    }

    #bigImge .title_part h1 {
        font-size: 35px;
        background: none;
    }

    #navigation img {
        height: 40px;
    }

    #topPadding {
        height: 99px;
    }

    .time_block {
        display: none;
    }

    #steps .stepItem:nth-child(even){
        order: 0;
    }


    #steps .stepItem:nth-child(even):after {
        
        background: none;
    }

    #steps .stepItem:after,   #steps .stepItem:nth-child(even):after {
       display: none;

    }

      #headerMain .tobbar_block, #header .tobbar_block {
        font-size: 12px;
    }

    .headerMain .logo_block img {
        height: 40px;
    }
} 
@media only screen and (max-width: 700px) { 
        .buttpn_block {
        display: none;
    } 

    .mainMenu .buttpn_block {
        display: block;
    }

    

}
  

@media only screen and (max-width: 700px) { 
    .headerMain .location_block {
        display: none;
    }

    .logo_responsive {
        display: block;
    }

    .logo_responsive img {
        height: 40px;
    }

     .mail_responsive {
        display: block;
    }
    


    #topbar {
        justify-content: space-between;
        padding: 0 5px;
        transition: 0.5s all;
    }

    #topbar.active_bar {
        background: #232529;
    }
    
    #topbar .mail_block {
        display: none;
    }
    #navigation {
        display: none;
    }

    .gamburger {
        display: block;
    }

    #navSlider .carousell-cell {
        width: 50%;
    }

    .bottomFooter .footer_title {
        display: none;
    }

    .bottomFooter .footerMenu {
        display: none;
    }

    h1 {
        font-size: 30px;
    }

    h2, .title {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }

    #blogList .show_more {
           transform: none;
        position:static;
    }

    #blogList .blogItem a .show_more .blogMore {
        -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    }

    .topFooter .flex_block {
        justify-content: center;
        text-align: center;
    }

    #mainSlider .carousell-cell img {
        height: 70vh;
    }

    #mainSlider .slide_title {
        font-size: 30px;
    }

    #blogList, #about, #content, #gallery {
        padding: 30px 0;
    }

    #headerMain .container, #header .container {
        padding: 0;
    }

    #navigation .logo_block {
        display: none;
    }

   #navigation {
    background: #232529;
   }

   #navigation .mainMenu {
    width: 100%;
   }



   #navigation .mainMenu ul {
    flex-wrap: wrap;
   }

   #navigation .mainMenu ul li {
    width: 100%;
    text-align: center;
    padding: 10px 0; 
   }

   #headerMain.f_header, #header.f_header {
    position: unset;
   }

    #topPadding {
        height: 62px;
    } 
    
    #navigation .sub-menu {
        position: static;
        background: #2c2e31;
    }

    #footer .footerItem {
        width: 50%;
        text-align: center;
    }

      #footer .footerItem .phonePart {
                text-align: center!important;
      }

}

@media only screen and (max-width: 600px) { 
    .w_25, .w_33 {
        width: 100%;
    }

    #advantagers .advantagers_item {
        width: 90%;
        margin: 0 auto 15px;
    }

    #gallery .gal_wrapper {
       height: 150px;
    }

    #header .phone_block {
        font-size: 12px;
        width: auto;
        text-align: center;
    }

    #header .gamburger_block, #header .logo_block {
        /*width: 25%;*/
    }

    #header .logo_block img {
        /*width: 70px;*/
    }

    #header .logo_block {
        /*order: 2;*/
        text-align: right;
    }

    #header .button {
        padding: 10px 0;
    }

    #categories .categoryItem {
        width: 100%;
    }
    
  

}

@media only screen and (max-width: 500px) {

    #footer .footer_contacts, #footer .footer_title {
        width: 100%;
        text-align: center;
    }

    #footer .footer_line {
        justify-content: center;
    }

    #footer .footer_line i {
        display: none;
    }

    #footer .footer_menu {
        display: none;
    }
    
    .albumList .w_20 {
        width: 100%;
    }

    .logo_responsive img {
            height: 32px;
    }

    #headerMain .tobbar_block, #header .tobbar_block {
        font-size: 12px;
    }

    #categoriesInner .categoryItem {
        width: 100%;
    }


    #topPadding {
        height: 57px;
    } 
    
    .phonePart {
        text-align: center;
    }

    #footer .footerItem {
        width: 100%;
    }
    .facebook {display: none!important;}
}