@font-face {
    font-family: "Anticva";
    src: url("fonts/Anticva.eot");
    src: url("fonts/Anticva.eot?#iefix")format("embedded-opentype"),
    url("fonts/Anticva.woff2")format("woff2"),
    url("fonts/Anticva.woff")format("woff"),
    url("fonts/Anticva.ttf")format("truetype"),
    url("fonts/Anticva.svg#Anticva")format("svg");
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter.eot");
    src: url("fonts/Inter.eot?#iefix")format("embedded-opentype"),
    url("fonts/Inter.woff2")format("woff2"),
    url("fonts/Inter.woff")format("woff"),
    url("fonts/Inter.ttf")format("truetype"),
    url("fonts/Inter.svg#Inter")format("svg");
}

.fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.5);
}

.fancybox__content>.f-button.is-close-btn {
    background: #000000 !important;
    top: -17px;
    right: -17px;
    opacity: 1;
    border-radius: 17px;
}

.fancybox__content {
    border-radius: 5px;
}


* {
    box-sizing: border-box;
    font-family: Inter;
    font-weight: 400;
}

h1, h2, h3, p, ul {
    padding: 0;
    margin: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.btn-reset {
    background: none;
    border: none;
}

.container {
    max-width: 1440px;
    padding: 0 90px;
    margin:  0 auto;
}

.home {
    /*padding-top: 10px;*/
    /*padding-left: 20px;*/
    /*padding-right: 20px;*/
    min-height: 60vh;
    width: 100%;
}

.home p {
    margin-bottom: 10px;
    text-align: justify;
}

.home__header {
    position: relative;
    margin-bottom: 20px;
}

.home__header h2 {
    font-size: 24px;
    color: #3a3f4c;
}

.home__article {
    position: relative;
    margin-bottom: 20px;
}

.home__fileslist {
    position: relative;
    margin-bottom: 20px;
}

.mob-menu {
    position: fixed;
    top: 0;
    left: -320px;
    height: 100vh;
    background-color: #493639;
    width: 320px;
    z-index: 10;
    transition: left .2s ease-in-out;
}

.mob-menu_open {
    left: 0;
}

.mob-menu__header {
    display: flex;
    padding-top: 80px;
}

.mob-menu__name {
    color: #ffffff;
    font-size: 18px;
    margin: 5px auto;
}

.mob-menu__close {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    margin-left: auto;
    cursor: pointer;
}

.mob-menu__close-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: #fff;
    transition: transform .2s ease-in-out;
}

.mob-menu__close-line:nth-child(1) {
    transform: rotate(45deg);
}

.mob-menu__close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.mob-menu__close:hover > .mob-menu__close-line:nth-child(1), .mob-menu__close:active > .mob-menu__close-line:nth-child(1) {
    transform: rotate(135deg);
}

.mob-menu__close:hover > .mob-menu__close-line:nth-child(2), .mob-menu__close:active > .mob-menu__close-line:nth-child(2) {
    transform: rotate(45deg);
}

.mob-menu__list {
    margin-top: 20px;
    margin-left: 30px;
}

.mob-menu__item {
    margin-bottom: 10px;
}

.mob-menu__link {
    display: block;
    color: #ffffff;
    font-size: 18px;
    transition: text-shadow .2s ease-in-out;
}

.mob-menu__link:hover,.mob-menu__link:active  {
    text-shadow: 3px 1px 3px #ffffff;
}

.top {
    background-color: #493639;
    padding-top: 13px;
    padding-bottom: 13px;
    margin-bottom: 20px;
}

.top__container {
    display: flex;
    justify-content: right;
    align-items: center;
}

.burger {
    position: relative;
     display: none;
    width: 24px;
    height: 20px;
    cursor: pointer;
    margin-right: auto;
}

.burger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: #AB9896;
    transition: width .2s ease-in-out;
}

.burger__line:nth-child(1){
    top: 0;
}

.burger__line:nth-child(2){
    top: 6px;
}

.burger:hover > .burger__line:nth-child(2), .burger:active > .burger__line:nth-child(2){
    width: 80%;
}

