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

/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {

    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: block;
    }

    button.main-menu-button {
        margin-top: 0;
        margin-bottom: 0;
        transition: background-color, 300ms;
    }

    button.main-menu-button:not(.active):hover {
        background-color: #f8931e;
    }

    button.main-menu-button.active:hover span {
        background-color: #f8931e;

    }

    .rwdButton.mainsearch-rwd-button {
        display: none;
    }

    #rwd-mainmenu.rwdPanel.active {
        display: block;
        background: var(--color-primary);
    }

    #rwd-mainmenu.rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background-color: #1b75bc;
        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 #rwd-mainmenu.rwdPanel {
        z-index: -1;
    }

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

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

    .rwdPanel-action-open,
    .rwdPanel-action-toggle.rwdButton.mainsearch-rwd-button {
        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%;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        pointer-events: none;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        background: var(--color-primary);
    }

    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;
    }

    .animIcon.animIcon--hamburger.active span:nth-child(3) {
        margin-top: 72%;
    }
}

/**
 * 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 {
    font-size: 0 !important;
    display: none;
    min-width: 100%;
    width: unset;
    margin-right: calc((var(--container-padding) + var(--space-40)) * -1);;
    padding-left: calc(var(--container-padding) + var(--space-40));
}

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

.rwdMenu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 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: #fff;
    border: none;
}

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

.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: #fff;
}

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

.rwdMenu li > *:first-child:hover {
    color: var(--color-tertiary);
}

.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 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}

.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;
    color: #fff;
    background: transparent;
    border: none !important;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

.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;
}

@media screen and (min-width: 1140px) {

    .rwdMenu {
        max-width: 1400px;
        margin: 0 auto;
    }

    .rwdMenu ul.cloneMenu {
        display: none;
    }

    .rwdMenu ul.cloneMenu + .cloneMenu {
        padding-top: 0;
    }

.rwdMenu ul.cloneMenu {
    display: block;
    width: 100%;
    padding-top: 85px;
    padding-left: var(--container-padding);
}

    .rwdMenu li > *:first-child {
        color: #fff;
        font-size: 56px;
        font-style: normal;
           letter-spacing: 0.01em;
        padding-top: 19px;
        padding-bottom: 19px;
        text-transform: uppercase !important;
        font-weight: 600 !important;
    }

    .rwdMenu ul ul > li {
        width: 33.3333%;
        display: inline-block;

    }

    .rwdMenu ul ul > li a {
        padding: 5px !important;
        font-weight: 400 !important;
        font-size: calc(var(--font-24) - 1px) !important;
    }

    .rwdMenu li {
        border-bottom: 0 none !important;
    }

.rwdMenu li:first-child {
    border-top: 0 none !important;
    position: relative;
}

    .rwdMenu li.active > *:first-child {
        color: #fff;
    }

    .rwdMenu li > *:first-child:hover {
        font-weight: bold;
    }

    .top-social-box {
        padding-left: var(--container-padding);
    }

    .social-box-title {
        font-size: 24px;
        color: #fff;
        font-weight: 400;
        margin-bottom: 15px;
    }

    .rwdPanel .rwdMenu .social-list ul {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .rwdPanel .rwdMenu .social-list ul li {
        margin-right: 21px;
    }

    .rwdPanel .rwdMenu .social-list ul li a {
        padding: 0;
    }

    .rwdPanel .rwdMenu .social-list ul li a .social-icon {
        width: 32px;
        height: 32px;
        border: var(--color-primary);
        background: #fff;
        color: var(--color-primary);
        border-radius: 50%;
    }

    .menu-bottom.social-list {
        text-align: center;
        margin: 0 0 0 -5px;
    }

    .find-us {
        font-size: 24px;
        letter-spacing: normal;
        text-transform: uppercase;
        color: #fff;
        display: flex;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }


    .find-us .btn-icon {
        width: 55px;
        padding: 10px;
        height: 55px;
        background: #f78d10;
        margin-bottom: 10px;
        border-radius: 50%;
    }

    .find-us .btn-caption {
        color: #fff;
        font-weight: 500;
    }


    .find-us .btn-icon svg {
        fill: #fff;
    }

    .rwdMenu li > *:first-child:hover {
        color: #fff;
    }

    .find-us:hover .btn-caption {
        color: var(--color-tertiary);
    }

    .rwdPanel .rwdMenu .social-list ul li a:hover .social-icon {
        color: #fff;
        background: var(--color-primary);
        border-color: #fff;
    }
	
	
.cloneMenu-toggle {
    opacity: 1;
    position: absolute;
    width: 317px;
    height: 112px;
    left: 0;
    top: 0;
}

.cloneMenu-toggle:before {
    display: none;
}

.rwdMenu > ul > li > *:first-child {
    display: inline-block;
    width: auto;
    flex: inherit;
    position: relative;
    padding-right: 0; padding-left:0!important;
}


.rwdMenu > ul > li > *:first-child:after {
    width: 0;
    display: block;
    height: 4px;
    background: #f78d10;
    position: absolute;
    content: '';
    bottom: 14px;
    opacity: 0;
    transition: all 0.5s;
}


.rwdMenu > ul > li > .cloneMenu-toggle:after {
    width: 0;
    display: block;
    height: 4px;
    background: #f78d10;
    position: absolute;
    content: '';
    bottom: 14px;
    opacity: 0;
    transition: all 0.5s;
    left: 0px;
}


.rwdMenu > ul > li > *:first-child:hover:after, .rwdMenu > ul > li > .cloneMenu-toggle:hover:after {
    width: 100%;
    opacity: 1;
}

.rwdMenu > ul > li > *:first-child:hover {
    color: #fff;
}

.rwdMenu > ul > li > ul > li > *:first-child:hover {
    color: #f78d10;
}

.rwdMenu ul ul li a{position:relative;display: inline-block!important;}

.rwdMenu ul ul li a:hover{ color:#fff!important}

.rwdMenu ul ul li a:after {
    width: 0;
    display: block;
    height: 2px;
    background: #f78d10;
    position: absolute;
    content: '';
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
}
.rwdMenu ul ul li a:hover:after{ width:100%; opacity:1}
}


/**
 * RWD BUTTON
 */

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

