
.inner-page .breadcrumbs {
    padding: 30px 0 60px;
} 

.guarante-block {
    max-width: 630px;
    margin: auto;
}
.guarante-row {
    padding-bottom: 80px;
}

.guarante-title {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
} 
.guarante-title .icon {
    width: 48px;
    margin-right: 16px;
}
.guarante-block .text{
    font-size: 17px;
    line-height: 1.42;
    color: #000000;    
}
.guarante-block .text:not(:last-child){
    margin-bottom: 32px;
}
.text b{
    font-weight: 500;
}

.guarante-contant,
.guarante-season {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 16px;
}
.guarante-contant .item ,
.guarante-season .item {
    padding: 24px 20px; 
    background: #F1EBE4;  
    margin-bottom: 16px;
    width: calc(33.33% - 8px);
}
.guarante-season .title {
    margin-bottom: 12px;
}
 

.guarante-contant .icon {
    width: 24px;
    height: 24px;
    margin-bottom: 16px;
}
.guarante-contant .block-title {
    margin-bottom: 16px;
}
 
.guarante-contant li {
    font-size: 15px;
    line-height: 150%; 
    color: #000000;  
    word-wrap: break-word;
}
.guarante-contant li:not(:last-child){
    margin-bottom: 8px;
}

 
.ng-list li {
    padding: 8px 0 8px 56px;
    position: relative;
    font-size: 15px;
    line-height: 150%;
    color: #000000;    
}
.ng-list li:not(:last-child) {
    border-bottom: 1px solid #F1EBE4;
}
.ng-list li:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    left: 24px;
    top: 16px; 
    background: #876B46;    
    border-radius: 50%;
}

.public-row{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 100px;
}

.public-sidebar{
    width: 300px;
}
.public-content{
    width: calc(100% - 300px);
    padding-left: 10%;
}
.pi-header{
    font-size: 17px;
    line-height: 21px; 
    color: #000000;
    font-weight: 500;
    min-height: 34px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}
.pi-header:after{
    content: "";
    position:absolute;
    right: 0;
    width: 24px;
    height: 24px;
    background: url(../img/public/plus.svg) center no-repeat;
    cursor: pointer;
    top: 50%;
    margin-top: -12px;
}
.pi-header.active:after{
    background: url(../img/public/minus.svg) center no-repeat;
}
.pi-content{
    display: none;
}

.public-sidebar{
    counter-reset: list1;
}

.public-item{
    counter-increment: list1; 
    margin-bottom: 24px;
}
.public-item ul{
    counter-reset: list2;
}
.public-item ul li{
    font-size: 15px;
    line-height: 140%; 
    text-decoration-line: underline;
    color: #000000; 
    position: relative;
    padding: 8px 0 8px 32px;
}
.public-item ul li:before{
    font-size: 13px;
    line-height: 120%; 
    position: absolute;
    left: 0;
    top: 12px;
    color: #000000;
    font-weight: 600;
    counter-increment: list2; 
    content: counter(list1) "." counter(list2) ". ";    
}
.simple-text h2:first-child{
    margin-top: 0;
}
.simple-text h2{
    font-size: 24px;
    line-height: 23px; 
    font-weight: 500;
    margin-bottom: 26px;
    color: #000000;
    margin-top: 35px;
    
}
.simple-text p{
    font-size: 15px;
    line-height: 150%; 
    color: #000000;   
    margin-bottom: 20px; 
}

@media (max-width:991px){
    .public-content{
        width: 100%;
        padding-left: 0;
    }
    .public-sidebar{
        display: none;
    }
}
@media ( max-width:767px ){
    .inner-page .container{
        padding: 0 20px;
    }   
    .guarante-contant .item, .guarante-season .item{
        width: 100%; 
        position: relative;
    }
    .guarante-contant .block-title{
        margin-bottom: 12px;
    }
    .guarante-contant .item{
        padding-left: 84px;
    }
    .guarante-contant .icon{
        width: 48px;
        height: 48px;
        position: absolute;
        top: 24px;
        left: 20px;
    }
    .guarante-row{
        padding-bottom: 45px;
    }
    .guarante-title{
        line-height: 1.1;
    }
    .guarante-block{
        padding-bottom: 15px;
    }
    .inner-page .breadcrumbs {
        padding: 25px 0 30px;
    }
    .inner-page .breadcrumbs li{
        margin-bottom: 10px
    }
}

