@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important;
    }
}

/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }

    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none !important;
    }
}

@media screen and (max-width: 1139px) {
    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
    }

    header.stickable .rwdPanel {
        z-index: -1;
    }

    .rwdPanel.active {
        pointer-events: all;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }

    .rwdPanel-scrollLock body {
        position: fixed;
        width: 100%;
        overflow-y: scroll;
    }
}

/**
 * RWD MENU
 */

.rwdMenu {
    font-size: 1rem;
}

.rwdMenu ul {
    display: block;
    width: 100%;
    padding: 0;
}

.rwdMenu:not(:first-child) > ul {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu + .rwdMenu > ul {
    border-top: none;
}

.rwdMenu ul ul {
    display: none;
    box-shadow: inset 0 3px 5px -1px rgba(0, 0, 0, 0.12);
    background-color: rgba(0, 0, 0, 0.1);
}

.rwdMenu li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu li.slided {
    border-bottom: none;
}

.rwdMenu a {
    color: inherit;
}

.rwdMenu li > *:first-child {
    flex: 1 0 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 46px;
    padding: 5px var(--container-padding);
    text-align: left;
    word-break: break-word;
    color: #000;
    border: none;
}

.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}

.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: var(--color-secondary);
}

.rwdMenu > ul > li > *:first-child {
    text-transform: uppercase;
}

.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

.rwdMenu > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 15px);
}

.rwdMenu > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 30px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 45px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 60px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 75px);
}

.rwdMenu li > *:first-child > .fa, .rwdMenu li > *:first-child > .icon, .rwdMenu .icon-basket {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 19px;
    height: 24px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 15px -9px 0px;
}

header .rwdMenu .basket-box-btn .price-gross {
    font-weight: 400;
}

.rwdMenu .icon-basket {
    width: 22px;
    height: 22px;
}

.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}

.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}

.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

.rwdMenu .rwdMenu-count {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 14px;
    color: #000;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rwdMenu .user-nav li + li:before {
    display: none;
}

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}

.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}

.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.rwdPanel .social-list {
    margin: 15px 0;
    text-align: center;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 15px 0 15px 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: 5px;
}

.rwdButton .animIcon {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
}

.rwdButton > * {
    transition: all 0.5s;
}

.rwdButton.rwdPanel-action-toggle:before {
    inset: 0;
    display: block;
    position: absolute;
    content: "";
    background: var(--gradient-primary);
    transition: 0.4s all;
    opacity: 0;
}

.rwdButton.rwdPanel-action-toggle.active:before {
    opacity: 1;
}

.rwdButton.rwdPanel-action-toggle {
    overflow: hidden;
}

.rwdButton.rwdPanel-action-toggle.active {
    color: #fff;
}

.rwdButton .animIcon--close span {
    background-color: #fff;
}

.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
}

.rwdButton.active > .animIcon--close {
    opacity: 1;
}

.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
}

/* --------------- BREAKPOINTS --------------- */

@media screen and (max-width: 1700px) {
    .header-center {
        padding: 0 var(--space-50) 0 var(--space-50);
    }


    .mainsearch {
        width: 260px;
    }

    .newsletter-signUp-caption {
        font-size: 52px;
    }
}

@media screen and (max-width: 1600px) {
    .newsletter-signUp-caption {
        font-size: 50px;
    }


    .banner-title {
        font-size: 75px;
    }

    .banner-right {
        background-position-y: center;
    }

    .section-title, .mainpage .aboutUs-section .aboutUs-row:nth-child(1) .text h2 {
        font-size: 60px;
    }


    .mainSlider-text {
        font-size: 22px;
    }

    .mainpage .aboutUs-right .img-wrapper {
        width: 51%;
    }

    #main-menu > ul > li + li {
        margin-left: 10px;
    }

    .offer-box-inner {
        padding: var(--space-25);
    }
}