.burger__line:nth-child(3){
    bottom: 6px;
}

.burger:hover > .burger__line:nth-child(3), .burger:active > .burger__line:nth-child(3){
    width: 60%;
}

.burger__line:nth-child(4){
    bottom: 0;
}

.burger:hover > .burger__line:nth-child(4), .burger:active > .burger__line:nth-child(4){
    width: 40%;
}

.top__list {
    display: flex;
    margin-right: 63px;
}

.top__space {
    margin-left: 15px;
    margin-right: 15px;
}

.top__space, .top__link {
    color: #AB9896;
}

.top__link {
    display: block;
    text-transform: uppercase;
    /*transition: text-shadow .2s ease-in-out;*/
    transition: color .2s ease-in-out;
}

.top__link:hover {
    /*text-shadow: 1px 2px 4px #bebebe;*/
    color: white;
}

.top__phone {
    color: white;
    font-size: 20px;
    font-weight: 700;
    background-image: url('../images/phone.png');
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 27px;
    transition: text-shadow .2s ease-in-out;
}

.top__phone:hover {
    text-shadow: 1px 2px 4px #bebebe;
}

.header__main {
    display: flex;
    margin-bottom: 50px;
    align-items: start;
}

.logo {
    margin-right: 15px;
}

.logo__link {
    display: block;
    font-family: Anticva;
    color: #1B1B1B;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: -1.1px;
    text-transform: uppercase;
    transition: text-shadow .2s ease-in-out;
    margin-bottom: 5px;
}

.logo__link span {
    font-family: Anticva;
    font-size: 55px;
    color: #8C6356;
}

.logo__link:hover {
    text-shadow: 1px 2px 3px #1B1B1B;
}

.logo__info {
    color: #8C6356;
    letter-spacing: -1.3px;
    line-height: 100%;
}

.geo__type {
    color: #1B1B1B;
    line-height: 100%;
    letter-spacing: -1.1px;
    text-transform: uppercase;
}

.geo__point {
    margin-left: 3px;
}

.geo__town {
    color: #8C6356;
    line-height: 100%;
    letter-spacing: -1.1px;
    text-transform: uppercase;
}

.header__control {
    display: flex;
    margin-left: auto;
}