/*REVIEW PAGE*/
.review-page{
    padding-bottom: 56px;
}
.inner-page .page-title{
    margin-bottom: 40px;
}
.reviews-block {
    display: flex;
    flex-wrap: wrap;
}
.review-item {
    background: #FFFFFF;
    width: calc(25% - 26.25px);
    margin-bottom: 35px;
}
 
 
.review-item .image {
    display: block;
    position: relative;
    overflow: hidden;
}
.review-item .image:before{
    content: "";
    display: block;
    padding-top: 100%;
}
.review-item .image img {
    position: absolute;
    left: 0;
    top: 0; 
    transition: all .35s;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}
.review-item .review-content {
    padding: 24px 16px;
}
.review-item .review-title {
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}
.review-item .date {
    font-size: 13px;
    line-height: 12px;
    color: #876B46;   
    margin-bottom: 15px;
}
.review-item p {
    font-size: 13px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.8); 
    -webkit-line-clamp: 4; 
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    overflow: hidden;    
}
 
.review-page .btn{
    width: 100%;
    max-width: 344px;
}

@media ( min-width:992px ){
    .review-item:not(:nth-child(4n)){
        margin-right: 35px;
    }
    .review-title:hover{
        color: #876B46;
    } 
}
@media ( max-width:992px ){
    .review-item:not(:nth-child(4n)){
        margin-right: 15px;
    }    
    .review-item {
        background: #FFFFFF;
        width: calc(25% - 11.25px);
        margin-bottom: 15px;
    }
}
@media ( max-width:767px ){
    .review-item:not(:nth-child(4n)){
        margin-right: 0;
    }    
    .review-item {
        background: #FFFFFF;
        width: calc(50% - 6px);
        margin-bottom: 12px;
    }
    .reviews-block{
        justify-content: space-between;
    }
    .inner-page .page-title{
        font-size: 24px;
        margin-bottom: 30px;
        font-weight: 400;
    }
}


/*PAYMENT AND DELIVERY*/
.pd-page{
    padding-bottom: 100px;
}
.payment-row {
    text-align: center;
    padding-bottom: 45px;
}
.payment-row .page-title {
    margin-bottom: 24px;
}
.payment-row .description {
    max-width: 620px;
    margin: 0 auto 54px;
    font-size: 24px;
    line-height: 32px;
    color: #000000;    
}


.payment-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.payment-list .item {
    width: calc(25% - 9px);
    padding: 24px 20px; 
    background: #F1EBE4;    
    margin-bottom: 15px;
    text-align: left;
}
.payment-list .icon {
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
} 
.payment-list img {
    max-height: 100%;
    width: auto;
}
.payment-list img:not(:last-child) {
    margin-right: 25px;
}
.payment-list p {
    font-size: 17px;
    line-height: 21px; 
    color: #000000;    
} 
.payment-list .h2 {
    margin-bottom: 8px;
} 


.delivery-row {
    padding-top: 45px;
    border-top: 1px solid #C4C4C4;
}
.delivery-header {
    margin-bottom: 56px;
    display: flex;
    align-items: center;
}
.delivery-header .icon {
    width: 48px;
    height: 48px;
    margin-right: 36px;
} 