@media screen and (max-width: 1440px) {
    .contact-list {
        column-gap: calc(var(--space-60) * 2);
    }

    .offer-list {
        margin: calc(var(--space-25) * -1) 0;
    }

    .offer-box {
        padding: var(--space-25) 0;
    }

    #content {
        padding-top: calc(49px + (var(--space-25) * 2 - 6px));
    }

    header.sticky .logo,
    .logo {
        width: 100px;
    }

    .header-right {
        gap: 10px;
    }

    .header-right-squares {
        gap: 10px;
    }

    .social-list > ul > li + li {
        margin-left: 0;
    }

    .newsletter-signUp-caption {
        font-size: 42px;
    }


    .banner-title {
        font-size: 73px;
    }

    .product-view-thumbnail {
        width: 45%;
    }

    .product-view-top-content {
        width: 55%;
    }

    .price-gross {
        font-size: 30px;
    }


    .mainSlider-text {
        font-size: 20px;
    }

    #main-menu li > a {
        font-size: 15px;
    }

    #main-menu > ul > li + li {
        margin-left: 20px;
    }

}

@media screen and (max-width: 1280px) {
    #main-menu > ul > li + li {
        margin-left: 5px;
    }

    .blogSlider, .blogList {
        margin: -10px;
    }

    .logotype-wrapper {
        padding: 5px;
    }

    .logotypes-list {
        margin: -5px;
    }

    .aboutUs-row {
        gap: var(--space-60) !important;
    }

    #content {
        padding-top: calc(46px + (var(--space-25) * 2 - 6px));
    }

    .lang-button, .langs-menu .lang-item,
    header .social-icon {
        width: 40px;
        height: 40px;
    }

    .mainsearch input.form-control {
        height: 40px;
    }

    .file-box {
        padding: 10px;
    }

    .files {
        margin: -10px;
    }

    .contact-list {
        column-gap: var(--space-60);
    }

    .newsletter-signUp-caption {
        font-size: 37px;
    }


    .banner-title {
        font-size: 65px;
    }

    .logotype {
        padding: 2px var(--space-25);
    }

    .logotype-slider {
        margin: -2px calc(var(--space-25) * -1);
    }


    .section-title, .mainpage .aboutUs-section .aboutUs-row:nth-child(1) .text h2 {
        font-size: 45px;
    }

    .product-box {
        padding: 10px;
    }

    .products-list, .productsSlider {
        margin: -10px;
    }


    .mainSlider-text {
        font-size: 18px;
    }

    .mainSlider-text {
        max-width: 350px;
    }

    #main-menu li > a {
        font-size: 14px;
    }

    .mainsearch {
        width: 240px;
    }


    .basket-table .input-counter input {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
    }

    .footer-content {
        display: block !important;
    }

    .main-menu-button-wrapper {
        display: none;
    }

}

