/* Slider */
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}

.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}



/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-family: 'Montserrat', sans-serif;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* base */
*{
    outline: none;
    box-sizing: border-box;
}
.container{
    width: 100%;
    margin: 0 auto;
    max-width: 1450px;
    padding: 0 20px;
    position: relative;
}
a{
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    color: #4D4040;
    transition: all 0.2s ease;
}
p, span{
    font-size: 18px;
    line-height: 1.36;
    font-weight: 600;
    color: #4D4040;
    font-family: 'Open Sans', sans-serif;
}
label{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px;
}
label input[type="checkbox"]{
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    margin: 0;
    width: 1px;
    height: 1px;
}
label input[type="radio"]{
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    margin: 0;
    width: 1px;
    height: 1px;
}
label input + span{
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(4.95deg, #8B5742 1.79%, #C88164 114.71%);
    padding: 1px;
    margin-right: 15px;
    min-width: 28px;
}
label input + span small{
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #FEFBF6;
}
label span small{
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}
label input[type="checkbox"]:checked + span::before{
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #CB5347;
}
label input[type="radio"]:checked + span::before{
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(4.95deg, #8B5742 1.79%, #C88164 114.71%);
}
form{
    width: 100%;
    max-width: 400px;
}
select{
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    position: relative;
    border-radius: 50px;
    font-size: 18px;
    padding: 18px 20px;
    border: 1px solid #D6AFB8;
    color: #4D4040;
    height: 59px;
    font-family: 'Montserrat', sans-serif;
}
form input{
    display: block;
    width: 100%;
    border-radius: 50px;
    border: 1px solid #D6AFB8;
    margin-bottom: 20px;
    padding: 18px 20px;
    color: #4D4040;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}
textarea{
    width: 100%;
    border-radius: 14px;
    border: 1px solid #D6AFB8;
    padding: 18px 20px;
    color: #4D4040;
    font-family: 'Montserrat', sans-serif;
    resize: none;
    height: 208px;
}
form input:focus{
    border: 1px solid #B7837D;
}
form input.error{
    color: #FF210B;
    border: 1px solid #FF210B;
}
form input::placeholder{
    color: #6E6465;
}
form input.error::placeholder{
    color: #FF210B;
}
form button.btn{
    width: 100%;
    max-width: 100%;
}
h1{
    font-size: 34px;
    line-height: 1.3;
    margin-top: 12px;
    width: 100%;
    max-width: 570px;
    font-weight: 700;
    color: #4F3537;
    margin-bottom: 37px;
    font-family: 'Montserrat', sans-serif;
}
h2{
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    max-width: 856px;
    margin: 0 auto 24px;
    font-weight: 600;
    color: #4F3537;
}
h2 span{
    color: #4D4040;
    font-size: 40px;
}
h2 .brown{
    color: #4F3537;
    display: block;
}
div{
    font-family: 'Montserrat', sans-serif;
}
h3{
    font-size: 38px;
    text-align: center;
    color: #97453D;
    margin-bottom: 50px;
    line-height: 1.3;
}
body{
    background-color: #FEFBF6;
}
.btn{
    display: inline-flex;
    width: 100%;
    max-width: 290px;
    padding: 15px 5px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(5deg, #8B5742 1.79%, #C88164 114.71%);
    border-radius: 50px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.btn:hover{
    background: linear-gradient(5deg, #714535 1.79%, #BA7356 114.71%);
    box-shadow: 0px 6px 26px 0px rgba(134, 84, 64, 0.60);
}
.btn img{
    margin-left: 10px;
}
.breadcrumbs li{
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    color: #6E6465;
}
.breadcrumbs li a{
    color: #6E6465;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
    cursor: pointer;
    color: transparent;
    border: none;
    background-color: transparent;
    width: 42px;
    height: 42px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.slick-next{
    right: -65px;
    background-image: url('../img/slick-next.svg');
}
.slick-next:hover{
    background-image: url('../img/slick-next-hover.svg');
}
.slick-prev{
    left: -65px;
    background-image: url('../img/slick-prev.svg');
}
.slick-prev:hover{
    background-image: url('../img/slick-prev-hover.svg');
}
.slick-slide {
    margin: 0 15px;
}
.slick-list {
    margin: 0 -15px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
}








/* Main  Styles */
header{
    padding: 10px 0 16px;
    position: fixed;
    top: 0;
    z-index: 3;
    left: 0;
    width: 100%;
    background-color: rgba(254,251,246, 0.7);
    backdrop-filter: blur(15px) saturate(150%);
}
header .logo{
    width: 100px;
}
header.fixed img[alt="logo"]{
    width: 70px;
}
header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header li{
    display: inline-block;
}
header nav{
    margin-right: 170px;
}
header nav li{
    margin-right: 50px;
}
header nav li:last-child{
    margin-right: 0;
}
header nav li a{
    font-size: 20px;
}
header nav li a:hover{
    color: #97453D;
}
header .langs{
    margin-right: 50px;
    display: flex;
    align-items: center;
}
header .langs li:nth-child(3){
    order: -1;
}
header .langs li:nth-child(4){
    order: 3;
}
header .langs li:nth-child(2){
    order: 4;
}
.langs li{
    margin-right: 10px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    border-radius: 4px;
    display: inline-block;
}
.langs a{
    display: inline-block;
    width: 36px;
    text-align: center;
    background: #F6EDE4;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 36px;
    font-weight: 400;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}
.langs li.active{
    border: 1px solid #97453D;
}
.langs li:hover{
    border: 1px solid #97453D;
}
.langs li.active a{
    color: #97453D;
}
header .cart{
    position: relative;
}
header .cart span{
    display: none;
}
header .cart.active span{
    display: block;
    position: absolute;
    right: -18px;
    top: -17px;
    width: 28px;
    height: 28px;
    background: linear-gradient(5deg, #8B5742 1.79%, #C88164 114.71%);
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 50%;
    line-height: 28px;
}
header .cart.active svg path{
    fill: #8B5742;
}


.first{
    position: relative;
    background-repeat: no-repeat;
    background-position: center 180px;
    background-image: url('../img/first_bg.svg');
    background-size: cover;
    padding-top: 215px;
    overflow: hidden;
}
.first .slogan{
    margin-right: 19px;
    margin-top: 19px;
    width: 100%;
    max-width: 444px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.first .main_foto{
    position: absolute;
    width: 100%;
    max-width: 1076px;
    right: -250px;
    top: -150px;
}
.benef_box{
    width: 100%;
    max-width: 1080px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: center;
    margin: 365px auto 103px;
}
.benef_box .item img{
    margin-bottom: 15px;
}
.benef_box .item{
    width: 100%;
}
.benef_box .item:nth-child(1){
    max-width: 177px;
}
.benef_box .item:nth-child(2){
    max-width: 179px;
}
.benef_box .item:nth-child(3){
    max-width: 247px;
}


.cakes_slider{
    margin-bottom: 100px;
}
.cakes_slider .slick-track{
    display: flex !important;
}
.cakes_slider  .slick-slide{
    height: inherit !important;
}
.cakes_slider .item{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 330px;
    border-radius: 11px;
    border: 1px solid #EFE2D5;
    background-color: #FFFCFC;
    transition: all 0.2s ease;
    position: relative;
}
.cakes_slider .item:hover{
    border: 1px solid #97453D;
    box-shadow: 0px 14px 35px 0px rgba(161, 89, 81, 0.24);
}
.cakes_slider .item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.cakes_slider .item img:hover{
    cursor: pointer;
}
.cakes_slider .item .text{
    padding: 14px 17px 23px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.cakes_slider .item .text p{
    flex-grow: 1;
}
.cakes_slider .item .btn{
    margin-top: 16px;
    font-size: 18px;
}
.cakes_slider .item .btn img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.cakes_slider .item h4{
    font-size: 24px;
    margin-bottom: 10px;
    color: #4F3537;
}
.cakes_slider .item p{
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}
.cakes_slider .item .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.cakes_slider .item .row:last-child{
    margin-bottom: 0;
}
.cakes_slider .item .row span{
    color: #97453D;
}
.cakes_slider .item .row span.weight{
    color: #4D4040;
}


.wanna_box{
    position: relative;
    padding-top: 188px;
    background-position: center top;
    background-repeat: no-repeat;
    background-image: url('../img/wanna_bg.svg');
    background-size: cover;
}
.wanna_box h3{
    margin-bottom: 57px;
}
.steps_list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 69px;
}
.steps_list .step{
    flex: 1 1 25%;
}
.steps_list .step .num{
    position: relative;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    background: linear-gradient(5deg, #8B5742 1.79%, #C88164 114.71%);
    text-align: center;
    color: #fff;
    font-size: 46px;
    line-height: 100px;
    font-weight: bold;
}
.steps_list .step .num::after{
    content: '';
    position: absolute;
    right: -185px;
    top: 48px;
    width: 104px;
    height: 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: initial;
    background-image: url('../img/dots_ico.svg');
}
.steps_list .step:last-child .num::after{
    display: none;
}
.steps_list .step h4{
    font-size: 26px;
    color: #97453D;
    margin-bottom: 10px;
    min-width: 315px;
}

.tot_samiy{
    padding-top: 125px;
}
.tot_samiy .tot_info{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}
.tot_samiy .tot_info .img_box{
    position: absolute;
    left: 210px;
    top: 55px;
    width: 100%;
    max-width: 632px;
    height: 621px;
}
.tot_samiy .tot_info .img_box::before{
    content: '';
    position: absolute;
    top: -45px;
    left: 141px;
    width: 155px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: initial;
    background-image: url('../img/tot_line1.svg');
}
.tot_samiy .tot_info .img_box::after{
    content: '';
    position: absolute;
    top: -22px;
    right: -19px;
    width: 180px;
    height: 135px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: initial;
    background-image: url('../img/tot_line2.svg');
}
.tot_samiy .tot_info .img_box img{
    width: 100%;
}
ul.dots{
    padding-left: 23px;
}
ul.dots li{
    position: relative;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.25;
    color: #4D4040;
}
ul.dots li::after{
    content: '';
    position: absolute;
    left: -22px;
    top: 5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #8B5742;
}
.tot_samiy .tot_info .left{
    width: 100%;
    max-width: 360px;
}
.tot_samiy .tot_info .left h4{
    margin-bottom: 16px;
    font-size: 20px;
}
ul.dots.small{
    margin-top: 8px;
    padding-left: 10px;
}
ul.dots.small li::after{
    left: -10px;
    top: 10px;
    width: 5px;
    height: 5px;
}
.tot_samiy .tot_info .right{
    width: 100%;
    max-width: 538px;
    padding-top: 35px;
}

.want_form{
    position: relative;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-image: url('../img/form_bg.svg');
    background-size: cover;
    padding-top: 402px;
    padding-left: 120px;
    padding-bottom: 250px;
}
.want_form .container{
    position: relative;
}
.want_form h2{
    text-align: left;
    margin: initial;
    margin-bottom: 10px;
}
.want_form form{
    padding-top: 40px;
    
}
.want_form form .btn{
    margin-bottom: 20px;
}
.want_form form p{
    color: #6E6465;
}
.want_form .right_girl{
    position: absolute;
    bottom: -113px;
    right: 230px;
    width: 100%;
    max-width: 510px;
}
.want_form .right_girl img{
    width: 100%;
}

.history{
    position: relative;
    margin-top: -150px;
    padding-top: 215px;
    padding-bottom: 194px;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-image: url('../img/history_bg.svg');
}
.history .container{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.history .left_girl{
    position: absolute;
    left: 100px;
    bottom: -158px;
    width: 100%;
    max-width: 627px;
}
.history .left_girl img{
    width: 100%;
}
.history .right{
    width: 100%;
    max-width: 498px;
    margin-right: 113px;
}
.history .right h2 + img{
    margin-bottom: 24px;
}
.history .right p{
    font-size: 26px;
    text-align: center;
    margin-bottom: 42px;
}
.history .right .info_box{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    background: url('../img/info_ico.svg'),linear-gradient(5deg, #8B5742 1.79%, #C88164 114.71%);
    background-position: center;
    margin: 0 auto 15px;
    background-size: initial;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.2s ease;
}
.history .right .info_box:hover{
    background: url('../img/info_ico.svg'),linear-gradient(9deg, #704433 4.68%, #C37F64 94.17%);
    background-position: center;
    background-size: initial;
    background-repeat: no-repeat;
    box-shadow: 0px 14px 20px 0px rgba(130, 81, 62, 0.40);
}
.history .right .info_box + p{
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}


.faqs_box{
    position: relative;
    padding-top: 50px;
    padding-bottom: 60px;
}
.faqs_box h2{
    margin-bottom: 60px;
    color: #97453D;
}
.faq_list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.faq_list .col{
    flex: 1 1 48%;
    max-width: 690px;
}
.faq_list .item{
    position: relative;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #EFE2D5;
    background-color: #FFF;
    padding: 20px 77px 20px 14px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.faq_list .item:hover{
    border: 1px solid #B7837D;
}
.faq_list .item:hover p{
    color: #97453D;
}
.faq_list .item:hover .text p{
    color: #4D4040;
}
.faq_list .item.active{
    border: 1px solid #B7837D;
    color: #97453D;
}
.faq_list .item.active p{
    color: #97453D;
}
.faq_list .item.active .text p{
    color: #4D4040;
}
.faq_list .item p{
    font-family: 'Montserrat', sans-serif;
}
.faq_list .item .text{
    display: none;
    margin-top: 14px;
}
.faq_list .item .text p{
    font-weight: 300;
}
.faq_list .item::after{
    content: '';
    position: absolute;
    top: 24px;
    width: 24px;
    height: 16px;
    right: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../img/arrow_down.svg');
}
.faq_list .item.active::after{
    transform: rotate(180deg);
}


.feeds_box{
    position: relative;
    padding-top: 160px;
    padding-bottom: 117px;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url('../img/feeds_bg.svg');
}
.feeds_box h2{
    max-width: 436px;
    margin-bottom: 60px;
    color: #97453D;
}
.feeds_slider .item img{
    width: 100%;
}
/* 

.feeds_slider .slide .inside{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.feeds_slider .slide .inside .item{
    margin: 0 15px;
} */

.feeds_slider .item {
    height: 0px!important;
}

.feeds_slider .item.slick-active {
    height: 100% !important;  
}


.contacts_box{
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url('../img/contacts_bg.svg');
    padding-top: 171px;
    background-size: cover;
    padding-bottom: 110px;
}
.contacts_box h2{
    margin: initial;
    margin-bottom: 50px;
    text-align: left;
}
.contacts_box .container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.contacts_box #map{
    width: 800px;
    height: 521px;
}
.contacts_box .left{
    padding-top: 62px;
}
.contacts_box .left p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}
.contacts_box .left img{
    margin-right: 10px;
}
.soc_list{
    margin-bottom: 34px;
}
.soc_list li{
    display: inline-block;
    margin-right: 14px;
}
.contacts_box .btn img{
    margin: 0 0 0 10px;
}

footer{
    border-top: 1px solid #B7837D;
    padding: 40px 0;
}
footer .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer a{
    font-size: 16px;
    transition: all 0.2s ease;
}
footer a:hover{
    color: #97453D;
}
.category{
    position: relative;
}
.float{
    position: absolute;
}
.float1{
    left: 0;
    top: 515px;
    width: 130px;
    height: 211px;
}
.float2{
    right: 0;
    top: 110px;
    width: 162px;
    height: 205px;
}
.float3{
    right: 0;
    top: 786px;
    width: 119px;
    height: 193px;
}
.float4{
    left: 0;
    top: 1096px;
    width: 190px;
    height: 222px;
}
.float5{
    left: 0;
    top: -110px;
    width: 90px;
    height: 262px;
    object-fit: contain;
}
.float6{
    right: 0;
    top: 1786px;
}
.float7{
    right: 0;
    bottom: -100px;
    width: 90px;
    height: 202px;
    object-fit: contain;
}
.float8{
    right: 0;
    bottom: -130px;
}
.float9{
    right: 0;
    bottom: -220px;
    width: 150px;
    height: 273px;
    object-fit: contain;
}
.float10{
    left: 0;
    top: 168px;
    width: 128px;
    height: 192px;
    z-index: 1!important;
}
.float11{
    left: 0;
    top: 620px;
    width: 181px;
    height: 273px;
}
.float12{
    left: 23px;
    bottom: -200px;
    width: 208px;
    height: 208px;
}
.float13{
    right: 0px;
    top: 613px;
    width: 189px;
    height: 246px;
}
.float14{
    right: 0px;
    top: 1130px;
    width: 135px;
    height: 154px;
}
.float15{
    left: 0px;
    bottom: 114px;
    width: 188px;
    height: 300px;
}
.float16{
    right: 0px;
    bottom: 318px;
    width: 299px;
    height: 396px;
}
.float17{
    left: 0px;
    bottom: 77px;
    width: 167px;
    height: 186px;
    z-index: 1!important;
}
.float18{
    right: 24px;
    bottom: 122px;
    width: 224px;
    height: 288px;
    z-index: 1!important;
}
.float19{
    right: 0;
    top: 219px;
    width: 90px;
    object-fit: contain;
    height: 288px;
}
.float20{
    left: 0;
    top: 461px;
    width: 103px;
    height: 150px;
}
.float21{
    left: 0;
    top: 121px;
    width: 198px;
    height: 199px;
}
.float22{
    right: 0;
    bottom: 17px;
    width: 150px;
    object-fit: contain;
    height: 275px;
}
.float23{
    right: 0;
    top: 217px;
    width: 186px;
    height: 205px;
}
.float24{
    left: 0;
    bottom: 100px;
    width: 196px;
    height: 275px;
}
.his_wrap{
    cursor: pointer;
}


/* popups */
.popup_box{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(101, 96, 95, 0.80);
    display: none;
}
.popup_box .popup{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    background: #FEFBF6;
    padding: 30px 40px;
    box-shadow: 0px 18px 40px 0px rgba(59, 39, 37, 0.50);
    max-height: 90vh;
    max-width: 90vw;
    overflow: auto;
}
.popup_box[data-id="history"] .popup{
    width: 100%;
    max-width: 1050px;
    padding-bottom: 76px;
    padding-top: 40px;
}
.popup_box[data-id="history"] .popup::before{
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 99px;
    height: 97px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/hist_float1.svg');
}
.popup_box[data-id="history"] .popup::after{
    content: '';
    position: absolute;
    right: 0px;
    bottom: 10px;
    width: 106px;
    height: 135px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/hist_float2.png');
}
.popup_box[data-id="thanks"] .popup{
    width: 100%;
    max-width: 452px;
    padding: 118px 38px;
    text-align: center;
}
.popup_box[data-id="thanks"] h4{
    color: #97453D;
    margin-bottom: 10px;
    font-size: 26px;
}
.popup_box[data-id="thanks"] .popup::before{
    content: '';
    position: absolute;
    left: 11px;
    top: 24px;
    width: 87px;
    height: 87px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/thanks_float1.svg');
}
.popup_box[data-id="thanks"] .popup::after{
    content: '';
    position: absolute;
    right: 23px;
    bottom: 14px;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/thanks_float2.svg');
}

.popup_box[data-id="fast_form"] .popup{
    width: 100%;
    max-width: 540px;
    padding-top: 60px;
}
.popup_box[data-id="fast_form"] .popup::before{
    content: '';
    position: absolute;
    left: 0;
    top: 66px;
    height: 87px;
    width: 87px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/pop_form_float1.svg');
}
.popup_box[data-id="fast_form"] .popup h2{
    font-size: 26px;
    margin-bottom: 20px;
}
.popup_box[data-id="fast_form"] .popup form{
    margin: 0 auto;
}
.popup_box[data-id="fast_form"] .popup form p{
    text-align: center;
    color: #6E6465;
}
.popup_box[data-id="fast_form"] .popup form button{
    margin-bottom: 20px;
}


.popup_box[data-id="basket"] .popup{
    width: 100%;
    max-width: 896px;
}
.popup_box[data-id="basket"] .popup h2{
    font-size: 26px;
    margin-bottom: 27px;
}

.close_pop{
    width: 32px;
    height: 32px;
    position: absolute;
    right: 30px;
    top: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/close_pop.svg');
    cursor: pointer;
}
.history_pop_img{
    display: block;
    width: 100%;
    max-width: 282px;
    margin: 0 auto 15px;
}

.basket_rows{
    margin-bottom: 16px;
}
.basket_rows .row{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #B7837D;
}
.basket_rows .row .side{
    display: flex;
    align-items: flex-start;
}
.basket_rows .row .side:first-child{
    width: 100%;
    max-width: 733px;
}
.basket_rows .row .side:last-child{
    align-items: center;
    position: relative;
}
.basket_rows .row:last-of-type{
    border-bottom: none;
}
.basket_rows .row .img_box{
    width: 120px;
    min-width: 120px;
    height: 120px;
    border-radius: 6px;
    margin-right: 15px;
}
.basket_rows .row .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.basket_rows .row .text .name{
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}
.basket_rows .row .text p{
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}
.basket_btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btn.order{
    background: linear-gradient(5.85deg, #754837 2.47%, #AC6B50 102.61%);
    color: #97453D;
    padding: 2px;
}
.btn.order span{
    background: #FEFBF6;
    border-radius: 50px;
    display: block;
    line-height: 46px;
    height: 46px;
    width: 100%;
}
.quantity_sel{
    border: 1px solid #B7837D;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 126px;
    height: 42px;
    line-height: 42px;
    margin-right: 40px;
}
.quantity_sel .min{
    color: #B7837D;
    font-size: 20px;
    width: 32px;
    padding: 5px 0 9px;
    cursor: pointer;
    text-align: center;
    border-right: 1px solid #B7837D;
    line-height: 1.36;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    min-width: 32px;
    background: transparent;
    border-radius: 0;
}
.quantity_sel .numb{
    font-size: 18px;
    line-height: 1.36;
    font-weight: 600;
    color: #4D4040;
    font-family: 'Open Sans', sans-serif;
    padding: 0;
    margin-bottom: 0;
    border: none;
    background-color: transparent;
    height: 42px;
    line-height: 42px;
    text-align: center;
}
.quantity_sel .plus{
    color: #4D4040;
    font-size: 20px;
    width: 32px;
    padding: 5px 0 9px;
    cursor: pointer;
    text-align: center;
    border-left: 1px solid #B7837D;
    line-height: 1.36;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    min-width: 32px;
    background: transparent;
    border-radius: 0;
}
.basket_rows .total_box{
    position: relative;
    min-width: 110px;
    text-align: right;
}
.basket_rows .total_box .price{
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    min-width: max-content;
}
.basket_rows .del{
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/del_ico.svg');
    cursor: pointer;
    background-color: transparent;
    border: none;

}
.basket_rows .total_num{
    text-align: right;
    font-size: 26px;
    color: #97453D;
    margin-top: -20px;
}


/* basket page */
.basket_page{
    position: relative;
}
.basket_page.empty{
    padding-bottom: 221px;
}
.basket_page::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100px;
    height: 273px;
    background-image: url('../img/basket_float1.svg');
}
.basket_page::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 310px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 130px;
    height: 211px;
    background-image: url('../img/basket_float2.svg');
}
.basket_page header, .order_page header{
    position: relative;
    margin-bottom: 34px;
}
.basket_page h1{
    margin-top: 33px;
    margin-bottom: 30px;
    max-width: 100%;
    font-size: 40px;
    text-align: center;
}
.basket_page.empty h1{
    margin-top: 122px;
}
.basket_page h1 + p{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 48px;
}

.body_str{
    display: flex;
    flex-direction: column;
}
.btn.centered{
    margin: 0 auto;
}
.order_page h1{
    max-width: 100%;
    text-align: center;
    margin-top: 33px;
    margin-bottom: 60px;
}
.order_box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 70px;
}
.order_box .left{
    width: 100%;
    max-width: 536px;
}
.order_box h5{
    font-size: 26px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 27px;
    color: #4D4040;
}
.order_box h6{
    margin-top: 50px;
    margin-bottom: 27px;
    font-size: 26px;
    color: #4D4040;
}
.date_box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    max-width: 380px;
}

.date_box .date_wrap{
    position: relative;
    width: 100%;
}
.date_box .date_wrap input{
    margin-bottom: 0;
    cursor: pointer;
    height: 59px;
}
.date_box .date_wrap::after{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: 20px;
    top: 19px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/date_ico.svg');
}
.date_box .time_wrap{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    font-size: 18px;
    height: 59px;
}
.date_box .time_wrap::after{
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    right: 17px;
    top: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/time_ico.svg');
}
.city_wrap{
    position: relative;
    margin-bottom: 20px;
    max-width: 380px;
    display: none;
}
.city_wrap.active{
    display: block;
}
.order_box form{
    max-width: 100%;
}
.order_box form input{
    max-width: 400px;
    margin-bottom: 0;
}
.order_box textarea{
    margin-bottom: 50px;
    max-width: 480px;
}
.order_box form button.btn{
    max-width: 400px;
    margin-top: 30px;
}
.order_page main{
    padding-bottom: 150px;
}
.burger{
    display: none;
}
h2.h2_modded{
    display: flex;
    flex-direction: column;
    align-items: center;
}
h2.h2_modded span{
    font-size: 38px;
    text-align: center;
    color: #97453D;
    margin-bottom: 50px;
}
.langs li a.active{
    border: 1px solid #97453D;
}
.langs li a.active{
    color: #97453D;
}
.soc_list a{
    display: inline-flex;
}
.basket_page main{
    padding-bottom: 133px;
    min-height: calc(100vh - 285px);
}
.basket_page.empty{
    padding-bottom: 221px;
}
*{
    user-select: none;
}
.mobile_menu_box{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(101, 96, 95, 0.80);
    z-index: 9;
}
.mobile_menu_box .mobile_menu{
    width: 100%;
    max-width: 245px;
    background: #FEFBF6;
    border-radius: 0 0 10px 0;
}
.mobile_menu_box .mobile_menu .top{
    padding: 30px 19px 24px 20px;
}
.mobile_menu_box .mobile_menu .logo_box{
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile_menu_box .mobile_menu .logo_box img{
    max-width: 70px;
}
.mobile_menu_box .mobile_menu .logo_box .close_menu{
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/close_pop.svg');
    cursor: pointer;
}
.mobile_menu_box .mobile_menu ul li{
    font-size: 14px;
    margin-bottom: 10px;
}
.mobile_menu_box .mobile_menu ul li:nth-child(2){
    order: 4;
}
.mobile_menu_box .mobile_menu ul li:nth-child(4){
    order: 3;
}
.mobile_menu_box .mobile_menu ul li:nth-child(3){
    order: -1;
}
.cart_mob{
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    margin-top: 25px;
}
.cart_mob p{
    font-size: 14px;
    margin-right: 6px;
    font-family: Montserrat;
    font-weight: 400;
}
.mobile_menu .langs{
    margin-bottom: 24px;
    display: flex;
}
.mobile_menu .langs li a{
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
}
.mobile_menu .langs li.active a{
    font-weight: 600;
}
.cont_menu_box p{
    font-size: 12px;
    font-family: Montserrat;
    font-weight: 400;
}
.cont_menu_box p img{
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
.cont_menu_box .soc_list{
    margin-top: 10px;
    margin-bottom: 0;
}
.cont_menu_box .soc_list img{
    width: 24px;
    height: 24px;
}
.policy_mob{
    border-top: 1px solid #B7837D;
    padding: 14px 20px 30px 21px;
}
.policy_mob p{
    font-size: 12px;
    margin-bottom: 8px;
}
.policy_mob p:last-child{
    margin-bottom: 0;
}
.policy_mob p a{
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.langs_mobile{
    display: none;
}
.your_order{
    width: 100%;
    max-width: 558px;
    border-radius: 10px;
    background: #F6EDE4;
    padding: 20px;
}
.your_order h5{
    font-size: 26px;
    color: #4D4040;
    margin-bottom: 29px;
}
.your_order .basket_rows .row .img_box{
    width: 100px;
    height: 100px;
    min-width: 100px;
}
.your_order .basket_rows .row .text .name{
    font-size: 18px;
}
.your_order .basket_btns{
    justify-content: flex-end;
}
.your_order .basket_btns .btn{
    padding: 15px 20px;
    font-weight: bold;
}
.your_order .basket_rows{
    margin-bottom: 24px;
}
section.inner{
    padding-top: 184px;
    min-height: calc(100vh - 110px);
    padding-bottom: 106px;
}
section.inner h1{
    text-align: center;
    max-width: 100%;
}
section.inner .breadcrumbs{
    margin-bottom: 57px;
}
section.inner .success_box{
    width: 100%;
    max-width: 400px;
    margin: 0 auto 156px;
    text-align: center;
}
section.inner .success_box .icon{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #12A229;
    margin: 0 auto 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/ok_icon.svg');
}
section.inner .success_box .icon.error{
    background-color: #FF210B;
    background-image: url('../img/error_ico.svg');
}
section.inner .success_box h1{
    font-size: 26px;
    color: #4F3537;
    margin-bottom: 36px;
}
section.inner .success_box h2{
    color: #97453D;
    font-size: 26px;
    margin-bottom: 10px;
}
section.inner .success_box .btn{
    margin: 40px auto 0;
    max-width: 400px;
    padding: 18px 20px;
}
section.inner p{
    margin-bottom: 10px;
    font-family: Montserrat;
    font-weight: 500;
}


.ui-widget.ui-widget-content{
    border: 1px solid #B7837D;
    border-radius: 6px;
}
.ui-widget-header{
    background-color: #F6EDE4;
}
.ui-datepicker th span{
    color: #D44C3E;
}
.ui-state-default, .ui-widget-content .ui-state-default{
    background: #FEFBF6;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight{
    color: #D44C3E;
    border: 1px solid #D6AFB8;
}
.ui-state-active, .ui-widget-content .ui-state-active{
    color: #D44C3E;
    border: 1px solid #D44C3E;
}
.ui-state-disabled, .ui-widget-content .ui-state-disabled span{
    font-size: 14.4px;
}


.select2-container{
    height: 59px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    height: 59px;
    line-height: 59px;
}
.select2-container--default .select2-selection--single{
    border: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    display: none;
}
.select2-container--default .select2-selection--single{
    background: transparent;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    padding-left: 20px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    border: 1px solid #D6AFB8;
    border-radius: 50px;
    background: #fff;
}
.select2-container--open .select2-dropdown--below{
    border: 1px solid #B7837D;
    border-radius: 6px;
}
.select2-results__option{
    border-bottom: 1px solid #DCCCCB;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background-color: #F6EDE4;
    color: #4D4040;
    font-weight: bold;
}
.select2-container--default .select2-results__option--selected{
    color: #D44C3E;
    font-weight: bold;
    background-color: #F6EDE4!important;
}

.logo img{
    max-width: 100%;
}
.basket_page.empty {
    padding-bottom: 0;
}
.order_page.empty main{
    min-height: 69vh;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.basket_page.empty .btn{
    margin-bottom: 70px;
}

.popup_box_basket .text_desc,.popup_box_basket .price_item_own,.popup_box_basket .name+p,.popup_box_basket .basket_rows .row span{
    display: none;
}

.basket_wrapper_own{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.basket_wrapper_own .basket_rows,.basket_wrapper_own .basket_btns{
    width: 100%;
}

.btn.centered{
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 320px;
}
.count_p{
    min-width: max-content;
}
.langs_mobile .hid_list li.active{
    display: none;
}
.langs_mobile .hid_list.active{
    display: flex;
    flex-direction: column;
}
.langs_mobile .hid_list li:nth-child(2){
    order: 5;
}
.langs_mobile .hid_list li:nth-child(3){
    order: 4;
}
.map_box{
    width: 100%;
    max-width: 800px;
}

.map_box .map_img{
    width: 100%;
}

.map_img_mob{
    display: none;
    width: 100%;
}

.order_box form .error_p{
    color: red;
    font-size: 12px;
    margin-bottom: 10px;
    padding-left: 20px;
    margin-top: 10px;
}

.select2-hidden-accessible{
    width: 100%!important;
    height: 100%!important;
}
.iti--allow-dropdown{
    display: block;
    margin-bottom: 20px;
}

.date_box .error_p{
    margin-top: 10px;
}
.iti--separate-dial-code .iti__selected-flag, .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{
    background: none;
}
.iti__selected-flag{
    padding: 0 6px 0 12px;
}
.iti__flag-container .iti__arrow{
    display: none;
}
.form_input{
    margin-bottom: 20px;
}
.form_input input{
    margin-bottom: 0px;
}
p.error{
    margin-bottom: 0!important;
    margin-left: 20px;
    margin-top: 10px;
    text-align: left;
    color: #FF210B!important;
    font-size: 15px;
}
.iti__selected-flag{
    max-height: 60px;
}
.select2-hidden-accessible.error .select2-selection__rendered{
    border: 1px solid #FF210B;
    color: #FF210B;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    font-size: 18px;
}
.text_input{
    margin-bottom: 20px;
}
.text_input.error{
    margin-bottom: 10px;
}
.text_input.error + p.error_p{
    margin-bottom: 20px;
}




/* Adaptive */

@media screen and (max-width: 1920px){
    .want_form, .history{
        background-size: initial;
    }
}
@media screen and (max-width: 1580px){
    .float24{
        width: 100px;
        object-fit: contain;
    }
    .float14{
        top: 1330px;
    }
    .float2{
        display: none;
    }
    .first .main_foto{
        right: -100px;
    }
    .steps_list{
        gap: 45px;
    }
    .cakes_slider, .feeds_slider{
        padding: 0 50px;
    }
    .slick-prev{
        left: 0;
    }
    .slick-next{
        right: 0;
    }
    .float{
        z-index: -1;
    }
    .want_form{
        overflow: hidden;
    }
    .want_form .right_girl{
        right: 14%;
    }
    .history{
        background-size: initial;
    }
}
@media screen and (max-width: 1440px){
    .steps_list .step h4{
        min-width: initial;
    }
    .first .main_foto{
        max-width: 900px;
    }
    .tot_samiy .tot_info .img_box{
        max-width: 450px;
        left: 310px;
    }
    .tot_samiy .tot_info .img_box::before{
        left: 20px;
    }
    .float14{
        opacity: 0.2;
    }
    .container{
        padding: 0 30px;
    }
    .tot_samiy{
        padding-top: 120px;
    }
    
    
}
@media screen and (max-width: 1365px){
    .want_form .right_girl{
        right: 10%;
    }
    .first .main_foto{
        max-width: 55vw;
        top: -100px;
    }
    header nav{
        margin-right: 80px;
    }
    h1{
        font-size: 28px;
    }
    h2{
        font-size: 36px;
    }
    h2 span{
        font-size: 36px;
    }
    h3{
        font-size: 36px;
    }
    .steps_list .step h4{
        font-size: 24px;
    }
    .steps_list .step h4{
        font-size: 22px;
    }
    .tot_samiy .tot_info .right{
        max-width: 450px;
    }
    .steps_list .step .num::after{
        right: -160px;
    }
}
@media screen and (max-width: 1280px){
    .want_form .right_girl{
        right: 6%;
    }
    .benef_box{
        margin-top: 250px;
    }
    .history .right{
        margin-right: 0;
    }
    .history .left_girl{
        left: 50px;
    }
    .feeds_box{
        padding-bottom: 150px;
    }
    .tot_samiy .tot_info .right{
        max-width: 350px;
    }
    .tot_samiy .tot_info .img_box{
        left: 200px;
    }
}
@media screen and (max-width: 1140px){
    .want_form .right_girl{
        right: 0;
    }
    section.inner_mod{
        padding-top: 130px;
        padding-bottom: 0;
    }
}
@media screen and (max-width: 1024px){
    .date_box .date_wrap input{
        height: 46px;
    }
    .basket_rows .total_box{
        min-width: initial;
    }
    .count_p{
        font-size: 12px;
    }
    .select2-container .select2-selection--single .select2-selection__rendered{
        font-size: 12px;
    }
    .iti__selected-flag{
        max-height: 46px;
    }
    .date_box .time_wrap::after{
        top: 9px;
    }
    .date_box .date_wrap::after{
        top: 14px;
    }
    select{
        padding: 15px;
        font-size: 12px;
    }
    .select2-container{
        height: 46px;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered{
        height: 46px;
        line-height: 46px;
    }
    .history .right .info_box:hover{
        background-size: 27px, contain;
    }
    .float20{
        display: none;
    }
    ul.dots.small li::after{
        top: 6px;
    }
    .faqs_box h2{
        font-size: 22px;
        margin-bottom: 30px;
    }
    .faqs_box h2 span{
        font-size: 22px;
    }
    .feeds_box h2{
        font-size: 22px;
    }
    .feeds_box h2 span{
        font-size: 22px;
    }
    .float9,.float7{
        bottom: -50px;
    }
    .float19,.float22{
        display: none;
    }
    .contacts_box .soc_list li{
        margin: 0 14px;
    }
    .contacts_box .soc_list li a img{
        margin-right: 0;
    }
    .history h2{
        font-size: 22px;
        margin-bottom: 5px;
    }
    .float7{
        display: none;
    }
    .float5{
        display: none;
        left: -20px;
    }
    .float15{
        z-index: 2;
        bottom: 250px;
    }
    .cakes_slider .item .btn{
        margin: 16px auto 0;
        max-width: 100%;
        padding: 12px 14px;
        font-size: 14px;
    }
    .breadcrumbs li{
        font-size: 12px;
    }
    section.inner .success_box .btn{
        max-width: 231px;
    }
    .success_box p{
        font-size: 14px;
    }
    section.inner .success_box h2{
        font-size: 20px;
    }
    section.inner .success_box h1{
        font-size: 20px;
    }
    section.inner .success_box .icon{
        width: 50px;
        height: 50px;
        background-size: 22px;
    }
    .order_box h5,.order_box h6{
        font-size: 20px;
    }
    .order_box .left{
        margin: 0 auto;
    }
    .order_box .your_order{
        margin: 0 auto 30px;
    }
    .order_box{
        padding-left: 0;
        flex-direction: column-reverse;
    }
    .basket_rows .row .side:first-child{
        padding-right: 15px;
    }
    .basket_rows .row .text p{
        font-size: 14px;
    }
    .popup_box[data-id="basket"] .popup{
        padding-left: 15px;
        padding-right: 15px;
    }
    .quantity_sel{
        margin-right: 30px;
    }
    .close_pop{
        right: 15px;
        top: 15px;
    }
    .popup_box[data-id="history"] .popup{
        padding: 55px 20px 15px;
    }
    .popup_box[data-id="history"] .popup::after{
        display: none;
    }
    .popup_box[data-id="history"] .popup li{
        font-size: 12px;
    }
    .popup_box[data-id="history"] .popup::before{
        display: none;
    }
    .popup_box .popup{
        max-width: 95vw!important;
    }
    .history{
        padding-top: 110px;
        margin-top: -220px;
        padding-bottom: 140px;
    }
    .steps_list .step .num::after{
        width: 44px;
        right: -80px;
        top: 26px;
        background-size: contain;
        background-image: url('../img/dots_ico_mob.svg');
    }
    .tot_samiy{
        padding-top: 60px;
    }
    .steps_list .step p{
        font-size: 12px;
    }
    .cakes_slider .item{
        min-width: 211px;
    }
    .benef_box .item img{
        max-width: 40px;
    }
    .benef_box .item p{
        font-size: 12px;
    }
    .faq_list .item p{
        font-size: 13px;
        font-weight: 500;
    }
    .contacts_box .left p{
        justify-content: center;
    }
    .contacts_box #map{
        width: 100%;
        height: 210px;
    }
    .contacts_box .btn{
        padding: 12px 25px;
        max-width: fit-content;
        margin: 0 auto;
    }
    .contacts_box .left{
        margin: 0 auto 30px;
        text-align: center;
    }
    .contacts_box h2{
        font-size: 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    .feeds_box{
        padding-top: 64px;
        padding-bottom: 50px;
    }
    .contacts_box{
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .contacts_box .container{
        flex-direction: column;
    }
    .faq_list .item{
        margin-bottom: 10px;
    }
    .faq_list .col{
        flex: 1 1 100%;
        max-width: 100%;
    }
    .history .right .info_box{
        width: 60px;
        height: 60px;
        line-height: 60px;
        background-size: 27px, contain;
        margin-bottom: 8px;
    }
    .tot_samiy .tot_info .right{
        max-width: 310px;
        margin: 0 auto;
    }
    .tot_samiy .tot_info .img_box::before{
        transform: rotate(45deg);
        left: initial;
        right: 100px;
    }
    .tot_samiy .tot_info .img_box::after{
        top: initial;
        bottom: -100px;
        left: 50px;
        background-image: url('../img/tot_line3.svg');
    }
    .tot_samiy .tot_info .left h4{
        font-size: 16px;
    }
    .tot_samiy .tot_info .left li{
        font-size: 12px;
        margin-bottom: 3px;
    }
    .want_form{
        padding-top: 63px;
        padding-left: 0;
        padding-bottom: 400px;
        z-index: 2;
    }
    .want_form .right_girl{
        max-width: 243px;
        bottom: -249px;
        right: 18px;
    }
    .want_form .right_girl img{
        max-width: 100%;
    }
    .history .left_girl{
        max-width: 320px;
        bottom: -76px;
    }
    .history .right h2 + img{
        display: block;
        width: 170px;
        margin: 0 auto 6px;
    }
    .history .right p{
        font-size: 12px;
        max-width: 176px;
        margin: 0 auto 25px;
        font-family: Montserrat;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
    }
    .history .right .info_box + p{
        font-family: Montserrat;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
    }
    .history .left_girl img{
        width: 100%;
    }
    .float18{
        right: initial;
        left: 0;
        bottom: initial;
        top: 80px;
    }
    .float17{
        left: initial;
        right: 0;
        bottom: 90px;
        transform: rotate(180deg);
    }
    .want_form h2{
        font-size: 20px;
        text-align: center;
        margin-bottom: 12px;
        max-width: 100%;
    }
    .want_form h2 + p{
        font-size: 12px;
        text-align: center;
    }

    .want_form form{
        margin: 0 auto;
    }
    .want_form .container{
        padding: 0 15px;
    }
    form input{
        margin-bottom: 8px;
        padding: 15px;
        font-size: 12px;
    }
    .want_form form{
        padding-top: 30px;
    }
    .want_form form .btn{
        margin-bottom: 8px;
    }
    form button.btn{
        font-size: 14px;
    }
    .want_form form p{
        font-size: 12px;
        text-align: center;
    }
    .tot_samiy .tot_info .left{
        max-width: 300px;
        margin: 0 auto ;
    }
    .tot_samiy .tot_info{
        flex-direction: column;
    }
    .tot_samiy .tot_info .img_box{
        position: relative;
        left: initial;
        top: initial;
        margin: 0 auto 65px;
        height: auto;
    }
    .faq_list{
        gap: 0;
    }
    footer{
        padding: 28px 0;
    }
    footer .container{
        flex-direction: column;
    }
    footer a{
        margin-top: 10px;
        display: block;
    }
    .float{
        max-width: 50px;
        object-fit: contain;
        height: auto;
    }
    .tot_samiy .tot_info .right li{
        font-size: 12px;
    }
    .wanna_box{
        padding-top: 100px;
        background-size: contain;
    }
    .steps_list .step h4{
        font-size: 16px;
        line-height: 1.3;
    }
    .steps_list .step:nth-child(2n) .num::after{
        display: none;
    }
    .steps_list .step{
        flex: 1 1 40%;
        max-width: 150px;
        min-width: 150px;
    }
    .steps_list .step .num{
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin-bottom: 14px;
        font-size: 32px;
    }
    .steps_list{
        flex-wrap: wrap;
        gap: 20px;
        max-width: 340px;
        margin: 0 auto ;
    }
    .benef_box{
        margin-top: 74px;
        margin-bottom: 50px;
    }
    .first .main_foto{
        position: initial;
        display: block;
        margin: 0 auto;
    }
    h2{
        font-size: 18px;
    }
    h2 span{
        font-size: 18px;
    }
    h3{
        font-size: 26px;
        margin-bottom: 34px;
    }
    .wanna_box h3{
        margin-bottom: 44px;
    }
    header .cart.active span{
        width: 18px;
        height: 18px;
        font-size: 10px;
        line-height: 18px;
        right: -9px;
        top: -9px;
    }
    .first{
        padding-top: 162px;
        background-position: center 480px;
        background-size: contain;
    }
    .first_name_img{
        display: block;
        max-width: 282px;
        margin: 0 auto 7px;
    }
    .first h1{
        max-width: 290px;
        font-size: 18px;
        margin: 0 auto 45px;
        text-align: center;
        font-weight: 500;
    }
    .btn{
        width: 100%;
        padding: 12px 5px;
        font-size: 16px;
        max-width: 250px;
        font-weight: 500;
    }
    .basket_btns .btn_continue{
        line-height: 26px;
    }
    .first .btn{
        display: flex;
        margin: 0 auto 14px;
        max-width: fit-content;
        padding: 12px 25px;
    }
    .first .slogan{
        font-size: 13px;
        font-weight: 400;
        max-width: 275px;
        margin: 0 auto;
        text-align: center;
    }
    .first .main_foto{
        max-width: 100%;
        transform: translateX(50px) translateY(25px) scale(1.2);
    }
    .btn img{
        width: 30px;
        height: 30px;
    }
    .basket_page::before{
        width: 57px;
        height: 70px;
        left: -10px;
    }
    .basket_page h1{
        font-size: 20px;
        margin-top: 71px;
    }
    .basket_page h1 + p{
        font-size: 16px;
        margin-bottom: 32px;
    }
    .basket_page.empty .btn{
        font-size: 16px;
    }
    .basket_page::after{
        width: 73px;
        height: 95px;
        bottom: 150px;
    }
    header nav{
        display: none;
    }
    header .langs{
        display: none;
    }
    .langs_mobile{
        position: relative;
        display: block;
        border: 1px solid #97453D;
        border-radius: 4px;
        margin-right: 13px;
        padding: 8px 16px 8px 5px;
        background: #F6EDE4;
        font-size: 10px;
        cursor: pointer;
    }
    .langs_mobile.active{
        border-bottom: none;
        border-radius: 4px 4px 0 0;
    }
    .langs_mobile span{
        font-size: 10px;
        color: #97453D;
        text-transform: uppercase;
    }
    .langs_mobile::after{
        position: absolute;
        content: '';
        right: 4px;
        top: 13px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: 10px;
        height: 5px;
        background-image: url('../img/arrow_down.svg');
    }
    .langs_mobile .hid_list{
        display: none;
        position: absolute;
        top: 99%;
        left: -1px;
        background: #F6EDE4;
        width: calc(100% + 2px);
        border: 1px solid #97453D;
        border-top: none;
        border-radius: 0 0 4px 4px;
    }
    .langs_mobile .hid_list li{
        display: block;
        text-align: center;
        padding: 6px 0;
        border-top: 1px solid #EFE2D5;
    }
    .langs_mobile .hid_list li a{
        font-size: 10px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
    }
    .langs_mobile .hid_list li a:hover{
        color: #CB5347;
    }
    header .logo{
        width: 70px;
    }
    .burger{
        display: block;
        cursor: pointer;
        width: 82px;
        height: 24px;
        padding: 5px 0;
        background-repeat: no-repeat;
        background-position: left center;
        background-image: url('../img/burger.svg');
    }
    .text_input + .error_p{
        margin-top: 10px;
    }
}
@media screen and (max-width: 900px){
    .want_form .right_girl{
        bottom: -240px;
    }
    section.inner_mod{
        padding-top: 100px;
    }
}
@media screen and (max-width: 768px){
    
    .float18{
        top: 40px;
    }
    .history{
        background-position: -400px bottom;
    }
    .your_order .basket_rows .row .img_box img{
        height: 100%;
        border-radius: 6px;
    }
    .your_order .basket_rows .row .img_box{
        width: 80px;
        min-width: 80px;
        height: 119px;
    }
    .btn.order{
        margin-top: 20px;
    }
    .basket_btns{
        flex-direction: column;
    }
    .basket_rows .row .img_box{
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    .your_order .basket_rows .row .text .name{
        font-size: 14px;
    }
    .faq_list .item{
        padding: 8px 34px 8px 8px;
    }
    .faqs_box{
        padding-bottom: 0;
    }
    .faq_list .item::after{
        width: 12px;
        top: 10px;
    }
    .container{
        padding: 0 15px;
    }
    .container.tot_samiy{
        padding-top: 60px;
    }
    .history .left_girl{
        bottom: -81px;
        transform: rotate(-1deg);
        left: 0;
    }
    .history .right{
        z-index: 2;
        max-width: 270px;
        margin-right: 100px;
    }
    .cakes_slider, .feeds_slider{
        padding: 0;
    }
    .cakes_slider .slick-track{
        padding-bottom: 40px;
    }
    .cakes_slider, .feeds_slider{
        margin-bottom: 60px;
    }
    .want_form{
        padding-bottom: 500px;
    }
    .want_form .right_girl{
        bottom: -338px;
    }
    .slick-list{
        margin: 0 -6px;
    }
    .slick-slide{
        margin: 0 6px;
    }
    .cakes_slider .item h4{
        font-size: 18px;
    }
    .cakes_slider .item .text{
        padding: 14px 10px;
    }
    .cakes_slider .item .text p{
        font-size: 12px;
    }
    .cakes_slider .item .row span{
        font-size: 14px;
    }
    .popup_box[data-id="fast_form"] .popup h2{
        font-size: 20px;
    }
    .popup_box[data-id="fast_form"] .popup::before{
        display: none;
    }
    .popup_box[data-id="fast_form"] .popup form p{
        font-size: 13px;
    }
    .popup_box[data-id="fast_form"] .popup{
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 45px;
    }
    footer p{
        font-size: 14px;
        text-align: center;
    }
    footer a{
        font-size: 14px;
    }
    .basket_page.empty h1{
        margin-top: 70px;
    }
    .basket_page.empty main{
        padding-bottom: 0;
        min-height: calc(100vh - 98px - 100px);
    }
    .basket_page.empty .bask_sect{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .basket_page.empty header{
        margin-bottom: 0;
    }
    .order_page.empty main{
        min-height: calc(100vh - 138px - 100px);
    }
    .basket_rows .row .side:last-child{
        padding-top: 30px;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end;
    }
    .basket_rows .row .side:first-child{
        max-width: 100%;
        padding-right: 0;
    }
    .float14{
        display: none;
    }
}
@media screen and (max-width: 640px){
    .want_form{
        background-position: -790px bottom;
    }
    .want_form .right_girl{
        bottom: -344px;
    }
}
@media screen and (max-width: 600px){
    .history .right{
        margin-right: 50px;
    }
    .want_form{
        background-position: -835px bottom;
    }
}
@media screen and (max-width: 540px){
    .history .right{
        margin-right: 0;
    }
    .want_form{
        background-position: -885px bottom;
    }
}
@media screen and (max-width: 480px){
    .popup_box[data-id="thanks"] .popup{
        padding: 118px 10px;
    }
    .popup_box[data-id="thanks"] .popup p{
        font-size: 14px;
    }
    .tot_samiy .tot_info .img_box::before{
        top: -100px;
        right: 30px;
    }
    .want_form{
        background-position: -925px bottom;
    }
    .cakes_slider .item .btn{
        padding: 12px;
        font-size: 13px;
    }
    .basket_rows .row .text .name{
        font-size: 14px;
    }
    .your_order .basket_btns{
        flex-direction: row;
    }
    .your_order .basket_btns .btn{
        background-color: #D44C3E;
        color: #fff;
        padding: 15px 12px;
    }
    .your_order .basket_rows .row .side:last-child{
        align-items: center;
        flex-direction: column;
        padding-top: 35px;
    }
    .your_order .basket_rows .row .text p.name + p{
        display: block;
    }
    .basket_rows .row .img_box img{
        height: 100%;
        border-radius: 6px;
    }
    .basket_rows .row .img_box{
        width: 80px;
        min-width: 80px;
        height: 119px;
    }
    .basket_rows .row .side:last-child .quantity_sel{
        margin-right: 0;
        margin-top: 20px;
    }
    
    .basket_rows .row .text p.name + p{
        display: none;
    }
    .popup_box[data-id="thanks"] h4{
        font-size: 20px;
    }
    
    .basket_rows .total_num{
        font-size: 18px;
        margin-top: 10px;
    }
    .basket_rows .row .text p{
        font-size: 13px;
    }
    .basket_rows .total_box .price{
        font-size: 14px;
    }
    .popup_box[data-id="basket"] .popup{
        max-width: 95%!important;
    }
    .want_form .right_girl{
        bottom: -342px;
    }
    .feeds_box{
        padding-bottom: 0;
    }
    .tot_samiy{
        padding-top: 80px;
    }
    .history .right{
        max-width: 210px;
    }
}
@media screen and (max-width: 440px){
    .want_form{
        background-position: -1000px bottom;
    }
    .history .left_girl{
        left: -30px;
    }
    .map_box .map_img{
        display: none;
    }
    .map_img_mob{
        display: block;
        width: auto;
        max-width: 100%;
    }
}
@media screen and (max-width: 400px){
    .history .left_girl{
        left: -75px;
        bottom: -85px;
    }
    .cakes_slider .item{
        min-width: 190px;
    }
    .benef_box{
        flex-wrap: wrap;
        justify-content: center;
    }
    .benef_box .item{
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 350px){
    .want_form{
        background-position: -1100px bottom;
    }
}