.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.active {
    color: #fff;
    background-color: var(--color-primary);
}

.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: 1920px) {
.category-item:nth-child(2) .category-item-inner {
    width: 39%;
}

}

@media screen and (max-width: 1670px) {
    .how-make-photo {
        margin-right: 0;
        width: 32%;
        margin-top: -10%;
    }
	
.menu-lang {
    margin-right: -687px!important;
}
}

@media screen and (max-width: 1600px) {
    .welcome-text {
        margin: 0 auto 70px;
    }

    .recipes-box-wrapper {
        margin-bottom: 70px;
    }

    .brand-box-wrapper {
        margin-bottom: 70px;
    }
	
.menu-lang {
    margin-right: 145px!important;
    right: 0!important;
}
}

@media screen and (max-width: 1500px) {
    .category-item:nth-child(2) {
        margin-top: -11%;
    }
	

}

@media screen and (max-width: 1440px) {
    .contact-box-content {
        top: 50%;
    }

    .category-box-container {
        padding-bottom: 100px;
    }

    .welcome-text {
        margin: 0 auto 50px;
    }

    .recipes-box-wrapper {
        margin-bottom: 50px;
    }

    .brand-box-wrapper {
        margin-bottom: 50px;
    }

    .how-make-photo {
        right: 0
    }

    .how-make-list {
        padding-right: 4%;
    }
	
.menu-lang {
    margin-right: 131px!important;
    right: 0!important;
}
}

@media screen and (max-width: 1366px) {
    .category-box {
        padding-bottom: 50px;
    }

    img#footer-img {
        max-width: 29.5%;
    }

    .welcome-text {
        margin: 0 auto 30px;
    }

    .recipes-box-wrapper {
        margin-bottom: 30px;
    }

    .brand-box-wrapper {
        margin-bottom: 30px;
    }

    .recipe-photo img {
        width: 100%;
    }

    .ingredients-box {
        max-width: 100%;
    }
	.category-item:nth-child(2) .category-item-inner {
    width: 40%;
}

}