@media screen and (max-width: 1139px) {
    .desktop-only {
        display: none;
    }

    .footer-top-content {
        display: flex;
        flex-direction: column;
        padding-top: calc(var(--space-60) + var(--space-25) + 5px);
    }

    .footer-cols {
        margin: 0;
        width: 100%;
    }

    .mainSlider-content {
        aspect-ratio: unset;
    }

    .newsletter-img {
        display: none;
    }

    section:not([style^="background-image"]) .offer-box .btn {
        border: 1px solid #000;
    }

    .offer-box-text {
        margin-bottom: var(--space-25);
    }

    .offer-box .btn {
        transform: scale(1);
        margin-top: auto;
        border: 1px solid #fff;
    }

    .offer-box-content {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .offer-box-inner {
        transform: none !important;
        height: 100%;
        margin: 0 !important;
        border: none !important;
        background: transparent !important;
    }

    .aboutUs-rows {
        display: flex;
        flex-direction: column;
        gap: var(--space-60);
    }

    .aboutUs-row {
        gap: var(--space-40);
        margin: 0 !important;
        flex-direction: column-reverse !important;
    }

    .aboutUs-left {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
    }

    .aboutUs-right {
        display: flex;
        flex-direction: column !important;
        text-align: left !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .aboutUs-right .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .aboutUs-right, .aboutUs-left {
        width: 100% !important;
        padding: 0 !important;
        max-width: unset;
        margin: 0 !important;
        text-align: left;
    }

    .rwdPanel .desktop-only {
        display: flex;
    }

    .file-box {
        padding: 5px;
    }

    .rwdPanel .social-list > ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: var(--space-25);
    }

    .user-nav-item-inner {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        border: 1px solid rgba(0, 0, 0, 0.2);
        justify-content: center;
        border-radius: 5px;
    }

    .files {
        margin: -5px;
    }

    .file-buttons {
        gap: 6px;
    }

    .file-box .btn {
        width: calc(50% - 3px);
        padding: 0 10px;
    }

    .main-menu-button-wrapper button.active:after {
        opacity: 1;
    }

    .main-menu-button-wrapper button:after {
        content: "";
        display: block;
        z-index: -1;
        position: absolute;
        background: var(--gradient-primary);
        transition: opacity 300ms;
        opacity: 0;
        width: 40px;
        height: 40px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .main-menu-button-wrapper {
        overflow: hidden;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid rgba(0, 0, 0, 0.2);
    }

    .remove-column .btn::before {
        opacity: 0;
    }

    header .basket-icon {
        width: unset;
        padding: unset;
    }

    .product-info {
        padding: 0 var(--space-25) 10px;
    }

    .recommended-box {
        width: 50%;
    }

    .recommendedSlider:not(.slick-initialized) .recommended-box:nth-child(n + 3) {
        display: none;
    }

    .header-social .social-icon {
        color: var(--color-primary);
        border-color: var(--color-primary);
    }

    .header-social .social-list li {
        padding: 0;
        border-bottom: none;
    }

    .footer-bar-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-cols {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .footer-col {
        margin: 0 0 var(--space-25) 0 !important;
        width: 100% !important;
    }

    .langs-menu-icon {
        margin-right: 10px;
    }

    .footer-text {
        line-height: 1.5;
    }

    .footer-content ul li a {
        line-height: 1.5;
    }
    .footer-title{
        padding-left: 35px;
        padding-right: 35px;
    }

    .footer-title:after {
        content: "";
        -webkit-mask-size: cover;
        -mask-size: cover;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-image: url(../images/icons/arrow-next.svg);
        mask-image: url(../images/icons/arrow-next.svg);
        mask-repeat: no-repeat;
        background-color: #fff;
        width: 12px;
        height: 20px;
        display: block;
        position: absolute;
        transition: transform, 500ms;
        top: 40%;
        transform: translateY(-50%) rotate(90deg);
        right: var(--container-padding);
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-title.active:after {
        transform: translateY(-50%) rotate(90deg) scale(-1);
    }

    .footer-title {
        cursor: pointer;
        position: relative;
        margin-bottom: 10px;
        font-size: 18px;
        padding-bottom: 10px;
        border-bottom: 1px solid #fff;
        text-align: center;
    }

    .footer-content {
        text-align: center;
        display: none;
    }

    .mainsearch {
        width: 100%;
    }

    .header-bottom-inner {
        justify-content: space-between;
    }

    .header-center {
        display: none;
    }


    .header-top {
        display: none;
    }

    .header-bottom-inner {
        padding: 0;
    }

    .newsletter-signUp {
        width: 38%;
    }

    .newsletter-signUp-caption {
        font-size: 35px;
    }


    .banner-title {
        font-size: 50px;
    }


    .mainpage .aboutUs-row:nth-child(odd) .aboutUs-subtext {
        padding-left: 0;
    }

    .mainpage .aboutUs-row:nth-child(even) .aboutUs-subtext {
        padding-right: 0;
    }

    .mainpage .aboutUs-row:nth-child(even) .aboutUs-right {
        flex-direction: column;
        text-align: right;
        align-items: flex-end;

    }

    .floatingLeaf {
        display: none;
    }

    .footer-bottom-text {
        text-align: center;
    }

    .product-view-thumbnail {
        display: flex;
        align-content: center;
        justify-content: center;
        width: 100%;
        margin-bottom: var(--space-40);
    }

    .product-view-top {
        flex-wrap: wrap;
    }

    .product-view-top-content {
        width: 100%;
    }

    .aboutUs-row:nth-child(odd) .aboutUs-left {
        padding-right: var(--space-50);
    }

    .aboutUs-row:nth-child(even) .aboutUs-left {
        padding-right: 0;
        padding-left: var(--space-50);
    }

    .contact-list li {
        font-size: 19px;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .contact-icon-wrapper .icon {
        width: 20px;
        height: 20px;
    }

    .references-list {
        margin: -5px;
    }

    .reference-wrapper {
        padding: 5px;
    }


    .section-title, .mainpage .aboutUs-section .aboutUs-row:nth-child(1) .text h2 {
        font-size: 40px;
    }

    .product-box-bottom {
        padding: 10px;
    }

    .btn-secondary .icon {
        height: 12px;
        width: 20px;
    }

    .product-price {
        font-size: 20px;
    }

    .btn-circle {
        width: 40px;
    }


    .mainSlider-text {
        font-size: 16px;
    }

    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

    .langs-menu {
        display: none !important;
    }

    .rwd-hide {
        display: none;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
    }

    .container {
        width: 100%;
    }

    .article-image {
        margin-right: 25px;
        margin-bottom: 15px;
    }

    .lang .langs-menu-short {
        display: none;
    }

    .lang .langs-menu-long {
        display: block;
    }

    .mainsearch.rwdPanel .mainsearch-search {
        background-color: var(--color-primary);
    }

    .mainsearch-submit {
        padding-left: 11px;
        color: #fff;
        background: var(--color-secondary);
    }

    .mainsearch.rwdPanel .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
    }

    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }

    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }

    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        flex-grow: 0;
    }

    .rwdPanel {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .lang span.langs-menu-icon {
        margin-right: 10px;
    }

    .lang span {
        position: static;
        margin: unset;
        transform: unset;
    }
    .mainsearch-search-inner{
        overflow: visible;
    }
    .mainsearch-submit:before{
        border-radius: 0 !important;
    }
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none !important;
        display: flex;
        align-items: center;
        overflow: hidden;
        justify-content: center;
        border-radius: 0;
        padding: 0;
        height: 46px;
    }

    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }

    .offer-box-text {
        font-size: 16px;
    }

    .offer-box-top .btn {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1000px) {
    .offer-box {
        width: 50%;
    }

    .logotype-wrapper {
        width: 20%;
    }

    .blog-box {
        width: 50%;
    }

    .newsletter-signUp-caption {
        font-size: 32px;
        text-align: center;
    }


    .newsletter-img {
        margin-right: 0;
        max-width: 250px;
        width: 100%;
    }

    .newsletter-inner {
        row-gap: var(--space-25);
        flex-wrap: wrap;
        justify-content: center;

    }

    .newsletter-signUp {
        width: 100%;
        align-items: center;
    }


    .offer-box-top {
        padding: 10px;
    }

    .section-title, .mainpage .aboutUs-section .aboutUs-row:nth-child(1) .text h2 {
        font-size: 36px;
    }


    .banner-title {
        font-size: 45px;
    }


    .blogList, .blogSlider {
        margin: -10px -5px;
    }

    .blog-box {
        padding: 10px 5px;
    }
}

@media screen and (max-width: 900px) {
    .file-box {
        width: 50%;
    }

    .newsletter-modal-img {
        display: none;
    }

    .newsletter-modal-form {
        width: 100%;
        padding-right: 0;
    }

    .modal-content button.close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
        font-size: 35px;
    }

    .modal-header {
        position: static;
    }

    .modal-content {
        position: relative;
    }

    .opinionsSlider {
        padding: 0;
        display: block;
        min-height: unset;
        margin-bottom: var(--space-60);
    }

    .opinionsSlider .slick-list, .opinionsSlider .slick-track {
        display: block;
    }

    .opinions-section .section-header {
        margin-bottom: var(--space-60);
    }

    .contact-list {
        width: 100%;
        justify-content: space-between;
        column-gap: 10px;
    }


    .mainpage .aboutUs-left .btn {
        margin: 0 auto;
    }

    .contact-list li {
        font-size: 15px;
    }

    .contact-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .contact-icon-wrapper .icon {
        width: 18px;
        height: 18px;
    }


    .blogList-category {
        padding: 10px var(--space-40);
    }

    .newsletter-signUp-caption {
        font-size: 29px;
    }


    .banner-title {
        font-size: 40px;
    }

    .mainpage .aboutUs-row {
        width: 100%;
    }


    .footer-logotype .section-header {
        margin-bottom: var(--space-25);
    }

    .aboutUs-left, .aboutUs-right {
        width: 100%;
    }

    .aboutUs-rows {
        display: flex;
        flex-wrap: wrap;
    }

    .aboutUs-left {
        padding: 0 !important;
    }

    .
    .aboutUs-right {
        align-items: center;
        justify-content: center;
        align-self: center;
    }


    .contact-left-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .contact-img {
        width: 40%;
    }

    .contact-wrapper {
        flex-wrap: wrap;
    }

    .contact-left, .contact-right {
        padding: 0;
        width: 100%;
    }

    .offer-box:nth-child(3n + 2) .offer-box-inner .offer-box-top {
        order: unset;
    }

    .offer-box:nth-child(3n + 2) .offer-box-bottom:after {
        transform: unset;
        top: 0;
        bottom: unset;
    }

    .offer-box:nth-child(2n + 2) .offer-box-bottom:after {
        transform: scaleY(-1);
        top: unset;
        bottom: 0;
    }

    .offer-box:nth-child(2n + 2) .offer-box-inner .offer-box-top {
        order: 3 !important;
    }

    .offerSlider:not(.slick-initialized) .offer-box:nth-child(n + 3) {
        display: none;
    }

    .productsSlider:not(.slick-initialized) .product-box:nth-child(n + 3) {
        display: none;
    }

    .offer-box {
        width: 50%;
    }


    .offer-box-text {
        font-size: 16px;
    }

    .section-title, .mainpage .aboutUs-section .aboutUs-row:nth-child(1) .text h2 {
        font-size: 32px;
    }

    .product-box {
        width: 50%;
    }

    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .footer-bar-content > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .footer-bar-content.footer-bar-content > * {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer-bar .footer-bar-links {
        display: block;
        margin: -3px -8px;
    }

    .footer-bar .footer-bar-links:not(:last-child) {
        margin-bottom: 3px;
    }

    .footer-bar-links > li {
        margin: 3px 8px;
        line-height: 20px;
    }

    .copyright,
    .copyright-undicom {
        margin-top: 4px;
        margin-bottom: 4px;
        line-height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .offer-box-inner {
        gap: 5px;
        padding: var(--space-25) 0;
    }

    .logotype-wrapper {
        width: 25%;
    }

    .ask-form .controls.captcha-container {
        width: 100%;
    }

    .offer-box-icon {
        width: 60px;
    }

    .offer-box {
        width: 100%;
    }

    .mainSlider .slick-list, .mainSlider .slick-track {
        width: 100%;
        display: flex;
        align-items: stretch;
    }

    .mainSlider-right {
        margin-left: 0 !important;
    }

    .contact-list li {
        font-size: 14px;
    }

    .contact-icon-wrapper {
        width: 35px;
        height: 35px;
        margin-right: 5px;
    }

    .contact-icon-wrapper .icon {
        width: 16px;
        height: 16px;
    }

    .blogList-category {
        text-align: center;
    }


    .mainSlider-bg {
        display: none;
    }

    .mainSlider-slide {
        display: flex;
        background: url("../images/mainSlider-bg.webp") center center /cover;
    }

    .mainSlider-content {
        position: static;
    }

    .mainSlider-content-inner {
        flex-direction: column;
        padding-top: var(--space-60);
        align-items: center;
        justify-content: center;
    }

    .mainSlider-text {
        padding-top: 10px;
        align-self: center;
    }

    .mainSlider-img {
        margin-left: 0;
        max-width: 250px;
        order: -1;
        width: 100%;
    }

    .mainSlider-right {
        padding-left: 0;
        padding-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .product-box {
        padding: 5px;
    }

    .productsSlider, .products-list {
        margin: -5px;
    }

    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .text .table-responsive-wrapper::after {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45px;
        background-size: contain;
        background-position: right 15px center;
        background-repeat: no-repeat;
        background-image: url(../images/rwd-table-hand.png);
        -webkit-animation-name: rwd-hand-move;
        animation-name: rwd-hand-move;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    .text .table-responsive {
        margin: 0;
        border: none;
    }

    .text table {
        margin: 0;
        min-width: 780px;
    }

    @keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    @-webkit-keyframes rwd-hand-move {
        0% {
            transform: translateX(-20px);
        }
        100% {
            transform: translateX(0);
        }
    }
    .form .form-element-captcha .captcha-image-wrapper {
        margin-bottom: 15px;
    }

    .text {
        font-size: 14px;
    }

    .product-box-text {
        font-size: 14px;
    }

    .product-box-title {
        font-size: 16px;
    }

    .product-price {
        font-size: 19px;
    }

    .row > .col-sm-6 {
        width: 50%;
    }
}

@media screen and (min-width: 706px) {
    footer .show-hide {
        display: block !important;
    }
}

@media screen and (min-width: 640px) {
    .logo-mobile {
        display: none !important;
    }
}

@media screen and (max-width: 639px) {
    .ask-form {
        width: 100%;
    }

    .btn-md {
        min-height: 42px;
        min-width: unset;
        font-size: 13px;
        padding: 5px var(--space-25);
    }

    .ask-form-image {
        display: none;
    }

    .file-buttons {
        min-height: 117px;
        justify-content: center;
        flex-direction: column;
    }

    .file-buttons .btn {
        width: 100%;
    }

    .main-menu-button-wrapper, .lang-button, .langs-menu .lang-item, header .social-icon, .user-nav-item-inner {
        width: 36px;
        height: 36px;
    }

    .animIcon.animIcon--hamburger.active span:nth-child(3) {
        margin-top: 85%;
        margin-left: 15%;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .animIcon {
        width: 22px;
    }

    .form .form-element-name {
        font-size: 18px;
    }

    .contact-bottom-right {
        display: none;
    }

    .logotypes {
        margin-bottom: var(--space-25);
    }

    .recommended-box {
        width: 100%;
    }

    .recommendedSlider:not(.slick-initialized) .recommended-box:nth-child(n + 2) {
        display: none;
    }

    .product-price {
        font-size: 17px;
    }

    .mainpage .product-box {
        padding: 10px;
    }

    .productsSlider {
        margin: -10px;
    }

    .rwdButton {
        width: 36px;
        font-size: 13px;
        height: 36px;
    }

    .mainsearch-rwd-button .icon {
        width: 16px;
        height: 16px;
    }


    .newsletter-img {
        order: -1;
        max-width: 300px;
    }

    .newsletter-inner {
        flex-direction: column;
    }


    .banner-title {
        font-size: 35px;
    }

    .banner-img {
        margin-right: 0;
        max-width: 260px;
        width: 100%;
    }

    .banner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: url("../images/referenceBg.webp") no-repeat center center /contain;

    }

    .banner-right {
        text-align: center;
        background: unset;
        justify-content: center;
        width: 100%;
        padding-top: var(--space-40);
        align-self: center;
    }


    .aboutUs-row {
        width: 100%;
    }


    .contact-left-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .reference-wrapper {
        width: 33.333%;
    }

    .contact-img {
        max-width: 240px;
        width: 100%;
        align-self: center;
    }

    .section-title, .mainpage .aboutUs-section .aboutUs-row:nth-child(1) .text h2 {
        font-size: 28px;
    }

    .product-box-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 8;
        overflow: hidden;
    }

    #content {
        padding-top: 65px;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }

    .text table,
    .text iframe,
    .text object {
        max-width: 100%;
        max-width: 100% !important;
        width: 100%;
        width: 100% !important;
    }

    .article-image {
        margin-right: 0;
        margin-top: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 0;
    }

    .breadcrumb > li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a {
        font-size: 0;
        text-indent: -1000px; /* Apple */
    }

    .breadcrumb > li:not(:last-child) a span {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a:after {
        content: "...";
        font-size: 12px;
    }

    .breadcrumb > li + li:before {
        padding: 0 6px;
    }

    .breadcrumb > li:first-child a {
        font-size: 0 !important;
        letter-spacing: 0 !important;
    }

    .breadcrumb > li:first-child a:after {
        content: "\f015";
        display: inline-block;
        font-family: FontAwesome, sans-serif;
        font-size: 12px;
    }

    .price-box {
        padding-right: 0;
    }

    .product-info {
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 10px;
        justify-content: space-around;
    }
}

@media screen and (max-width: 560px) {
    .slider-nav {
        display: none;
    }
    .contact-list{
        justify-content: center;
    }
    .offer-box-text{
        margin-bottom: var(--space-50);
    }
    .offer-box-inner{
        padding: 0 !important;
    }
    .offer-list .offer-box + .offer-box{
        margin-top: 0 !important;
    }

    .logotype-wrapper {
        width: 33.333%;
    }


    .blogList-category:nth-child(2n + 2):after, .blogList-category:nth-child(2n + 3):after {
        content: "" !important;
        width: 10px;
        height: 1px;
        top: 0;
        background: rgba(0, 0, 0, 0.1);
        left: 0;
        right: 0;
        position: absolute;
        display: block;
        bottom: unset !important;
        margin: 0 auto;
    } {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transition: opacity, 300ms;
    margin: auto 0;
    height: 10px;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    display: block;
    content: "";
}
    .blogList-category:nth-child(4n - 1):before {
        content: unset;
    }

    .blogList-category {
        width: 50%;
        text-align: center;
    }


    .banner-title {
        font-size: 32px;
    }

    .offer-box-inner {
        grid-template-rows: auto 1fr;
    }

    .offer-box-bottom {
        max-width: 360px;
        margin: 0 auto;
    }

    .offer-box-top {
        padding: var(--space-25) 10px;
    }

    .offer-box:nth-child(2n + 2) .offer-box-inner .offer-box-top {
        order: unset !important;
    }

    .offer-box:nth-child(2n + 2) .offer-box-bottom:after {
        transform: unset;
        top: 0;
        bottom: unset;
    }

    .offerSlider .offer-box:nth-child(2n + 2) .offer-box-inner .offer-box-top {
        order: 3 !important;
    }

    .offerSlider .offer-box-inner {
        grid-template-rows: 1fr 1fr;
    }

    .offer-list .offer-box + .offer-box {
        margin-top: var(--space-25);
    }

    .offer-box {
        width: 100%;
    }

    .section-title, .mainpage .aboutUs-section .aboutUs-row:nth-child(1) .text h2 {
        font-size: 26px;
    }

    .text {
        word-wrap: break-word;
    }

    .gallery-list-item {
        width: 50%;
    }

    .section-header {
        flex-wrap: wrap;
        row-gap: var(--space-25);
    }

    .section-header .section-title {
        padding-right: 10px;
    }

    .section-header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section-header .section-title {
        padding-right: 0;
        text-align: center;
    }

    .section-header-right {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        row-gap: calc(var(--space-25) + 5px);
    }

    .section-header-right .btn {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .file-box {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .contact-list li{
        width: unset;
    }
    .contact-list{
        flex-direction: column;
    align-items: unset;
        align-content: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .form-element-email-container .form-control {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .newsletter-form .btn {
        margin-left: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border: 1px solid #fff;
    }

    .blog-box {
        width: 100%;
    }

    .offer-box-inner {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .offer-box-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .offer-box-icon svg {
        width: 100%;
    }

    header .social-icon svg * {
        fill: var(--color-primary);
    }

    .header-right > .user-nav {
        display: none;
    }

    .header-right-squares > .social-list {
        display: none;
    }

    .basket-view-bottom {
        flex-direction: column;
    }

    .row > .col-sm-6 {
        width: 100%;
    }


    .newsletter-form .btn {
        font-size: 12px;
        padding: 0 10px;
        height: 40px;
    }

    .newsletter-form .form-element-email-container .form-control {
        height: 40px;
        font-size: 13px;
        padding-left: 15px;
    }

    .offerSlider:not(.slick-initialized) .offer-box:nth-child(n + 2) {
        display: none;
    }

    .productsSlider:not(.slick-initialized) .product-box:nth-child(n + 2) {
        display: none;
    }


    .banner-title {
        font-size: 30px;
    }

    .offerSlider .offer-box-inner {
        grid-template-rows: auto 1fr;
    }

    .offerSlider .offer-box-top {
        padding-top: 0;
    }

    .offer-box-top {
        margin-bottom: 20px;
    }

    .offerSlider .offer-box:nth-child(2n + 2) .offer-box-inner .offer-box-top {
        order: unset !important;
    }

    .product-info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .shop-quantity-box {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .shop-add-to-basket-inner-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .reference-wrapper {
        width: 50%;
    }

    .section-title, .mainpage .aboutUs-section .aboutUs-row:nth-child(1) .text h2 {
        font-size: 24px;
    }

    .product-box {
        width: 100%;
    }

    .modal-footer > .btn {
        width: 100%;
    }

    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }
}

@media screen and (max-width: 420px) {
    .blogList-category:after {
        display: none !important;
    }

    .logotype-wrapper {
        width: 50%;
    }

    .blogList-category + .blogList-category:before {
        content: "" !important;
        width: 10px;
        height: 1px;
        top: 0;
        left: 0;
        right: 0;
        bottom: unset !important;
        margin: 0 auto;
    }

    .blogList-category {
        width: 100%;
    }

    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 319px) {
    body {
        width: 320px;
    }
}

/* --------------- GLOBAL VARIABLES --------------- */

@media screen and (max-width: 1600px) {
    :root {
        --space-60: 55px;
        --space-50: 45px;
        --space-40: 35px;

        --font-36: 32px;
        --font-30: 26px;
        --font-24: 22px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --space-60: 50px;
        --space-50: 40px;


        --container-padding: 30px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --space-25: 20px;

        --font-36: 28px;
        --font-30: 24px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --space-60: 40px;
        --space-50: 35px;
        --space-40: 30px;


        --container-padding: 20px;
    }
}

@media screen and (max-width: 1139px) {
    :root {
        --space-60: 35px;
        --space-50: 30px;
        --space-40: 25px;
        --space-25: 15px;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --space-60: 30px;
        --space-50: 25px;
        --space-40: 20px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --container-padding: 15px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-36: 24px;
        --font-30: 22px;
        --font-24: 18px;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --font-36: 20px;
        --font-30: 20px;
        --font-24: 16px;
    }
}