.delivery-list { 
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.delivery-list p {
    width: calc(25% - 26.25px);
    margin-bottom: 50px;
    font-size: 17px;
    line-height: 24px;
    color: #000000;    
}
.delivery-list b {
    font-weight: 500;
}

 
.delivery-row .text {
    max-width: 744px;
}
.delivery-row .h2 {
    line-height: 1.5;
    margin-bottom: 30px;
}
.delivery-row .warning {
    font-size: 15px;
    line-height: 24px; 
    color: #876B46;
    margin-bottom: 50px;
    max-width: 524px;
}

@media ( min-width:992px ){
    .delivery-list p:not(:nth-child(4n)){
        margin-right: 35px;
    }
}
@media ( max-width:1400px ){
    .payment-row .page-title{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .payment-row .description{
        font-size: 18px;
        margin-bottom: 40px;
        line-height: 1.4;
    }
    .delivery-header{
        font-size: 24px;
    }
    .delivery-row .h2{
        font-size: 18px;
    }
}
@media ( max-width:991px ){
    .payment-list .item{
        width: 100%;
    }
    .payment-list .icon {
        height: 34px;
        margin-bottom: 12px; 
    }  
    .delivery-list p{
        width: 100%;
        margin-bottom: 15px;
    }
    .delivery-row{
        padding-top: 30px;
        padding-bottom: 25px;
    }
    .delivery-row .warning,
    .delivery-header{
        margin-bottom: 35px;
    }
    .pd-page{
        padding-bottom: 40px;
    }
    .delivery-header .icon{
        width: 48px;
        min-width: 48px;
        margin-right: 30px;
    }
}

/*BLOG PAGE*/
.blog-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -17px;
}
.col-8 ,
.col-4 {
    padding: 0 17px;
    width: 33.33%;
}
.col-8{
    width: 66.66%;
}

.blog-item {
    margin-bottom: 40px;
    padding-bottom: 24px;
    transition: all 0.35s;
}
.blog-item .image {
    background-size: cover;
    background-position: center;
    display: block;
    position: relative;
    margin-bottom: 30px;
}
.blog-item .image:before {
    padding-top: 77%;
    display: block;
    content: "";
}
.col-8 .blog-item .image:before {
    padding-top: 47%;
}
.blog-item .date {
    left: 0; 
    bottom: 0;
    font-size: 14px;
    line-height: 150%; 
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000000;    
    padding: 8px 22px;
    background: #F8F8F6;
    position: absolute;
}
.blog-item .bi-title {
    font-size: 22px;
    line-height: 1.4; 
    color: #000000;   
    display: inline-block;
    margin-bottom: 14px;
}

.blog-row + .list-show-options{
    margin-top: -10px;
}

@media ( min-width:1200px ){
    .blog-item .bi-title:hover{
        color: #876B46;
    }
    .blog-item:hover{
        transform: translateY(-10px);
    }
}
@media ( max-width:767px ){
    .col-8, .col-4{
        width: 100%;
        padding: 0 8px;
    }    
    .blog-item{
        margin-bottom: 20px;
    }
    .col-8 .blog-item .image:before{
        padding-top: 77%;
    }
}


/*FAVORITES*/
 
.favorites .breadcrumbs {
    padding: 28px 0;
} 
.favorites .title-page {
    padding: 16px 0;
    margin-bottom: 22px;
} 
.favorites-empty {
    max-width: 410px;
    margin: 0 auto 100px;
    text-align: center;
} 
.favorites-empty .image {
    margin-bottom: 40px;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
.favorites-empty .fe-text {
    margin-bottom: 40px;
}
.btn.go-to-shop:before {
    background: url(../img/arrow-left.svg) center no-repeat;
} 

.popover{
    background: #FFFFFF;
    border: 1px solid rgba(220, 206, 187, 0.4);
    box-sizing: border-box;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);  
    position: absolute;
    top: 0;
    right: 0;
}
.favorite-popover {
    display: none;
}
.favorite-popover.popover{
    top: 24px;
    right: -30px;
    padding: 24px 24px 32px;
    z-index: 11;
}
.favorite-popover p {
    font-size: 15px;
    line-height: 150%; 
    color: #000000; 
    font-weight: 500;
    margin-bottom: 25px;
    white-space: nowrap;
}
.favorite-popover .delete-option {
    display: flex;
    align-items: center;
}
.favorite-popover li {
    width: 50%;
    text-align: center;
}
 
.fv-list.product-list {
    padding-top: 0;
}
.fv-list.product-list .product:nth-child(n + 5) {
    margin-top: 35px;
} 
 
.fv-list .add-favorite {
    opacity: 1;
    visibility: visible;
    top: 24px;
}
 
.fv-list .product-info {
    padding-bottom: 10px;
}
 
 
@media ( max-width:767px ){
    .favorites .breadcrumbs{
        padding: 16px 0;
    }
    .favorites-empty .image,
    .favorites-empty .fe-text{
        margin-bottom: 24px;
    }
    .favorites-empty{
        margin-bottom: 40px;
    }
}
@media ( max-width:575px ){
    .favorites-empty .btn{
        width: 100%;
    }
    .favorites .container{
        padding: 0 24px;
    }
    .fv-list.product-list{
        margin: 0 -14px;
    }
    .fv-list.product-list + .list-show-options{
        margin-left: -14px!important;
        margin-right: -14px!important;
    }
}


/*CONTACTS*/ 
.simple-page .breadcrumbs {
    padding: 50px 0;
} 
.inner-page .title-page,
.simple-page .title-page {
    margin-bottom: 60px;
}
 

.contact-block{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 5px;
}
.contact-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #F8F8F6;
    width: calc(50% - 18px);
    margin-bottom: 35px;
}
.contact-item.w100{
    width: 100%;
} 
.contact-item .map-wrap {
    width: 100%;
    position: relative;
    height: 312px;
    font-size: 0;
}
.contact-item iframe {
    width: 100%;
    height: 100%;
}
.contact-item .info {
    padding: 50px 25px 25px;
    width: 53%;
}
.contact-item.w100 .info{
    width: 65%;
}
.contact-item .block-title {
    margin-bottom: 2px;
}
.contact-item .work-time {
    font-size: 15px;
    line-height: 150%; 
    color: #000000;    
    padding: 0;
    margin: 0 0 20px;
}
.contact-item .location {
    font-size: 17px;
    line-height: 21px; 
    color: #000000; 
    max-width: 290px;
}
.contact-item .image {
    background-size: cover;
    background-position: center;
    width: 47%;
}
.contact-item.w100 .image{
    width: 35%;
}
.contact-item .image:before {
    min-height: 205px;
}