.header__search {
    background-image: url('../images/search.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    border: 1px solid #c9c9c9;
    border-radius: 16px;
    padding: 8px 16px;
    margin-left: auto;
}

.header__search-btn {
    display: none;
    background-image: url('../images/search_mob.svg');
    background-repeat: no-repeat;
    background-position: center center;
    width: 35px;
    height: 35px;
}

.header__lk, .header__fav, .header__cart {
    display: block;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 25px;
    color: #8C6356;
    font-size: 12px;
    line-height: 100%;
}

.header__lk {
    background-image: url('../images/lk.png');
    margin-left: 96px;
}

.header__fav {
    background-image: url('../images/fav.png');
    margin-left: 20px;
}

.header__cart {
    position: relative;
    background-image: url('../images/cart.png');
    margin-left: 20px;
}

.header__cart span {
    position: absolute;
    top: -10px;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #493639;
    color: white;
}

.header_fixed {
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #493639;
}

.main_fixed {
    margin-top: 350px;
}

.header_fixed > .header__add,
.header_fixed > .header__main > .logo,
.header_fixed > .header__main > .geo,
.header_fixed > .header__main > .header__control > .header__search,
.header_fixed > .pathway {
    display: none;
}

.header_fixed > .header__main {
    margin-bottom: 10px;
}

.header_fixed > .header__top {
    margin-bottom: 0px;
}

.header_fixed > .header__main > .header__control > .header__lk {
    background-image: url(../images/lk_mob.svg);
    background-size: 55%;
    width: 30px;
    font-size: 0;
}

.header_fixed > .header__main > .header__control > .header__fav {
    background-image: url(../images/fav_mob.svg);
    background-size: 90%;
    width: 30px;
    font-size: 0;
}

.header_fixed > .header__main > .header__control > .header__cart {
    background-image: url(../images/cart_mob.svg);
    background-size: 100%;
    width: 30px;
    font-size: 0;
}

.header_fixed > .header__main > .header__control > .header__cart span {
    font-size: 12px;
    background-color: #8C6356;
    right: -10px;
}


.header_fixed .menu__link {
    color: white;
}

.header_fixed .menu__link:hover {
    color: #bebebe;
}

.menu {
    margin-bottom: 25px;
}

.menu__list {
    display: flex;
    /*justify-content: center;*/
    justify-content: space-between;
}

.menu__item {
    position: relative;
    flex: 1 0 auto;
}

/*.menu__item:not(:last-child) {*/
/*    margin-right: 20px;*/
/*}*/

.menu__link {
    display: block;
    position: relative;
    /*padding-right: 5px;*/
    padding-top: 10px;
    padding-bottom: 10px;
    /*padding-left: 5px;*/
    text-align: center;
    color: #1B1B1B;
    letter-spacing: -1px;
    text-transform: uppercase;
    /*transition: text-shadow .2s ease-in-out;*/
    transition: color .2s ease-in-out, background-color .2s ease-in-out;
}

.menu__link:hover {
    /*text-shadow: 1px 2px 3px #1B1B1B;*/
    background-color: #493639;
    color: white;
}

.menu__link::after {
    content: '';
    display: inline-flex;
    margin-left: 5px;
    margin-top: -3px;
    /*position: relative;*/
    /*top: calc(50% - 4px);*/
    /*right: 0;*/
    border: 8px solid transparent; 
	border-top: 8px solid #8C6356;
    transition: border-top .2s ease-in-out;
}

.menu__link:hover::after {
    border-top: 8px solid white;
}

.child {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    padding: 20px;
    z-index: 3;
}

.menu__open .child {
    display: block;
}

.child__item {
    margin-bottom: 5px;
}

/*.child__item:not(:last-child) {*/
/*    border-bottom: 1px solid #666666;*/
/*}*/

.child__link {
    display: block;
    padding-bottom: 5px;
    color: black;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s ease-in-out;
}

.child__link:hover {
    color: #666666;
}

.header__add {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.header__text {
    /*border: 1px solid #C9C9C9;*/
    border: 1px solid #000;
    border-radius: 15px;
    /*color: #C9C9C9;*/
    color: #000;
    font-size: 12px;
    line-height: 14px;
    padding: 9px 17px;
    text-align: center;
}

.pathway {
    margin-bottom: 25px;
}

.pathway__list {
    display: flex;
}

.pathway__link {
    color: #000000;
    font-size: 14px;
}

.pathway__separator {
    margin-right: 10px;
    margin-left: 10px;
}

.main {
    /* height: 300px; */
}

.wbl {
    width: 100%;
}

.sbl {
    width: 70%;
}

.hero {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

/*.f-button {*/
/*    display: none;*/
/*}*/
.hcatalog {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 50%;
}

.hcalalog__item {
    margin-right: 2%;
    margin-bottom: 2%;
    flex: 0 0 23%;
    text-align: left;
    text-transform: uppercase;
    padding: 10px;
    transition: box-shadow .2s cubic-bezier(.02, .01, .47, 1), transform .2s cubic-bezier(.02, .01, .47, 1);
}

.hcalalog__item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    transform: translate(0, -3px);
}

.hcatalog__image {
    width: 100%;
    border: 1px solid #C9C9C9;
    border-radius: 16px;
}

.hcatalog__link {
    display: block;
    color: #1B1B1B;
}

.hero__catalog {
    flex: 0 0 50%;
    width: 50%;
}

#myCarousel {
    --f-carousel-spacing: 10px;
}

.paper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 485px;
}

