@media (max-width: 1200px) {
    .menu-button{
        width: 30px;
        height:30px;
        cursor: pointer;
        -webkit-transition: all 200ms ease-out;
        -moz-transition: all 200ms ease-out;
        -o-transition: all 200ms ease-out;
        transition: all 200ms ease-out;
        z-index:99;
        position: relative;
    }
    .menu-button:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left:0;
    }
    .icon-menu-burger {
        height: 2px;
        width: 26px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -1px 0 0 -13px;
        -webkit-transition: transform 0.2s ease 0s;
        -moz-transition: transform 0.2s ease 0s;
        -o-transition: transform 0.2s ease 0s;
        -ms-transition: transform 0.2s ease 0s;
        transition: transform 0.2s ease 0s;
        -webkit-transition: -webkit-transform 0.2s ease 0s;
    }
    .icon-menu-burger__line {
        background: #33444C;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: transform 0.2s linear 0.2s;
        -moz-transition: transform 0.2s linear 0.2s;
        -o-transition: transform 0.2s linear 0.2s;
        -ms-transition: transform 0.2s linear 0.2s;
        transition: transform 0.2s linear 0.2s;
        -webkit-transition: -webkit-transform 0.2s linear 0.2s;
    }
    .icon-menu-burger:before, .icon-menu-burger:after {
        background: #33444C;
        content: '';
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
    }
    .menu-button.active .icon-menu-burger__line,
    .menu-button.active .icon-menu-burger:before,
    .menu-button.active .icon-menu-burger:after {
        background: #FF2C3E;
    }
    .icon-menu-burger:before {
        top: -9px;
        -webkit-transition: top 0.2s linear 0.4s;
        -moz-transition: top 0.2s linear 0.4s;
        -o-transition: top 0.2s linear 0.4s;
        -ms-transition: top 0.2s linear 0.4s;
        transition: top 0.2s linear 0.4s;
    }
    .icon-menu-burger:after {
        bottom: -9px;
        -webkit-transition: bottom 0.2s linear 0.4s;
        -moz-transition: bottom 0.2s linear 0.4s;
        -o-transition: bottom 0.2s linear 0.4s;
        -ms-transition: bottom 0.2s linear 0.4s;
        transition: bottom 0.2s linear 0.4s;
    }
    .menu-button.active .icon-menu-burger{
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: transform 0.2s linear 0.4s;
        -moz-transition: transform 0.2s linear 0.4s;
        -o-transition: transform 0.2s linear 0.4s;
        -ms-transition: transform 0.2s linear 0.4s;
        transition: transform 0.2s linear 0.4s;
        -webkit-transition: -webkit-transform 0.2s linear 0.4s;
    }
    .menu-button.active .icon-menu-burger__line{
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .menu-button.active .icon-menu-burger:before {
        -webkit-transition: top 0.2s linear;
        -moz-transition: top 0.2s linear;
        -o-transition: top 0.2s linear;
        -ms-transition: top 0.2s linear;
        transition: top 0.2s linear;
        top: 0;
    }
    .menu-button.active .icon-menu-burger:after {
        -webkit-transition: bottom 0.2s linear;
        -moz-transition: bottom 0.2s linear;
        -o-transition: bottom 0.2s linear;
        -ms-transition: bottom 0.2s linear;
        transition: bottom 0.2s linear;
        bottom: 0;
    }
    .open-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -250px;
        background: #fff;
        z-index: 999;
        padding: 0;
        padding-top: 30px;
        border-right: 3px solid #25378d;
        width: 200px;
        -webkit-transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -moz-transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -ms-transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }
    .open-menu.active {
        left:0;
    }
    .open-menu:after {
        display: none;
    }
    .open-menu ul {
        display: block;
    }
    .open-menu ul li {
        display: block;
        margin: 0;
        padding: 10px 15px;
    }
    .open-menu ul li a {
        display: block;
    }
    a.login-button {
        color: #fff;
        background: #25378d;
        display: block;
        width: 100%;
        padding: 10px 15px;
        border-radius: 0;
    }
    body.active:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }
    body.active {
        position: relative;
    }
    header .container {
        position: relative;
    }
    .top-menu {
        position: absolute;
        left: 250px;
    }
    header {
        padding: 15px 0;
    }
    .line-menu ul {
        position: absolute;
        background: #fff;
        z-index: 50;
        width: 100%;
        border: 1px solid #26378b;
        padding: 0 10px;
        margin-top: -1px;
        display: none;
    }
    .line-menu {
        width: 300px;
        margin: 0;
    }
    .line-menu ul li a {
        color: #26378c;
        padding: 10px;
        font-size: 16px;
        padding-bottom: 11px;
    }
    .line-menu ul li {
        display: block;
        border-bottom: 1px solid #ddd;
    }
    .line-menu ul li a:after {
        display: none;
    }
    .line-menu ul li.active a, .line-menu ul li a:hover {
        color: #fff;
        background: #26378c;
    }
    .line-menu ul li:last-child {
        border: none;
    }
    span.current-menu-cat {
        background: #fff;
        display: block;
        border: 1px solid #26378c;
        padding: 9px 18px;
        font-size: 16px;
        color: #26378c;
        font-weight: 600;
        position: relative;
        cursor: pointer;
        margin: 7px 0;
    }
    span.current-menu-cat:after {
        content: "";
        border: 8px solid transparent;
        border-top-color: #26378c;
        position: absolute;
        top: 16px;
        right: 12px;
        transform: rotateY(-58deg);
    }
    .image-side img {
        height: 244px;
        margin-left: -100px;
    }
    .sl-text {
        padding: 30px;
    }
    .details-pro {
        padding: 15px 15px 0 15px;
    }
    .last-product-item .promo-tovar {
        margin: 0;
    }
    .last-product-item .choose-size {
        margin-bottom: 5px;
    }
    .list-tabs span {
        padding-right: 34px;
        font-size: 18px;
    }
    .list-tabs span:last-child.active:after {
        width: 124%;
    }
    .category-list {
        display: none;
    }
    a.show-all {
        float: right;
    }
    .category-tabs {
        display: block;
    }
    .category-tabs:after {
        content: "";
        clear: both;
        display: block;
    }
    .size-block span.current-size {
        min-width: 100%;
    }
    .choose-size-price {
        padding: 0 10px;
    }
    .choose-size:after {
        content: "";
        clear: both;
        display: block;
    }
    .choose-size-price .size-block {
        float: left;
        margin: 0;
        width: 33%;
        white-space: nowrap;
    }
    .footer-middle:after {
        left: -20px;
        right: 10px;
    }
    .article-text-block {
        width: auto;
        min-width: auto;
    }
    .delivery-info {
        margin-bottom: 10px;
    }
    .line-link-items {
        display: block;
    }
    .line-link-items a {
        margin-right: 20px;
        margin-bottom: 14px;
    }
    .hovered-product {
        height: auto;
    }
    .hovered-product .articul {
        opacity: 1;
    }
    .hovered-product .colors-block {
        display: block;
    }
    .about-text {
        width: 60%;
        padding: 40px;
    }
    .about-img img {
        width: 100%;
    }
    .about-img {
        width: 40%;
    }
    .cer-item img {
        width: 100% !important;
    }
    .text-block {
        padding: 50px 50px;
    }
    .rhombus-item {
        padding: 0 10px;
    }
    .product-img {
        width: 40%;
    }
    .th-item {
        width: 31%;
    }
    .products-info-detail {
        width: 55%;
    }
    .col-sm-4 .overlay-production .text-production {
        padding-top: 20px;
    }
    .title-p-tion h2 {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    section.slider-content .col-sm-5 {
        width: 50%;
        float: none;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    section.slider-content .col-sm-7 {
        float: none;
        margin: 0 auto;
        width: 80%;
    }
    .list-tabs span span {
        text-indent: -9999px;
        display: none;
    }
    .icon-tab {
        position: relative;
    }
    .list-tabs > span {
        padding-left: 24px !important;
        padding-right: 68px !important;
    }
    .list-tabs span:last-child.active:after {
        width: 141%;
    }
    .latest-products .col-sm-4 {
        width: 50%;
        float: left;
    }
    .small-container {
        width: 100%;
        padding: 0 20px;
    }
    .news-side {
        width: 100%;
        margin-bottom: 30px;
    }
    .news-side:after {
        display: none;
    }
    .news-side .all-link {
        margin-right: 0;
    }
    .workers-side {
        width: 100%;
    }
    .workers-side:before {
        display: none;
    }
    footer .flexable {
        display: block;
    }
    .footer-middle:after {
        content: "";
        clear: both;
        display: block;
    }
    .footer-middle {
        width: 100%;
        display: inline-block;
        border-top: 1px  solid #15206e;
        border-bottom: 1px  solid #15206e;
    }
    .footer-middle:after {
        display: none;
    }
    .footer-right {
        width: auto;
        display: block;
    }
    .footer-right img {
        width: 220px;
    }
    .container {
        padding: 0 15px;
    }
    section.articles-content .col-sm-8 {
        width: 100%;
    }
    section.articles-content .col-sm-4 {
        width: 100%;
        margin-bottom: 30px;
    }
    .full-container > .col-half {
        width: 100%;
    }
    section.contact-page {
        padding-bottom: 50px;
    }
    .contact-blocks {
        width: 100%;
        margin: 0;
    }
    .contact-blocks.address-block {
        width: 100%;
        margin-bottom: 30px;
    }
    .history-lists .col-sm-6, .basket-lists .col-sm-6 {
        width: 100%;
    }
    .checkout-button a {
        font-size: 16px;
        padding: 8px 20px 10px 20px;
    }
    .about-img {
        position: absolute;
        opacity: 0.15;
        top: 0;
        right: 0;
        width: auto;
        bottom: 0;
    }
    .full-container {
        position: relative;
    }
    .about-text {
        width: 100%;
    }
    .about-img img {
        height: 100%;
        width: auto;
    }
    .certificates .padding-block {
        width: 100%;
    }
    .cer-item img {
        width: auto !important;
        margin: 0 auto;
    }
    .text-block {
        width: 100%;
    }
    .text-block:after {
        display: none;
    }
    .rhombus-item {
        width: 45%;
        padding: 0 20px;
    }
    .recently-content .col-sm-4  {
        width: 50%;
        float: left;
    }
    .text-production {
        padding: 20px 25px;
    }
    .short-text {
        padding: 0;
    }
    .col-sm-12 .overlay-production .short-text {
        width: 100%;
    }
    .title-p-tion h2 {
        font-size: 30px;
    }
    section.production-content .col-sm-4,section.production-content .col-sm-6 {
        width: 50%;
        float: left;
    }
    .col-sm-12 {
        float: left;
        width: 100%;
    }
    .text-img-block .news-text-block {
        padding: 10px;
        margin: 0;
        padding-bottom: 0;
    }
    .text-img-block {
        padding-bottom: 10px;
    }
    .text-img-block .post-date {
        margin-right:10px;
    }
    .download-pdf a {
        width: 85%;
    }
}
@media (max-width: 990px) {
    .product-img {
        width: 100%;
        margin-bottom: 30px;
    }
    .products-info-detail {
        width: 100%;
    }
}
@media (max-width: 767px) {
    section.slider-content .col-sm-5 {
        width: 65%;
    }
    section.slider-content .col-sm-7 {
        width: 100%;
    }
    .image-side img {
        margin-left: 0;
    }
    .col-sm-6.left-side {
        margin-bottom: 30px;
    }
    .last-product-item {
        overflow: visible;
        display: inline-block;
        width: 100%;
    }
    .list-tabs span:after {
        transform: none;
    }
    .list-tabs > span {
        padding: 0 !important;
        width: 20%;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .list-tabs span:after {
        right: 0;
    }
    .list-tabs span:last-child.active:after {
        width: 100%;
        right: 0;
    }
    .list-tabs span:first-child .icon-tab {
        margin: 0;
    }
    .content-item {
        padding: 25px;
    }
    .partners-carousel .owl-nav.disabled, .partners-carousel .owl-dots {
        display: none !important;
    }
    .article-text-block {
        padding: 0 20px;
    }
    .article-text-block .post-date {
        margin-right: 10px;
    }
    .pagination-content ul li.first-page a {
        margin-right: 20px;
    }
    .pagination-content ul li.last-page a {
        margin-left: 20px;
    }
    .footer-middle .col-sm-6 {
        padding: 0;
    }
    .delivery-info.delivery-info-inline span {
        float: none;
        display: block;
        width: 100%;
    }
    .delivery-info.delivery-info-inline h3 {
        float: none;
        width: 100%;
    }
    .delivery-info {
        margin-bottom: 15px;
    }
    .history-lists .col-sm-6, .basket-lists .col-sm-6 {
        width: 50%;
        float: left;
    }
    .overlay-production {
        overflow: hidden;
        width: 100%;
    }
    .overlay-production img {
        height: 250px;
        width: auto;
    }
    .text-img-block {
        width: 48%;
        float: left;
    }
    .text-img-block:first-child {
        margin-right: 4%;
    }
    .download-pdf a {
        width: 200px;
    }
}
@media (max-width: 650px) {
    header .flexable {
        display: block;
    }
    .logo {
        text-align: center;
        margin-bottom: 15px;
    }
    .top-menu {
        position: relative;
        left: 0;
        display: inline-block;
    }
    header  .header-contact {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .latest-products .col-sm-4, .history-lists .col-sm-6, .basket-lists .col-sm-6  {
        width: 100%;
    }
    .last-pro-item {
        width: 80%;
        float: none;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .sl-text h2 {
        font-size: 36px;
    }
    .rhombus-item {
        width: 100%;
        padding: 0 20px;
    }
    .cer-item img {
        width: 100% !important;
    }
    .cer-item {
        padding:0 10px;
    }
    .recently-content .col-sm-4 {
        width:100%;
    }
    .text-side {
        padding: 20px;
    }
    .short-text {
        height: 84px;
        overflow: hidden;
    }
}
@media (max-width: 555px) {
    .line-menu {
        width: 250px;
    }
    section.slider-content .col-sm-5 {
        width: 100%;
    }
    .price-pro {
        font-size: 30px;
    }
    .price-pro span.ruble-symble {
        font-size: 16px;
    }
    .add-to-cart a {
        line-height: 28px;
    }
    .pro-title h2 {
        font-size: 25px;
    }
    .pro-title {
        height: 26px;
    }
    .news-side {
        padding: 20px;
    }
    .post-date {
        margin-right: 10px;
    }
    .article-item-block {
        display: block;
        width: 370px;
        margin: 0 auto;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    .article-img {
        margin-bottom: 15px;
    }
    .products-info-detail .choose-size, .products-info-detail  .colors-block {
        float: none;
    }
    .all-information-tab .text-content {
        padding: 0 20px;
    }
    .text-img-block {
        width: 100%;
    }
}
@media (max-width: 495px) {
    .image-side {
        float: none;
        width: 285px;
        margin: 0 auto;
    }
    .details-pro {
        width: 285px;
        margin: 0 auto;
        float: none;
        margin-bottom: 15px;
    }
    .last-product-item {
        width: 285px;
        display: block;
        margin: 0 auto;
        padding-bottom: 1px;
        margin-bottom: 30px;
    }
    .last-product-item:nth-child(2n) .image-side {
        float: none;
    }
    .details-pro {
        padding: 15px 15px 0 15px !important;
    }
    .last-product-item:last-child {
        margin: 0 auto;
    }
    .content-item {
        padding: 15px 0;
    }
    .workers-slider .owl-nav.disabled {
        padding: 0 30px;
    }
    .breadcrumb-list ul li a {
        font-size: 14px;
        padding: 13px 0;
        padding-right: 11px;
        margin-right: 10px;
    }
    div#map {
        height: 315px !important;
    }
    .about-text {
        padding: 20px;
    }
    .text-block {
        padding: 20px;
    }
    .block-title.centered {
        width: 100%;
    }
    .block-title .block-subtitle {
        font-size: 16px;
    }
    .all-information-tab .list-tabs span {
        height: 55px;
        padding: 10px !important;
        text-align: center;
        font-size: 15px;
    }
    section.production-content .col-sm-4, section.production-content .col-sm-6, section.production-content .col-sm-6 {
        width: 100%;
    }
    .overlay-production {
        width: 82%;
        display: block;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .form-padding, .border-padding {
        padding: 20px;
    }
    .action-field input[type="submit"] {
        width: 100%;
        min-width: 100%;
        padding: 7px;
        padding-bottom: 10px;
        font-size: 22px;
    }
}
@media (max-width: 450px) {
    section.search-menu-content .flexable {
        display: block;
    }
    .search input[type="text"] {
        width: 100%;
        line-height: 40px;
        border-radius: 100px;
    }
    .line-menu {
        width: 100%;
        margin: 15px 0;
    }
    .search input[type="submit"] {
        top: 14px;
        right: 11px;
    }
    .search {
        margin: 15px 0;
    }
    .news-side .all-link {
        margin-top: 15px;
    }
    .latest-products .col-sm-4 {
        width: 100%;
    }
    footer {
        text-align: center;
    }
    ul.footer-link {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
    .icon-tab img {
        height: 25px;
        width: auto;
    }
    header .header-contact {
        display: block;
        text-align: center;
    }
    .cart-count {
        display: inline-block;
    }
    .right-side-contact {
        text-align: center;
        margin: 0;
    }
    .last-product-item, .image-side, .details-pro {
        width: 100%;
    }
    .choose-size-price .size-block {
        white-space: normal;
    }
    .choose-size-price .choose-size {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .last-pro-item {
        width: 100%;
    }
    .breadcrumb-list ul li span {
        margin-bottom: 10px;
        display: inline-block;
    }
    .item-additional .remove-close {
        right: 0;
    }
    .about-text {
        position: relative;
        z-index: 9;
        font-size: 18px;
    }
}
@media (max-width: 420px) {
    .article-item-block {
        width: 100%;
    }
    .article-img img {
        width: 100%;
    }
    .sidebar-block ul li a {
        font-size: 16px;
        padding: 4px 20px 8px;
    }
    .sidebar-block {
        padding: 10px 0;
    }
    .total-price-block {
        padding: 10px;
    }
    .text-side {
        padding: 25px;
    }
    .rhombus-item {
        padding: 0;
    }
    .text-side {
        padding: 15px;
    }
    .overlay-production {
        width: 100%;
    }
    span.add-button {
        font-size: 14px;
        padding: 10px 40px 12px 15px;
    }
    .add-item-button {
        text-align: center;
    }
    span.add-button:after {
        right: 15px;
    }
    .partners-carousel .part-item img {
        width: 70%;
    }
    section.news-workers {
        padding-top: 0;
    }
    .speech-worker {
        width: 90%;
    }
}
@media (max-width: 400px) {
    .news-text-link {
        width: 72%;
        margin-top: 0;
    }
}