.other-news{
    background: #fff;
    padding: 70px 0 20px;
}
.other-title{
    font-size: 24px;
    line-height: 150%; 
    color: #000000;
    margin-bottom: 60px;
    
}

.discount-page{

}
.discount-page .breadcrumbs{
    padding: 25px 0 35px;
}
.discount-page .page-title{
    margin-bottom: 70px;
}
.discount-row{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 64px;
    justify-content: space-between;
}
.discount-image{
    font-size: 0;
    width: 51%;
    margin-bottom: 14px;
}
.discount-image-text{
    width: 49%;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    padding: 50px 70px;
    background: #DCCEBB url(../img/temp/discoun-bg.svg) center no-repeat;
    background-size: cover;
    margin-bottom: 14px;
}
.discount-image-text .dit-title{
    font-size: 24px;
    line-height: 32px; 
    color: #000000; 
    font-weight: 500;
    margin-bottom: 24px;
}
.discount-image-text p{
    font-size: 13px;
    line-height: 1.5; 
    color: #000000;
    margin-bottom: 20px;
}
.discount-image-text p:nth-child(2){
    font-size: 17px;
    line-height: 21px;
}

.discount-term{
    width: 45%;
}
.discount-numbres .h4,
.discount-term .h4{
    font-size: 24px;
    line-height: 23px; 
    color: #000000;    
    font-weight: 500;
    margin-bottom: 22px;
}
.discount-numbres p,
.discount-term p{
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 24px; 
    color: #000000;
}
.discount-numbres{
    width: 49%;
}
.numbers-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.numbers-list li{
    background: #F1EBE4;
    border-radius: 8px;   
    padding: 20px; 
    width: calc(33.33% - 6px);
}
.numbers-list .subtitle{
    font-size: 16px;
    line-height: 24px; 
    color: #433623;
    margin-bottom: 8px;
}
.numbers-list .number{
    font-size: 64px;
    line-height: 1; 
    color: #433623;  
    font-weight: 500; 
    margin-bottom: 6px; 
}
.numbers-list p{
    font-size: 14px;
    line-height: 24px; 
    color: #000000;    
    margin-bottom: 0;
}
.warning-block{
    padding: 12px 30px; 
    background: #DCCEBB;   
    font-size: 15px;
    line-height: 24px; 
    color: #000000;   
    margin-bottom: 55px;  
}

.article-page .breadcrumbs{
    padding: 25px 0;
    margin-bottom: 25px;
}