.paper__img {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paper__img img {
    width: 100%;
    border-radius: 16px;
}

.paper__info {
    flex: 0 0 50%;
    padding: 20px;
    padding-top: 50px;
}

.paper__header {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 32px;
}

.paper__description {
    margin-bottom: 32px;
}

.paer__text {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 18px;
    width: 80%;
}

.paper__link {
    display: inline-block;
    color: #C9C9C9;
    border: 1px solid #C9C9C9;
    border-radius: 15px;
    padding: 9px 32px;
    transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

.paper__link:hover {
    color: white;
    background-color: #c9c9c9;
}

.footer {
    background-color: #493639;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer__menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 51px;
}

.fcatalog__header {
    color: #8C6356;
    font-size: 14px;
    margin-bottom: 10px;
}

.fcatalog__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 200px; 
}

.fcatalog__item {
    margin-bottom: 10px;
}

.fcatalog__item:first-child {
    margin-right: 120px;
}

.fcatalog__link {
    display: block;
    color: #C9C9C9;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
    transition: text-shadow .2s ease-in-out;
}

.fcatalog__link:hover {
    text-shadow: 1px 2px 3px #C9C9C9;
}

.fmenu__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 130px;   
}

.fmenu__item {
    margin-bottom: 10px;

}

.fmenu__item:first-child {
    margin-right: 120px;
}

.fmenu__link {
    display: block;
    color: #C9C9C9;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
    transition: text-shadow .2s ease-in-out;
}

.fmenu__link:hover {
    text-shadow: 1px 2px 3px #C9C9C9;
}

.footer__copy {
    color: #8C6356;
    font-size: 10px;
    text-align: center;
}

.mailform {
    position: relative;
}

.mailform__input {
    width: 100%;
    height: 50px;
    border: 1px solid #dbdee2;
    border-radius: 4px;
    background: #f4f5f6;
    font: normal 1.2rem MyriadProRegular;
    color: #3a3f4c;
    margin-bottom: 10px;
}
.mailform__text {
    width: 130%;
    height: 300px;
    border: 1px solid #dbdee2;
    border-radius: 4px;
    background: #f4f5f6;
    font: normal 1.2rem MyriadProRegular;
    color: #3a3f4c; margin-bottom: 10px;
}
.mailform_bt {
    width: 40%;
    height: 50px;
    border: none;
    border-radius: 4px;
    background: #58151c;
    color: #ffffff;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

.mailform_bt:hover {
    background: #AB9896;
}

.catalog__tree {
    flex: 0 0 20%;
}

.catalog__body {
    flex: 0 0 80%;
}

.catalog__title {
    color: #1B1B1B;
    font-size: 16px;
    margin-bottom: 10px;
}

.catalog__link {
    display: block;
    /*color: #C9C9C9;*/
    color: #1B1B1B;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color .2s ease-in-out;
}

.catalog__link:hover {
    color: #8C6356;
}

.catalog__header {
    color: #1B1B1B;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.catalog__empty {
    color: #1B1B1B;
    font-size: 30px;
    font-weight: bold;
}

.catalog__controls {
    margin-bottom: 30px;
}

.catalog__select {
    border: 1px solid #c9c9c9;
    border-radius: 12px;
    padding: 5px;
    color: #c9c9c9;
    font-weight: 400;
    font-size: 14px;
}

.ch-catalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.ch-catalog__item {
    flex: 0 0 calc(33.33% - 20px);
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 20px;
    transition: box-shadow .2s cubic-bezier(.02, .01, .47, 1), transform .2s cubic-bezier(.02, .01, .47, 1);
}

.ch-catalog__link {
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #1B1B1B;

}

.ch-catalog__item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    transform: translate(0, -3px);
}

.ch-catalog__image {
    margin-bottom: 10px;
}

.item {
    display: flex;
    flex-wrap: wrap;
}

.item__one {
    flex-wrap: nowrap;
    margin-bottom: 90px;
}

.item_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 25%;
    padding-bottom: 31px;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 55px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: box-shadow .2s cubic-bezier(.02, .01, .47, 1), transform .2s cubic-bezier(.02, .01, .47, 1);
}

.item_item:hover {
    /*box-shadow: 1px 2px 3px #666666;*/
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    /*border-radius: 8px;*/
    transform: translate(0, -3px);
}

.item_img {
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #666666;*/
    width: 100%;
    height: 17vw;
    margin-bottom: 10px;
    overflow: hidden;
}

.item_img img {
    max-width: 100%;
    max-height: 100%;
}

.item__art {
    color: #C9C9C9;
    font-size: 10px;
    margin-bottom: 30px;
}