@media screen and (max-width: 1280px) {
    .form-floatingBottom {
        display: none;
    }

    img#footer-img {
        max-width: 27.5%;
    }

    .form textarea.form-control:not([rows]) {
        height: 145px;
    }
	
	.rwdMenu ul ul > li a {
    font-size: calc(var(--font-24) - 4px) !important;
}

.menu-lang {
    margin-right: 112px!important;
    right: 0!important;
}
}

@media screen and (max-width: 1200px) {
    img#footer-img {
        max-width: 25.5%;
    }
	
	.recipes-box-slider .slide {
    width: 25%;
}
}

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

    .footer-content {
        display: block !important;
    }
	
	
	.menu-lang-content {
    position: absolute;
    right: 2px;
}

.menu-lang {
    position: absolute;
    width: 1.2em;
    height: 1.2em;
    right: 50%;
    top: 70px;
    font-size: 24px;
    margin-right: -711px;
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.menu-lang nav.langs-menu.langs-menu--list {
    margin: 0;
}

.menu-lang .langs-menu.langs-menu--list li {
    white-space: nowrap;
    display: inline;
}
.menu-lang .langs-menu.langs-menu--list li:after {
    content: '/';
    display: inline-block;
    color: #fff;
    vertical-align: middle;
    font-size: 24px;
}

.menu-lang .langs-menu.langs-menu--list li:last-child:after {
    display: none;
}

header .rwdMenu li .lang.lang-item{ position:relative}
header .rwdMenu li .lang.lang-item:after{width: 0;
    display: block;
    height: 4px;
    background: #f78d10;
    position: absolute;
    content: '';
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;}
}