.article-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 90px;
}

.article-page h1{
    font-size: 44px;
    line-height: 1.2; 
    color: #000000;
    font-weight: 500;
    margin-bottom: 35px;
}
.article-page h2{
    font-size: 36px;
}
.article-page h3{
    font-size: 26px;
}
.article-page h4{
    font-size: 20px;
}
.article-page h5{
    font-size: 18px;
}
.article-page h2,
.article-page h3,
.article-page h4,
.article-page h5{
    margin-bottom: 25px;
    line-height: 1.2; 
    color: #000000;
    font-weight: 500;    
}
.article-page .article-image{
    width: 58%;
    font-size: 0;
}
.article-page .article-text{
    width: 40%;
    padding-right: 25px;
    font-size: 20px;
    line-height: 150%; 
    color: #000000;
    
}
.article-page p{
    font-size: 15px;
    line-height: 150%; 
    color: #433623;    
    margin-bottom: 30px;
} 
.article-row.left{
    flex-direction: row-reverse;
}
.article-row.left .article-text{
    text-align: right;
    padding-right: 0;
    padding-left: 25px;
}
.article-page p + .discount-num{
    margin-top: 0;
}
.discount-num{
    margin-top: 30px;
}

.discount-num .number{
    font-size: 60px;
    line-height: 1; 
    color: #876B46;
    margin-bottom: 10px;
}
.discount-num p{
    margin-bottom: 0;
    font-size: 22px;
    line-height: 32px;
    color: #000000;    
}
.article-warning{
    padding: 12px 16px; 
    background: #DCCEBB;
    font-size: 16px;
    line-height: 150%;  
    color: #876B46;  
    display: inline-block;  
}
* + .article-warning{
    margin-top: 30px;
}


@media ( max-width: 1200px ){
    .article-page h1{
        font-size: 34px;
    }    
    .article-page h2{
        font-size: 28px;
    }
    .article-page h3{
        font-size: 22px;
    }
    .article-page h4{
        font-size: 18px;
    }
    .article-page h5{
        font-size: 16px;
    }
}

@media ( max-width: 767px ){
    .article-page h2,
    .article-page h3,
    .article-page h4,
    .article-page h5{
        margin-bottom: 20px;    
    }    
    .article-page p{
        margin-bottom: 20px;
    }
    .article-warning{
        margin-bottom: 10px;
    }
    .discount-num p{
        font-size: 18px;
        margin-bottom: 0;
    }
    .discount-num {
        margin-top: 25px;
    }
    .discount-num .number{
        font-size: 40px;
    }
    .article-page .breadcrumbs{
        margin-bottom: 35px;
    }
    .article-row{
        margin-bottom: 45px;
    }
    .article-page .article-text{
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 35px;
    }
    .article-page .article-image{
        width: 100%;
    }
    .article-page h1{
        font-size: 30px;
        margin-bottom: 25px;
    }    
    .article-page h2{
        font-size: 24px;
    }
    .article-page h3{
        font-size: 20px;
    }
    .article-page h4{
        font-size: 16px;
    }  
    .inner-page .title-page, .simple-page .title-page {
        margin-bottom: 30px;
    }    
    .discount-page .page-title{
        font-size: 25px;
        margin-bottom: 40px;
    }
    .discount-image{
        width: 100%;
        margin-bottom: 0;
    }
    .discount-image-text{
        width: 100%;
        padding: 25px 30px;
    }
    .discount-numbres .h4, .discount-term .h4,
    .discount-image-text .dit-title{
        font-size: 20px;
        line-height: 1.4;
    }
    .discount-row{
        margin-bottom: 35px;
    }
    .discount-term{
        width: 100%;
        margin-bottom: 15px;
    }
    .discount-numbres{
        width: 100%;
    }
    .numbers-list .number{
        font-size: 50px;
    }
    .other-news .container{
        padding: 0 20px;
    }
    .other-news .blog-row{
        margin: 0 -10px;
    }
    .other-title{
        margin-bottom: 50px;
    }
}

@media ( max-width: 480px ){
    .numbers-list li{
        width: 100%;
    }
    .numbers-list li:not(:last-child){
        margin-bottom: 15px;
    }
}