.item__art_one {
    color: #1B1B1B;
    font-size: 16px;
    line-height: 17px;
    margin-bottom: 1px!important;
}

.item__name {
    color: black;
    font-size: 12px;
    text-align: center;
    padding: 0 5px;
    margin-bottom: 30px;
    transition: text-shadow .2s ease-in-out;
}

.item__name_one {
    color: #1B1B1B;
    font-size: 24px;
    line-height: 25px;
    font-weight: bold;
    text-align: left!important;
    margin-bottom: 30px;
}

.item__name:hover {
    text-shadow: 1px 2px 3px #666666;
}

.item__name_one:hover {
    text-shadow: none;
}

.item__availability {
    color: #AB9896;
    font-size: 10px;
    margin-bottom: 19px;
}

.item__availability_one {
    color: #8C6356;
    font-size: 12px;
    line-height: 12px;
}

.item__price {
    color: #1B1B1B;
    font-size: 24px;
    margin-bottom: 30px;
}

.item__price_one {
    font-size: 36px;
    line-height: 37px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 50px;
}

.item__btns>.item__buy {
    margin-right: 20px;
}

.item__buy {
    background: none;
    border: none;
    background-color: #493639;
    border-radius: 15px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    padding: 6px 46px;
    margin-bottom: 20px;
    transition: transform .2s ease-in-out;
}

.item__buy:hover {
    transform: scale(1.1);
}

.item__buy_cart {
    background-color: #5e0517;
}

.item__buyone {
    background: none;
    border: none;
    background-color: #493639;
    border-radius: 15px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    padding: 6px 46px;
    margin-bottom: 20px;
    transition: transform .2s ease-in-out;
}

.item__buyone:hover {
    transform: scale(1.1);
}

.item__favourites {
    background: none;
    border: none;
    background-image: url("../images/icons/Favourites.png");
    background-repeat: no-repeat;
    background-size: contain;
    color: #8C6356;
    font-size: 10px;
    padding-left: 30px;
    transition: transform .2s ease-in-out;
}

.item__favourites:hover {
    transform: scale(1.1);
}

.item__favourites_add {
    background-image: url("../images/icons/Favourites-add.png");
}

.item__gallery {
    flex: 0 0 50%;
    /*background-color: #666666;*/
}

.item__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.item__dscription {
    flex: 0 0 43%;
}

.item__dscription:first-child {
    margin-right: 14%;
}

.item__title {
    color: black;
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 20px;
}

.item__text {
    color: #1B1B1B;
    font-size: 16px;
    line-height: 20px;
    text-align: left!important;
}

.cart {
    width: 80%;
    margin-left: 20%;
}

.cart__header {
    font-size: 36px;
    font-weight: bold;
    color: #1B1B1B;
    margin-bottom: 50px;
}

.cart__empty {
    color: #1B1B1B;
    font-size: 30px;
    font-weight: bold;
}

.cart__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 80px;
}

.cart_item {
    display: flex;
    flex-wrap: nowrap;
    flex: 0 0 49%;
    padding: 18px;
    margin-bottom: 20px;
    transition: box-shadow .2s ease-in-out;
}

.cart_item:hover {
    box-shadow: 1px 2px 3px #666666;
}

.cart_img {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C9C9C9;
    margin-right: 38px;
}

.cart__info {
    flex: 0 0 calc(100% - 238px);
    display: flex;
    flex-direction: column;
}

.cart__favourites {
    background: none;
    border: none;
    width: 25px;
    height: 20px;
    background-image: url("../images/icons/Favourites.png");
    background-size: contain;
    margin-left: auto;
    margin-bottom: 8px;
}

.cart__favourites_add {
    background-image: url("../images/icons/Favourites-add.png") !important;
}

.cart__art {
    color: #C9C9C9;
    font-size: 10px;
    line-height: 11px;
    margin-bottom: 20px;
}

.cart__name {
    display: block;
    color: black;
    font-size: 12px;
    line-height: 14px;
}

.cart__btns {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: auto;
}