header .rwdMenu li .lang.lang-item:hover{ color:#fff}

header .rwdMenu li .lang.lang-item:hover:after{opacity:1; width:100%;}


@media screen and (max-width: 1139px) {
    .form-control, .form .form-control {
        font-size: 16px;
    }

    .find-us .btn-icon {
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .top-right {
        margin-right: 0;
    }

    .top-social-box {
        padding: 0;
        text-align: center;
    }

    .menu-bottom .find-us .btn-icon {
        width: 40px;
        height: 40px;
    }

    .top-social-box ul {
        display: flex;
        justify-content: center;
    }

    .menu-bottom .find-us .btn-caption {
        font-size: 16px;
        letter-spacing: normal;
    }

    .menu-bottom {
        display: flex;
        justify-content: center;
        padding: 0 var(--container-padding);
    }

    .brand-box-slider .slide {
        width: 25%;
    }

    .brand-box-slider:not(.slick-initialized) .slide:nth-child(n + 5) {
        display: none;
    }

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

    #main-menu {
        display: none;
    }


    .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;
        color: var(--color-primary);
    }

    .mainsearch.rwdPanel .mainsearch-search {
        background-color: #f0f;
    }

    .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;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }

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

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0 30px;
    }

    .category-item-inner {
        width: 100% !important;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
        align-items: center !important;
        flex-direction: row !important;
    }

    .category-item:first-child .category-photo {
        width: 50%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .category-item {
        margin: 0 0 30px !important;
        padding: 0 !important;
    }

    .category-item:nth-child(even) .category-item-inner {
        flex-direction: row-reverse !important;
    }

    .category-text {
        width: 56% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .category-photo {
        width: 43% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .category-box {
        padding: 0;
    }

    .category-text .text.txt {
        padding-left: 50px;
        padding-right: 0 !important;
    }

    .top {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .logo a img {
        height: 46px;
    }

    .main-menu-button {
        width: 46px;
        height: 46px;
    }

    .animIcon.animIcon--hamburger span.hamburger-line {
        left: 9px;
    }

    div#content {
        padding-top: 76px;
    }

    .title1 {
        margin-bottom: 40px;
    }

    .contact-box-container {
        padding-top: 30px;
        background-size: cover;
    }

    .menu-bottom {
        padding-top: 30px;
        flex-wrap: wrap;
    }


    .social-box-title {
        color: #fff;
    }

    .rwdMenu .social-list > ul > li {
        border: 0 none;
    }

    .top-social-box {
        width: 100%;
    }

    .rwdPanel .social-list {
        text-align: left;
    }

    .rwdMenu .social-list li > *:first-child {
        padding: 0;
    }

    .rwdMenu .social-list ul {
        width: auto;
    }

    .rwdMenu .social-list .social-icon {
        border-color: #fff;
        border-radius: 50%;
    }

    html.rwdPanel-scrollLock .top {
        background: var(--color-primary);
    }
    .form-bottom-right button.btn-lg, .contact-form-wrapper .find-us{
        font-size: 17px;
    }
    .contact-form-wrapper .find-us{
        margin-bottom: 13px;
    }
.logo a {
    display: block;
    margin-top: -29px;
    margin-bottom: -29px;
    margin-left: -34px;
}



.logo a img {
    height: 105px;
}

.rwdPanel-scrollLock .logo a {
    margin: 0;
}

.footer-bar-content {
    max-width: 100%;
    padding-right: 25.5%;
}

.footer-box {
    margin-bottom: 60px;
}

    .recipes-box-container {
        padding-top: 50px;
    }
}

@media screen and (max-width: 1050px) {
    .contact-form-wrapper .find-us {
        margin-right: 0;
    }

    .form textarea.form-control:not([rows]) {
        height: 100px;
    }

}

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

    .other-box-wrapper, .recipes-box-wrapper, .brand-box-wrapper {
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .other-box-title, .recipes-box-title, .brand-box-title {
        width: 100%;
    }

    .recipes-box-slider, .recipes-box-slider, .brand-box-slider {
        width: 100%;
    }

    .other-box-wrapper {
        padding-top: 0;
    }

    .other-box-title {
        margin-left: 0;
        padding-left: 0;
    }
    .form-control, .form .form-control {
        font-size: 12px;
    }
	
	    .recipes-box-slider .slide {
        width: 33.33%;
    }
}

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


@media screen and (max-width: 900px) {
    .recipe-details .btn{
        right: 0;
    }
    .about-partner {
        padding-bottom: 50px;
    }

    .page-top-box-container .page-top-photo + .container, .offer-view.page-top-box-container .page-top-photo + .container {
        margin-top: 30px;
    }

    .box-top:before {
        content: unset;
    }

    .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;
    }

    .box-top {
        width: 100%;
        padding: 0 0 0px;
    }

    .text-right-inner {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .text-right > .text.txt {
        max-width: 100%;
        padding-left: 50px;
    }

    .mainpage .text.intro-text {
        margin-bottom: 30px;
    }


    img#footer-img {
        display: none;
    }

    .page-top-box-container .container {
        margin-top: 30px;
    }

    .category-info-right {
        margin-bottom: 40px;
    }

    .category-products-box {
        padding-top: 50px;
    }

    .page-top-details-container .container {
        position: relative;
        padding-top: 30px;
    }

    .recipe-details-container {
        padding-top: 30px;
        padding-bottom: 0;
    }

    .ingredients-box {
        -moz-column-count: 1;
        column-count: 1;
        margin-bottom: 50px;
    }

    .partner-info {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .partner-info {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .partner-benefit {
        width: 50%;
    }

    .benefit-icon {
        max-width: 110px;
        margin-bottom: 30px;
    }

    .partner-benefits {
        padding-bottom: 50px;
    }

    .text-right {
        margin-bottom: 0;
    }

    .partners-box-container {
        margin-top: 45px;
        padding-top: 0px;
        padding-bottom: 50px;
    }

    .cooperation-box-content {
        position: relative;
        padding: 30px;
    }

    .cooperation-box-container img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cooperation-box-title {
        margin-bottom: 30px;
    }

    .training-centers {
        flex-direction: column-reverse;
    }

    .training-centers-photo {
        width: 100%;
    }

    .training-centers-text {
        width: 100%;
    }

    .training-centers-text .text.txt {
        padding-left: 0;
    }

    .contact-map {
        width: 100%;
    }

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

    .contact-text {
        width: 100%;
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-text-content {
        max-width: 100%;
        padding-right: 0;
    }

    .contact-text ul {
        margin-bottom: 10px;
    }

    .contact-text-title {
        margin-bottom: 30px;
    }

    .address-box {
        margin: 0;
        padding: 30px;
        width: 100%;
    }
	
	.footer-bar-content {
    max-width: 100%;
    padding-right: 0;
}


}

@media screen and (max-width: 767px) {
    .contact-box-img > img {
        min-height: 644px;
    }
    .contact-box-content{
        padding-right: 60px;
    }
    .form-floatingTop{
        display: none;
    }
    .contact-form-container .col-xs-6 {
        width: 100%;
    }

    .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;
    }

    .contact-form-wrapper .form-box {
        max-width: 100%;
    }

    .contact-form-wrapper {
        flex-direction: column;
    }

    .form-bottom-right button.btn-lg {
        margin-right: 0;
    }


    .footer-box .social-list > ul li {
        margin-right: 0;
    }

    .footer-bar-content {
        border-top: 0;
    }

    .contact-form-wrapper .find-us {
        margin: 0 auto;
    }


    .footer-box {
        margin-bottom: 50px;
    }

    .footer-box ul {
        padding-right: 0;
    }

    .footer-box ul.footer-bar-links {
        margin: 0;
    }

    .form-group.form-group-lg.col-sm-6 {
        width: 100%;
    }

.category-link-title {
    margin-bottom: 18px;
    text-align: center;
    padding: 0 10px;
}

    .category-link-box-text {
        padding-top: 0;
    }

    .category-link-box {
        margin-top: 0;
    }
	
	.contact-cooperation-box {

    padding-bottom: 30px;
}

	.text-box-container{

    padding-bottom: 30px;
}
}

@media screen and (max-width: 694px) {
    .brand-box-slider .slide {
        width: 33.333%;
    }

    .brand-box-slider:not(.slick-initialized) .slide:nth-child(n + 4) {
        display: none;
    }
}

@media screen and (max-width: 639px) {
    .contact-box-title{
        font-size: var(--font-36);
    }
    .form-element-option-text{
        font-size: 10px;
    }
    .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;
    }

    .footer-bar-content {
        padding: 0;
        flex-wrap: wrap;
    }

    .footer-bar-content.footer-bar-content > * {
        width: 100%;
    }
	
	    .recipes-box-slider .slide {
        width: 50%;
    }
}

@media screen and (max-width: 560px) {
    .contact-box-img{
        display: none;
    }
    .contact-box-content{
        position: static;
        transform: none;
        padding: 0;
    }
    footer{
        background-color: rgba(0,0,0,0.2);
        background-blend-mode: overlay;
        background-size: cover;
    }
    .recipes-box-slider {
        width: calc(100% + var(--container-padding));
        margin: 0 calc(var(--container-padding) / -2);
    }

    .recipes-box-slider .recipe-link {
        margin-left: calc(var(--container-padding) / 2);
        margin-right: calc(var(--container-padding) / 2);
    }

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

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

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0;
    }

    .footer-box ul {
        padding-right: 0;
    }

    .footer-box ul.footer-bar-links {
        margin: 0;
    }

    .footer-box {
        width: 100%;
        padding-right: 0;
    }

    .footer-box {
        margin-bottom: 30px;
    }

    .form-group.form-group-lg.col-sm-6 {
        width: 100%;
    }

    .category-text {
        width: 100% !important;
        margin-bottom: 30px !important;
    }

    .category-photo {
        width: 100%;
    }

    .category-item-inner {
        flex-wrap: wrap !important;
    }

    .category-photo {
        width: 100% !important;
        margin-bottom: 0px !important;
    }

    .category-text .text.txt {
        padding: 0 !important;
    }

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

    .category-photo img {
        margin: 0 auto !important;
    }


    .category-link-box-text {
        position: relative;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .category-info-photo {
        width: 100%;
    }

    .category-info-right {
        width: 100%;
    }

    .category-info {
        flex-wrap: wrap;
    }

    .how-make-box {
        flex-wrap: wrap;
    }

    .how-make-list {
        width: 100%;
        padding: 0;
    }

    .how-make-photo {
        width: 100%;
        margin: 0;
    }

    .how-make-nb {
        font-size: 50px;
        width: 60px;
    }

    .training-centers {
        flex-direction: column-reverse;
    }

    .training-centers-photo {
        width: 100%;
    }

    .training-centers-text {
        width: 100%;
    }

}

@media screen and (max-width: 480px) {
    .modal-footer > .btn {
        width: 100%;
    }

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

    .slider-text {
        text-align: center;
        width: 60%;
    }

    .slider-text {
        text-align: center;
        width: 60%;
    }

    .title1 {
        margin-bottom: 0;
        font-size: 18px;
    }

    .slider-text-box {
        align-items: center;
        justify-content: center;
    }

    .category-box-container {
        padding-bottom: 50px;
    }

    .recipe-details .btn{
        display: inline-block;
        margin-bottom: 20px;
        position: static;
    }
}

@media screen and (max-width: 424px) {
    .footer-box ul li {
        width: 100%;
    }

    .form .checkboxradio-container {
        padding-right: 0;
    }

    .form-bottom-right .col-xs-12 {
        display: flex;
        margin-bottom: 20px;
        justify-content: center;
    }

    .form-bottom-right button.btn-lg .btn-icon {
        margin-bottom: 1px;
    }

    .form-bottom-right button.btn-lg {
        line-height: 41px;
    }

    .find-us-mobile {
        display: flex !important;
        margin: 0 !important;
        margin-right: 20px !important;
    }

    .find-us-desktop {
        display: none;
    }

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

    .pagination-wrapper ul li {
        padding: 0;
    }


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

    .form-bottom-right {
        width: 100%;
    }

    .form-bottom-left {
        width: 100%;
    }

    .text-right-inner {
        padding-left: 0;
    }

    .mainpage .text.intro-text {
        padding-left: 0;
    }

    .mainpage .box-top {
        padding-bottom: 0;
    }

    .find-us {
        margin: 0 auto;
    }

    .text.intro-text {
        padding-left: 0;
    }

    .text-right > .text.txt {
        padding-left: 0;
    }

    .page-top-content .text.intro-text {
        margin-bottom: 20px;
    }

    .ingredients-box dt {
        width: 23%;
    }

    .ingredients-box dd {
        width: 79%;
    }

    .training-centers-text .text.txt {
        padding-left: 0;
    }

    .partner-info {
        max-width: 100%;
        padding-left: 0;
    }

    .partner-benefit {
        width: 100%;
    }
	
	    .recipes-box-slider .slide {
        width: 100%;
    }
}

@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-60: 48px;
        --font-56: 45px;
        --font-48: 40px;
        --font-40: 36px;
        --font-36: 32px;
        --font-32: 28px;
        --font-30: 26px;
        --font-24: 22px;
    }
}

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

        --font-60: 45px;
        --font-56: 42px;
        --font-48: 36px;
        --font-40: 34px;

        --container-padding: 30px;
    }
}

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

        --font-60: 43px;
        --font-56: 40px;
        --font-48: 34px;
        --font-40: 32px;
        --font-36: 28px;
        --font-32: 26px;
        --font-30: 24px;
        --font-21: 20px;
        --font-18: 17px;
    }
}

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

        --font-60: 40px;
        --font-56: 38px;
        --font-48: 32px;
        --font-40: 30px;

        --container-padding: 20px;
    }
}

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

        --font-60: 38px;
        --font-56: 36px;
        --font-48: 30px;
        --font-40: 28px
    }
}

@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;
        --font-60: 36px;
        --font-56: 34px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-60: 34px;
        --font-56: 32px;
        --font-48: 30px;
        --font-40: 26px;
        --font-36: 24px;
        --font-32: 23px;
        --font-30: 22px;
        --font-24: 18px;
        --font-21: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}

@media screen and (max-width: 424px) {
    :root {
        --font-60: 32px;
        --font-48: 24px;
        --font-40: 22px;
        --font-36: 20px;
        --font-30: 20px;
        --font-26: 17px;
        --font-24: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}