.need_link_container .notebook_container {
    display: block;
    width: 160px;
}
@media( min-width: 960px ){
    .need_link_container .notebook_container {
        width: 213px;
    }
}

@media( max-width: 959px ){
    .notebook .orange_button {
        font-size: 87.5%; /*14px*/
    }
}

.main_container .slider_section {
    display: block;
    float: right;
    position: relative;
    margin: 23px 0em -23px;
    width: 554px;
    height: 304px;
    margin-bottom: 0px;
}

/* slider prev & next buttons */

.slider_section .slider_prev,
.slider_section .slider_next {
    position: absolute;
    z-index: 3;
    top: calc(50% - 30px);
}
.slider_section .slider_prev {
    left: 0;
}
.slider_section .slider_next {
    right: 0;
}
.slider_section .slider_prev a,
.slider_section .slider_next a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background: rgba(255,255,255,0.3);
    text-decoration: none;
    color: #fff;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
    font-size: 1.5em;
    transition: all .2s ease-in-out;
}
.slider_section .slider_prev a {
    padding-left: 0;
    padding-right: 6px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.slider_section .slider_next a{
    padding-left: 6px;
    padding-right: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.slider_section .slider_prev a:hover,
.slider_section .slider_next a:hover {
    background: #3c67a5;
    color: #fff;
}
.slider_section .slider_prev a:hover {
    padding-left: 6px;
}
.slider_section .slider_next a:hover {
    padding-right: 6px;
}


@media( min-width: 960px ){
    .main_container .slider_section {
        margin: 18px 0em 0em;
        width: 708px;
        height: 389px;
    }
}

.slider_section .slider_container {
    display: block;
    float: left;
    position: relative;
    width: 100%;
}

.slider_container .slider {
    display: block;
    position: absolute;
    top: 0em;
    left: 0em;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 800ms;
    -moz-transition: opacity 800ms;
    transition: opacity 800ms;
    overflow: hidden;
}
.slider_container .slider.active {
    opacity: 1;
    z-index: 1;
}

.slider .slider_image_container {
    display: block;
    float: left;
    width: 100%;
}

.slider .slider_image {
    display: block;
    float: left;
    border: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
}

/* Slider dots */

.slider_section .slider_links {
    display: block;
    position: absolute;
    left: 0em;
    bottom: 25px;
    text-align: center;
    width: 100%;
    height: 0em;
    z-index: 1;
}

.slider_links .slider_link_container {
    position: relative;
    display: inline-block;
    margin: 0em 8px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: transparent;
    width: 10px;
    height: 10px;
    -webkit-transition: background-color 150ms;
    -moz-transition: background-color 150ms;
    transition: background-color 150ms;
}
.slider_links .slider_link_container::before {
    display: block;
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px #fff solid;
    background: transparent;
    top: -4px;
    left: -4px;
    box-shadow: 1px 2px 4px rgba(0,0,0,0.4);
}
.slider_links .slider_link_container.active {
    background-color: #fff;
}

/* Banners group */
.banners-group {
    clear: both;
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.banners-group a {
    flex: 1;
}
.banners-group a img {
    max-width: 100%;
    width: 100%;
    box-shadow: 0 0 6px #0000002D;
    transition: all .2s ease-in-out;
}

.banners-group a:hover img {
    box-shadow: 0 4px 6px #00000044;
}

/* Brands carousel */
.brands_carousel {
    margin-top: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-sizing: border-box;
    clear: both;
    display: flex;
    gap: 20px;
    margin: 20px 0 20px;
    padding: 20px 30px;
    justify-content: space-around;
    overflow: hidden;
}

.brands_carousel a {
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-content: center;
    justify-content: center;
}
.brands_carousel a img {
    transition: all .2s ease-in-out;
}
.brands_carousel a:hover img {
    transform: scale(1.1, 1.1);
}

.brands_carousel a,
.brands_carousel img {
    /*
    display: block;
    float: left;
    border: none;
    text-decoration: none;
    width: 100%;
    */
}

.main_container .title {
    display: block;
    float: left;
    margin-top: 30px;
    color: #4DC1DF;
    font-family: 'Font3';
    font-size: 143.75%; /*23px*/
    font-weight: normal;
    text-align: center;
    padding-bottom: 8px;
    width: 100%;
}

.main_container .articles_section {
    display: block;
    float: left;
    position: relative;
    width: 100%;
}


.articles_section .subtitle_container {
    display: block;
    float: left;
    padding: 0em 7.3684%;
    width: 85.2632%;
}

.subtitle_container .subtitle {
    display: block;
    float: left;
    position: relative;
    background-color: #4DC1DF;
    text-align: center;
    width: 100%;
}

.subtitle .ribbon {
    display: block;
    position: absolute;
    top: 19px;
    background-image: url(../images/sprite-ribbon.png);
    background-repeat: no-repeat;
    width: 90px;
    height: 50px;
}
.subtitle .ribbon.left {
    left: -36px;
    background-position: left 2px;
}
.subtitle .ribbon.right {
    right: -36px;
    background-position: right 2px;
}

.subtitle .star {
    display: inline-block;
    margin: 0em 15px;
    background-image: url(../images/sprite-ribbon.png);
    background-repeat: no-repeat;
    background-position: -92px 11px;
    width: 22px;
    height: 37px;
}
.subtitle h2{
    display: inline;
    color: #fff;
    font-family: 'Font1';
    font-size: 162.5%; /*26px*/
    font-weight: normal;
    line-height: 52px;
}

.articles_section .articles_container {
    display: block;
    float: left;
    position: relative;
    margin-top: 25px;
    margin-left: -6px;
    width: 744px;
    height: 460px;
    overflow: hidden;
}
@media( min-width: 960px ){
    .articles_section .articles_container {
        margin-top: 50px;
        margin-left: -22px;
        padding: 0em 11px;
        width: 100%;
    }
}

.articles_container .articles_list {
    display: block;
    position: absolute;
    top: 0em;
    left: 6px;
    width: 200%;
}
@media( min-width: 960px ){
    .articles_container .articles_list {
        left: 11px;
    }
}

.articles_list .article {
    display: block;
    float: left;
    padding-right: 36px;
}
@media( min-width: 960px ){
    .articles_list .article {
        padding: 0em 11px;
    }
}

.articles_section .slide_button {
    display: none;
    position: absolute;
    background-image: url(../images/sprite-home-arrows.png);
    background-repeat: no-repeat;
    width: 28px;
    height: 46px;
}
@media( min-width: 820px ) and ( max-width: 961px ),( min-width: 1110px ){
    .articles_section .slide_button {
        display: block;
        bottom: 208px;
    }
    .articles_section .slide_button.left {
        left: -40px;
        background-position: left top;
    }
    @media( min-width: 1110px ){
        .articles_section .slide_button.left:hover {
            background-position: left bottom;
        }
    }
    .articles_section .slide_button.right {
        right: -40px;
        background-position: right top;
    }
    @media( min-width: 1110px ){
        .articles_section .slide_button.left {
            left: -80px;
        }
        .articles_section .slide_button.right {
            right: -80px;
        }
        .articles_section .slide_button.right:hover {
            background-position: right bottom;
        }
    }
}
@media( min-width: 961px ) and ( max-width: 1110px ){
    .articles_section .slide_button {
        display: block;
        bottom: 198px;
        width: 9px;
        height: 21px;
    }
    .articles_section .slide_button.left {
        left: -18px;
        background-position: left -8px;
    }
    .articles_section .slide_button.left:hover {
        background-position: left -72px;
    }
    .articles_section .slide_button.right {
        right: -18px;
        background-position: right -8px;
    }
    .articles_section .slide_button.right:hover {
        background-position: right -72px;
    }
}

/* ONE 2 ONE RECOMENDATIONS */
.main_container .recommendations_container {
    display: block;
    float: left;
    width: 100%;
    margin-top: 50px;
}

.main_container .recommendations_container::after {
    display: block;
    content: '';
    clear: both;
    margin-bottom: 20px;
}
.main_container .recommendations_wrapper {
    float: left;
    width: 100%;
}

.main_container .promotions_container {
    display: block;
    float: left;
    width: 100%;
    margin-top: 20px;
    /*overflow: hidden;*/
}
@media( min-width: 960px ){
    .main_container .promotions_container {
        margin-top: 10px;
    }
}

.promotions_container .promotions_list {
    display: block;
    float: left;
    width: 100%;
}
/*
@media( min-width: 960px ){
    .promotions_container .promotions_list {
        width: 729px;
    }
}
*/

.promotions_list .promotion {
    display: block;
    float: left;
    box-sizing: content-box;
    width: 222px;
    padding: 18px 0;
}

@media( max-width: 959px ){
    .promotions_list .promotion:nth-child(3n-2) {
            padding: 12.5px 0;
            clear: left;
        }
    .promotions_list .promotion {
        width: 230px;
        padding: 12.5px 0 12.5px 23px;
    }
}

@media( min-width: 960px ){
    .promotions_list .promotion:nth-child(4n-3) {
        padding: 12.5px 0;
        clear: left;
    }
    .promotions_list .promotion {
        width: 220px;
        padding: 12.5px 0 12.5px 23px;
    }
}


.promotion .promotion_container {
    display: block;
    float: left;
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0,0,0,0.18);
    transition: all .2s ease-in-out;
}

.promotion .promotion_container:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.4);
    transform: translateY(-6px);
}