.cart__minus, .cart__plus {
    width: 31px;
    height: 30px;
    background: none;
    border: none;
    background-color: #AB9896;
    border-radius: 15px 0 0 15px;
    color: white;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
}

.cart__plus {
    border-radius: 0 15px 15px 0;
}

.cart__col {
    color: black;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
}

.cart__price {
    color: #1B1B1B;
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 0!important;
}

.cart__arrange {
    display: block;
    text-align: center;
    background-color: #493639;
    border-radius: 15px;
    color: white;
    font-size: 14px;
    line-height: 60px;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 50px;
    transition: transform .2s ease-in-out;
}

.cart__arrange:hover {
    transform: scale(1.01);
}

.cart__summ {
    color: #1B1B1B;
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 40px !important;
}

.checkout__header {
    font-size: 36px;
    font-weight: bold;
    color: #1B1B1B;
    margin-bottom: 50px;
}

.checkout__body {
    display: flex;
    flex-wrap: nowrap;
}

.checkout__pay {
    flex: 0 0 69%;
    margin-right: 1%;
    padding-left: 40px;
}

.chckout__cart {
    flex: 0 0 30%;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 4px;
    align-self: start;
}

.checkout__empty {
    color: #1B1B1B;
    font-size: 30px;
    font-weight: bold;
}

.checkout__title {
    color: #1B1B1B;
    font-size: 16px;
    margin-left: -40px;
}

.checkout__info {
    color: #1B1B1B;
    font-size: 12px;
    line-height: 15px;
}

.checkout__number {
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    background-color: #493639;
    color: #fff;
    border-radius: 15px;
    margin-right: 5px;
}

.checkout__btn {
    text-align: center;
    background-color: #493639;
    border-radius: 15px;
    color: white;
    font-size: 14px;
    line-height: 60px;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 10px;
    transition: transform .2s ease-in-out;
}

.checkout__btn:hover {
    transform: scale(1.01);
}

@media (max-width: 1400px) {
    /*.menu__item:not(:last-child) {*/
    /*    margin-right: 10px;*/
    /*}*/

    .menu__link {
        font-size: 12px;
    }

    .header__main {
        margin-bottom: 40px;
    }

    .header__add {
        margin-bottom: 40px;
    }

    .catalog__tree {
        display: none;
    }

    .catalog__body {
        flex: 0 0 100%;
    }

    .cart {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 1260px) {
    .top__link {
        font-size: 12px;
        line-height: 12px;
    }

    .top__phone {
        font-size: 16px;
    }

    .top__space {
        font-size: 12px;
        line-height: 12px;
    }

    .logo__link {
        font-size: 25px;
    }

    .logo__link span {
        font-size: 41px;
    }

    .logo__info {
        font-size: 10px;
        letter-spacing: -.1px;
    }

    .geo__type {
        font-size: 12px;
    }

    .geo__town {
        font-size: 12px;
    }

    .geo__point {
        margin-top: -5px;
    }

    .header__search {
        font-size: 10px;
        padding: 8px 10px;
        width: 20vw;
    }

    .header__lk {
        font-size: 0;
        width: 14px;
        height: 21px;
    }

    .header__fav {
        font-size: 0;
        width: 21px;
        height: 17px;
        margin-left: 18px;
        margin-top: 3px;
    }

    .header__cart {
        font-size: 0;
        width: 32px;
        height: 24px;
        margin-left: 15px;
    }

    .header__cart span {
        font-size: 10px;
    }

    .header__text {
        font-size: 10px;
        line-height: 10px;
    }

    .hero__slide {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #c9c9c9;
        border-radius: 16px;
    }

    .hcalalog__item {
        flex: 0 0 31%;
    }



    .item__gallery {
        flex: 0 0 70%;
    }

    .item__one {
        flex-wrap: wrap;
    }
    .item__one:first-child {
        flex-wrap: nowrap;
    }

    .item__dscription {
        flex-wrap: wrap;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .cart__list {
        justify-content: center;
    }

    .cart_item {
        flex: 0 0 70%;
    }
}

@media (max-width: 955px) {
    .container {
        padding: 0 41px;
    }

    .sbl {
        width: 100%;
    }

    .burger {
        display: block;
    }

    .header__lk {
        margin-left: 27px;
    }

    .hcatalog__link {
        font-size: 14px;
        line-height: 15px;
    }

    .menu {
        display: none;
    }

    .paper__header {
        font-size: 24px;
    }

    .paer__text {
        font-size: 12px;
        line-height: 14px;
        width: 100%;
    }

    .paper {
        margin-bottom: 200px;
    }

    .paper__link {
        font-size: 10px;
    }

    .footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .fcatalog__header {
        font-size: 12px;
    }

    .fcatalog__link {
        font-size: 12px;
    }

    .fmenu__list {
        flex-wrap: nowrap;
        max-height: 180px;
    }

    .item__one:first-child {
        flex-wrap: wrap;
    }

    .item__gallery {
        flex: 0 0 100%;
    }

    .checkout__body {
        flex-wrap: wrap;
    }

    .checkout__pay {
        flex: 0 0 100%;
        margin-right: 0;
        order: 2;
    }

    .chckout__cart {
        flex: 0 0 100%;
        order: 1;
        margin-bottom: 20px;
    }
}

@media (max-width: 780px) {
    .top__list {
        display: none;
    }

    .header__control {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
        background-color: #493639;
        justify-content: space-evenly;
        padding-top: 14px;
        padding-left: 41px;
        padding-right: 41px;
        padding-bottom: 20px;
    }

    .header__search {
        display: none;
    }

    .header__search-btn {
        display: block;
    }

    .header__lk {
        background-image: url('../images/lk_mob.svg');
        background-size: contain;
        width: 24px;
        height: 35px;
    }

    .header__fav {
        background-image: url('../images/fav_mob.svg');
        background-size: contain;
        width: 43px;
        height: 35px;
    }

    .header__cart {
        background-image: url('../images/cart_mob.svg');
        background-size: contain;
        width: 50px;
        height: 35px;
    }

    .header__cart span {
        background-color: #8C6356;
        width: 29px;
        height: 29px;
        border-radius: 16px;
        font-size: 14px;
        right: -30px;

    }

    .header__main {
        margin-bottom: 20px;
    }

    .header__add {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .header__text:nth-child(1) {
        order: 1;
        width: calc(50% - 10px);
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .header__text:nth-child(2) {
        order: 3;
        width: 100%;
    }

    .header__text:nth-child(3) {
        order: 2;
        width: calc(50% - 10px);
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .hero {
        flex-direction: column-reverse;
    }

    .hcatalog {
        flex: 0 0 100%;
        width: 100%;
    }

    .hero__slide {
        border: none;
    }

    .hero__catalog {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 50px !important;
    }

    .paper {
        flex-direction: column;
    }

    .paper__img {
        margin-bottom: 20px;
    }

    .paper__info {
        padding: 0;
    }

    .paper__header {
        margin-bottom: 20px;
    }

    .items_item {
        flex: 0 0 50%;
    }

    .footer {
        display: none;
    }

    .cart_item {
        flex: 0 0 100%;
    }

    .cart_img {
        width: 150px;
        height: 150px;
        margin-right: 18px;
    }

    .cart__info {
        flex: 0 0 calc(100% - 168px);
    }

    .card__arrange {
        margin-bottom: 100px;
    }
}

@media (max-width: 493px) {
    .container {
        padding: 0 20px;
    }
    .geo {
        display: none;
    }

    .header__text:nth-child(1), .header__text:nth-child(3) {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .header__control {
        padding-right: 120px;
        padding-left: 20px;
    }

    .hcalalog__item {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 20px;
        margin-right: 0;
    }

    .hcalalog__item:nth-child(2n-1) {
        margin-right: 20px;
    }

    .items_item {
        flex: 0 0 100%;
    }

    .cart_item {
        flex-wrap: wrap;
        justify-content: center;
        padding: 9px;
        margin-bottom: 10px;
    }

    .cart_img {
        width: 150px;
        height: 150px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .cart__info {
        flex: 0 0 100%;
    }

    .cart__name {
        margin-bottom: 20px;
    }

    .cart__btns {
        margin-bottom: 10px;
    }
}