.promotion_container .promotion_image {
    display: block;
    float: left;
    border: none;
    width: 100%;
    height: auto;
    /*height: 370px;*/
}

.promotion_container .promotion_details {
    display: block;
    position: absolute;
    left: 0em;
    bottom: -100%;
    background-color: #fff;
    background-color: rgba(255,255,255,0.9);
    padding: 0em 14px 22px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: bottom 500ms;
    -moz-transition: bottom 500ms;
    transition: bottom 500ms;
}
.promotion_container:hover .promotion_details {
    bottom: 0em;
}

.promotion_details .promotion_title {
    display: block;
    float: left;
    margin-top: 16px;
    color: #3C67A5;
    font-family: 'Font1';
    font-size: 93.75%; /*15px*/
    line-height: 24px;
    width: 100%;
}

.promotion_details .promotion_text {
    display: block;
    float: left;
    color: #3C67A5;
    font-family: 'Font2';
    font-size: 87.5%; /*14px*/
    line-height: 22px;
    width: 100%;
}

.promotions_container .recipe_container {
    display: block;
    float: left;
    margin-top: 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: #fff;
    padding: 0em 10px 21px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media( min-width: 960px ){
    .promotions_container .recipe_container {
        width: 221px;
    }
}

.recipe_container .recipe_title {
    display: block;
    float: left;
    margin-top: 20px;
    color: #4EC1E0;
    font-family: 'Font3';
    font-size: 168.75%; /*27px*/
    text-align: center;
    line-height: 24px;
    padding: 0em 5%;
    width: 90%;
}

.recipe_container .recipe_video {
    display: block;
    float: left;
    margin-top: 18px;
    border: 6px solid #EDF9FC;
    width: 370px;
    height: 213px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media( min-width: 960px ){
    .recipe_container .recipe_video {
        width: 100%;
        height: 157px;
    }
}

.recipe_container .recipes_list {
    display: block;
    float: left;
    margin-top: 19px;
    margin-left: 16px;
    border-top: 2px solid #EDF9FC;
    width: 325px;
}
@media( min-width: 960px ){
    .recipe_container .recipes_list {
        margin-top: 20px;
        margin-left: 0em;
        border-top: none;
        width: 100%;
    }
}

.recipes_list .recipe_category {
    display: block;
    float: left;
    width: 100%;
}

.recipe_category .recipe_link {
    display: block;
    float: left;
    border-bottom: 2px solid #EDF9FC;
    color: #4EC1E0;
    font-family: 'Font2';
    font-size: 93.75%; /*15px*/
    text-decoration: none;
    line-height: 28px;
    padding: 0em 10px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media( min-width: 960px ){
    .recipe_category .recipe_link:hover {
        text-decoration: underline;
    }
}

.recipe_link span {
    display: inline-block;
    float: right;
    color: inherit;
    font-family: inherit;
    font-size: 100%; /*15px*/
    text-decoration: none;
}