@font-face {
  font-family: 'Onest';
  src: local('Onest Regular'), local('Onest-Regular'),
      url('../fonts/Onest/Onest-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Onest';
  src: local('Onest Medium'), local('Onest-Medium'),
      url('../fonts/Onest/Onest-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'LT Remark';
  src: local('LT Remark Regular'), local('LT Remark-Regular'),
      url('../fonts/LT Remark/LTRemark-May2021.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root {
    --color-red: #CD2F38;  
    --bg-white: #FEFBF8;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}
b {font-weight: 500;}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: transparent;
  padding: 0;
}

.app-svg {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
}

/*
.popup {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .9);
  width: 100%;
  height: 100%;
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.popup.is-active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.popup__wrapper {
  display: table;
  width: 100%;
  height: 100%;

}

.popup__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 50px 0;
}

.popup__content {
  background-color: #fff;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
*/

body {
  background-color: #FDEFE2;
  /*background: url(../bg.jpg) no-repeat 50% 0;*/
  font-family: 'Onest';
  color: #272727;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section_title {font-size: 3em;font-family: 'LT Remark';text-transform: uppercase;}
.section_subtitle {font-size: 1.25em;font-weight: 500;}
.section_title span, .section_subtitle span {color: var(--color-red);}


body.oh {
  overflow: hidden;
}

.container {
  max-width: 1678px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
    background: var(--color-red);
    color: #fff;
    text-align: center;
    font-size: 1.125em;
    line-height: 100%;
    border-radius: 5px;
    position: relative;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
}
.btn_black {background: #272727;}
.btn.with_arrow::after {
    content: "";
    background: url(../images/arrow_top_right.svg);
    position: absolute;
    width: 11px;
    height: 11px;
    right: 6px;
    top: 6px;
}
.btn .top_text {
    font-size: 0.6875em;
    color: #5E191E;
    background: #fff;
    position: absolute;
    top: -20px;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px;
    min-width: 130px;
    text-wrap-mode: nowrap;
    white-space: nowrap;
}
.btn .top_text.v2 {top: -30px;left: 0;transform: none;}
.btn_black .top_text {color: #FFFFFF;background: var(--color-red);}
.button_wrap .btn {max-width: 261px;margin: 0 auto;}
.link {color: var(--color-red);}

.header.scroll .header__wrapper {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #fdf3ea;
  -webkit-box-shadow: 0 0 5px rgb(0 0 0 / 50%);
  box-shadow: 0 0 5px rgb(0 0 0 / 50%);
}

header {border-bottom: 1px solid #E4D7D1;background-color: #fdf3ea;font-size: 0.6875em;font-weight: 500;margin-bottom: 8px;}
header .container {position: relative;}
header .right_menu {margin-left: auto;margin-right: -8px;}
header .right_menu ul {display: flex;align-items: center;}
header .right_menu li {margin-right: 15px;}
header .right_menu li.only_icon {margin-right: 8px;}
header .right_menu .only_icon a {display: block;}
header .right_menu .only_icon svg {fill: none;display: block;}
header .right_menu .parent {position: relative;}
header .right_menu .parent > a {display: flex;align-items: center;}
header .right_menu .parent > a:after {
    content: "";
    border: 3px solid transparent;
    border-top: 3px solid;
    margin: 3px 0 0 3px;
}
header .right_menu .parent ul {
    position: absolute;
    background-color: #fdf3ea;
    flex-direction: column;
    padding: 15px 16px;
    right: -16px;
    width: 133px;
    gap: 9px;
    border-radius: 5px;
    display: none;
}
header .right_menu .parent:hover ul {display: flex;}

header .right_menu .parent ul li {margin-right: 0;}

.header__flex {
  display: flex; 
  align-items: center;
  height: 45px;
}
.header__logo {
    max-width: 99px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
}

.header__logo a {
  display: block;
}




.header__nav {

}

.header__nav ul {
  display: flex; 
  justify-content: space-between;
  gap: 0 22px;
}

.header__nav ul li a {

}
.header__nav ul li a.open-popup {color:#782726}




.homepage1 {margin-bottom: 11px;background: url(../images/homepage/bg_1-v3.jpg) no-repeat 50%;background-size: cover;}
.homepage1_flex {display: flex;padding: 110px 0 82px 0;justify-content: space-between;}
.homepage1_flex .img {width: 17%;}
.homepage1_flex .img img {border-radius: 5px;}
.homepage1_flex .texts {text-align: center;}
.homepage1_flex .section_title {font-size: 8.125em;margin-bottom: 18px;}
.homepage1_flex .text {font-size: 1.25em;max-width: 360px;margin: 0 auto 98px;}


.homepage2 {margin-bottom: 70px;}
.homepage2_flex, .homepage2_flex .item {display: flex;align-items: center;}
.homepage2_flex {justify-content: space-between;background-color: var(--bg-white);border-radius: 5px;padding: 24px 31px;}
.homepage2_flex .item {gap: 20px;position: relative;}
.homepage2_flex .line {
    width: 1px;
    height: 34px;
    background-color: var(--color-red);
    transform: rotate(38deg);
}
.homepage2_flex .item .name {font-weight: 500;}
.homepage2_flex .item .text {font-size: 0.6875em;max-width: 160px;}


.homepage3 {margin-bottom: 66px;}
.homepage3_flex {display: flex;}
.homepage3_flex .item_first {margin-right: 17px;min-width: 260px;display: flex;flex-direction: column;}
.homepage3_flex .item_first .section_title {margin-bottom: 5px;}
.homepage3_flex .item_first .count {color: var(--color-red);margin-bottom: 40px;}
.homepage3_flex .item_first .button_wrap {margin-top: auto;} 
.homepage3_flex .item {margin-left: 16px;position: relative;}
.homepage3_flex .item::after {
    content: "";
    background: url(../images/arrow_top_right.svg);
    position: absolute;
    width: 11px;
    height: 11px;
    right: 11px;
    top: 11px;
}
/*
.homepage3_flex .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 69.71%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 5px;
}
*/
.homepage3_flex .item span {position: absolute;color: #fff;font-weight: 500;left: 16px;bottom: 16px;}
.homepage3_flex .item img {border-radius: 5px;}

.homepage4 {padding-bottom: 83px;}
.homepage4 .top {max-width: 460px;margin: 0 auto 40px;text-align: center;}
.homepage4 .top img {height: 26px;margin: 28px auto;}
.homepage4 .top .text {font-size: 0.8125em;}

.catalog_items {display: flex;margin: -8px;flex-wrap: wrap;}
.catalog_items .item_wrap {width: calc(100% / 3);padding: 8px;margin-bottom: 6px;}
.catalog_items .item_wrap .item {position: relative;color: #fff;}
.catalog_items .item_wrap .item img {border-radius: 5px;}
.catalog_items .item_wrap .item::after {
    content: "";
    background: url(../images/arrow_top_right.svg);
    position: absolute;
    width: 11px;
    height: 11px;
    right: 11px;
    top: 11px;
}
.catalog_items .item_wrap .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 80.16%, rgba(0, 0, 0, 0.52) 100%);
  border-radius: 5px;
}
.catalog_items .item_wrap .item .name {position: absolute;left: 16px;bottom: 16px;}
.catalog_items .item_wrap .item .prices {position: absolute;right: 16px;bottom: 16px;display: flex;align-items: center;gap: 5px;}
.catalog_items .item_wrap .item .prices .price {font-size: 1.125em;font-weight: 500;}
.catalog_items .item_wrap .item .prices .old_price {color: #C7C7C7;font-size: 0.8125em;text-decoration: line-through;}
.catalog_items .item_wrap .item .labels {display: flex;gap: 7px;font-size: 11px;font-weight: 500;position: absolute;left: 16px;top: 16px;color: var(--color-red);text-transform: uppercase;}
.catalog_items .item_wrap .item .label {
    background-color: var(--bg-white);
    border-radius: 5px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 26px;
}
.catalog_items .item_wrap .item .label.hot::after {
    content: "";
    background: url(../images/label_hot.svg);
    width: 9px;
    height: 12px;
    margin-left: 4px;
}

.homepage4 .catalog_items {margin-bottom: 36px;}
.homepage4 .button_wrap {text-align: center;}

.homepage5 {background-color: var(--bg-white);padding: 95px 0;}
.homepage5 .container, .homepage6 .container {max-width: 1398px;}
.homepage5 .top {max-width: 440px;margin: 0 auto 32px;text-align: center;}
.homepage5 .section_title svg {margin: 0px 10px 7px 2px;}
.homepage5 .section_title {margin-bottom: 24px;}
.homepage5 .section_subtitle {margin-bottom: 32px;}

.reviews_list {columns: 3;column-gap: 60px;}
.reviews_list .item {margin-bottom: 17px;}
.reviews_list .item img {margin: 0 auto;}

.homepage6 {padding: 96px 0;text-align: center;}
.homepage6 .section_title {margin-bottom: 54px;}
.homepage6_flex {display: flex;align-items: center;margin-bottom: 75px;justify-content: space-between;}
.homepage6_flex .item {min-width: 300px;}
.homepage6_flex .line {
    width: 1px;
    height: 34px;
    background-color: var(--color-red);
    transform: rotate(38deg);
}
.homepage6_flex .item .img {height: 75px;margin-bottom: 27px;}
.homepage6_flex .item .name {font-size: 1.25em;font-weight: 500;margin-bottom: 19px;}
.homepage6_flex .item .text {font-size: 0.8125em;max-width: 250px;margin: 0 auto 19px;}


.homepage7_flex {display: flex;gap: 15px;text-align: center;}
.homepage7_flex .column_left, .homepage7_flex .column_right {width: 50%;border-radius: 5px;}
.homepage7_flex .column_left {color: #fff;position: relative;}
.homepage7_flex .column_left .texts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    padding: 30px 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.homepage7_flex .column_left .text {font-size: 1.25em;font-weight: 500;}
.homepage7_flex .column_right {background:var(--bg-white);padding: 30px 5%;font-size: 0.875em;display: flex;flex-direction: column;justify-content: space-between;align-items: center;}
.homepage7_flex .column_right .text:last-child {padding: 0 13%;}
.homepage7_flex .column_right .img {width: 141px;}

.homepage8 {padding: 74px 0;text-align: center;}
.homepage8 .section_title {margin-bottom: 16px;}
.homepage8 .text {font-size: 1.125em;margin-bottom: 54px;}
.homepage8 .text svg {margin: 0 3px 0 27px;}

.homepage9 {margin-bottom: 103px;}
.homepage9_flex {display: flex;gap: 15px;}
.homepage9_flex p {font-size: 0.875em;margin-bottom: 15px;}
.homepage9_flex .column_left, .homepage9_flex .column_right {width: 50%;}
.homepage9_flex .column_left {border-radius: 5px;color: #fff;position: relative;}
.homepage9_flex .column_left .text {max-width: 280px;position: absolute;left: 40px;bottom: 40px;}
.homepage9_flex .column_left .text p {}
.homepage9_flex .column_right {display: flex;flex-direction: column;}
.homepage9_flex .column_right .section_title {font-size: 7em;/*font-size: 8.0625em;*/margin-bottom: 27px;}
.homepage9_flex .column_right .text1 {font-size: 2em;/*font-size: 2.375em;*/margin-bottom: 30px;}
.homepage9 .column_right-flex {display: flex;gap: 43px;margin-top: auto;justify-content: space-between;}
.homepage9 .column_right-flex .text {width: 350px;margin-top: auto;}
.homepage9 .column_right-flex .img {width: 263px;}
.homepage9 .column_right-flex .img img {border-radius: 5px;}
.homepage9 .column_right-flex .link {margin-top: 34px;}

.homepage10 {padding: 80px 0 40px;background-color: var(--bg-white);font-size: 0.875em;}
.homepage10_flex {display: flex;gap: 15px;justify-content: space-between;margin-bottom: 34px;}
.homepage10_flex .column_left {width: 50%;max-width: 510px;display: flex;flex-direction: column;}
.homepage10_flex .section_title {margin-bottom: 15px;}
.homepage10_flex .column_left .link {margin-bottom: 20px;}
.homepage10_contacts {display: flex;justify-content: space-between;gap: 20px;margin: auto 0 18px;} 
.homepage10_contacts p {margin-bottom: 38px;}
.homepage10_contacts .contacts_link {font-size: 1.5em;font-weight: 500;margin-bottom: 8px;}
.homepage10_contacts_right p {color: #797979;}
.contacts_socials {display: flex;gap: 12px;}
.contacts_socials a {display: flex;align-items: center;justify-content: center;width: 60px;height: 60px;border: 1px solid #DDDDDD;border-radius: 5px;}

.homepage10_flex .column_right {columns: 2;width: 50%;}
.homepage10_flex .city {margin-bottom: 28px;break-inside: avoid;}
.homepage10_flex .city .name {margin-bottom: 13px;font-size: 1.25em;font-weight: 500;padding-left: 18px;background: url('../images/city.svg') no-repeat 0 50%;}
.homepage10_flex .city .address {margin-bottom: 10px;color: #797979;line-height: 1.3;}
.homepage10_map {height: 338px;background-color: var(--bg-white);}

footer {background-color: #2C2424;color: rgb(255 255 255 / 50%);padding-top: 70px;line-height: 1.3;}
.footer_flex {display: flex;gap: 40px;justify-content: space-between;}
.footer_flex .column_title {color: var(--color-red);font-size: 1.25em;font-weight: 500;position: relative;margin-bottom: 15px;}
.footer_flex .column_title:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 34px;
    background-color: var(--color-red);
    left: -20px;
    top: -10px;
    transform: rotate(38deg);
}
.footer_flex .column {min-width: 300px;}
.footer_flex .column1 {font-size: 0.8125em;}
.footer_flex .column1 img {margin-bottom: 13px;width: 185px;}
.footer_flex .column2 ul a, .footer_flex .column3 ul a {color: #fff;}
.footer_flex .column2 ul {columns: 2;column-gap: 50px;}

.footer_flex.last {background: url('../images/footer.svg') no-repeat 50% 100%;background-size: contain;padding: 40px 0 25px;margin-top: 50px;font-size: 0.8125em;}


.breadcrumbs {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: 0.8em;
}

.breadcrumbs li:not(:last-child) {
  padding-right: 15px; 
  position: relative;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(52, 25, 14, 0.50);
}

.breadcrumbs li a {
  color: rgba(52, 25, 14, 0.50);
  transition: .3s;
}

.breadcrumbs li a:hover {
  color: #34190E;
}




.section__title {
  color: #34190E;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 50px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
.history__row {
  display: flex;
  align-items: center;
  margin: 0 -15px;
}

.history__row:not(:last-of-type) {
  margin-bottom: 40px;
}

.history__item-wrap {
  width: 50%;
  padding: 0 15px;
}
.history__item h3 {
  color: #34190E;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 24px;
  font-style: normal; 
  font-weight: 700;
  line-height: 140%; /* 33.6px */
  margin-bottom: 15px;
}

.history__item p:not(:last-child) {
  margin-bottom: 18px;
}

.principle {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.principle::after {
  content: 'Berkonty';
  color: rgba(242, 230, 216, 0.05);
  font-size: 110px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  right: 0;
  top: 0;
  backdrop-filter: blur(2px);
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.principle__title {
  color: #F2E6D8;
}
.principle__flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  gap: 15px 0;
}
.principle__item-wrap {
  width: 33.33333%;
  padding: 0 15px;
}
.principle__item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  padding: 40px 28px;
  height: 100%;
}
.principle__item-title {
  color: #F2E6D8;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 15px;
}
.principle__item-text {
  color: #F2E6D8;
}

.catalog {
  padding: 90px 0;
}

.catalog__top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  align-items: center;
  margin-bottom: 45px;
}
.catalog__top .section__title {
  margin-bottom: 0;
  margin-right: auto;
}
.catalog__top-text {
  font-size: 20px;
  max-width: 330px;
  margin-right: 40px;
}
.catalog__flex {
  display: flex;
  margin: -15px;
}
.catalog__column {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.w50 {
  width: 50%;
}
.catalog__column {min-height: 510px;}
.catalog__item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #782726;
  backdrop-filter: blur(1.5px);
  color: #F2E6D8;
  text-align: center;
  font-weight: 700;
  line-height: 120%; 
  text-transform: uppercase;
  height: 100%;
  font-size: 24px;
}

.catalog__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.catalog__item a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w25 {
  width: 25%;
}

.catalog__column.w25 .catalog__item {
  height: calc(50% - 15px);
}

.work {
  padding-bottom: 90px;
}

.work__bg {
  min-height: 650px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 90px;
}

.work__flex {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}
.work__item-wrap {
  width: 50%;
  padding: 20px;
}
.work__item {
  display: flex;
}
.work__item .quotes__block {margin: 10px 0 0 18px;}
.work__img {
  margin-right: 20px;
  max-width: 59px;
  flex-shrink: 0;
  width: 100%;
}
.work__content {
  flex-grow: 1;
}
.work__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%; 
  margin-bottom: 10px;
  max-width: 300px;
}


.reviews {
  padding-bottom: 90px;
}
.reviews__top {

  color: #F2E6D8;
  text-align: center;
  font-weight: 700;
  line-height: 120%; 
  padding: 25px 0;
  margin-bottom: 90px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 24px;
}

.reviews__flex {
  display: flex;
  align-items: center;
}
.reviews__content {
  max-width: 500px;
  margin-right: auto;
}

.reviews__box {
  max-width: 585px;
  margin-left: 30px;
  flex-shrink: 0;
  width: 100%;
}

.contacts {
}

.contacts__top {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.contacts__top .section__title {
  margin-bottom: 0;
  margin-right: 30px;
}
.contacts__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 30px;
}

.contacts__list a {
  display: flex;
  gap: 0 5px;
  align-items: center;
  font-variant-numeric: lining-nums proportional-nums;
}

.contacts__list svg {
  width: 21px;
  height: 21px;
}

.contacts__mail svg {
  width: 26px;
  height: 21px;
}

.vk svg {
  width: 33px;
  height: 19px;
}
.telegram svg  {
  width: 27px;
  height: 23px;
}
.whatsapp {
  width: 24px;
  height: 23px;
}

.contacts__list a span {
  line-height: 1;
}

.header__hamburger {
  display: none;
  overflow: hidden;
}

.delivery {
  padding: 90px 0;
}

.delivery__tabs {
}
.tabs__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -15px;
}

.tabs__links li {
  padding: 15px;
  width: 33.3333%; 
}

.retinfo__tabs .tabs__links li {
  width: 50%;
}

.tabs__links li a {
  width: 100%;
  padding: 14px 10px;
  border: 2px solid #782726;
  backdrop-filter: blur(1.5px);
  color: #1D1D1D;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  transition: .3s;
}

.tabs__links li.active a,
.tabs__links li a:hover {
  background: #782726;
  backdrop-filter: blur(1.5px);
  color: #fff;
}

.tabs__content {
  margin-top: 45px;
}

.delivery__tabs {
}

.delivery__tabs-content {
}
.delivery__flex {
  display: flex; 
}
.delivery__content {
  margin-right: 30px;
  max-width: 570px;
  width: 100%;
}
.delivery__content-title {
  color: #1D1D1D;
  font-size: 20px;
  line-height: 120%; 
  margin-bottom: 16px;
}
.delivery__city {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px 5px;
  margin-bottom: 45px; 
}

.delivery__city li {
  position: relative;
  padding-left: 31px;
  color: #1D1D1D;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; 
}

.delivery__city li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../images/location-bold.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}


.delivery__content-text {
  margin-bottom: 20px;
}
.delivery__content-btn {
  max-width: 320px;
  width: 100%;
}

.delivery__content-btn a {
  width: 100%;
  padding: 14px 10px;
  background: #34190E;
  backdrop-filter: blur(1.5px);
  color: #F2E6D8;
  text-align: center;
  line-height: 120%;
}

.delivery__img {
  max-width: 570px;
  width: 100%;
  min-width: 1px;
  height: 100%;
}
.delivery__adv {
  background-image: url(../images/principle-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 34px 0;
}

.contacts__top-flex {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.delivery__adv-item {
  display: flex;
  align-items: center;
}
.delivery__adv-img {
  flex-shrink: 0;
  margin-right: 10px;
}
.delivery__adv-content {
  color: #F2E6D8;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.delivery__adv-title {
  font-weight: 700;
}

.slick-dots {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 6px;
  font-size: 0;
  line-height: 0;
}

.slick-dots li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #BAA89C;
  transition: .3s;
  cursor: pointer;
}

.slick-dots li.slick-active {
  background-color: #782726;
}

.delivery__partners {
  max-width: 500px;
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 45px;
}

.delivery__content-text p:not(:last-child) {
  margin-bottom: 15px;
}

.box__border {
  margin-top: 45px;
  padding: 30px;
  border: 2px solid #782726;
  backdrop-filter: blur(1.5px);
}

.box__border p:not(:last-of-type) {
  margin-bottom: 15px;
}

.quotes__block {
  color: #782726;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%; 
  padding: 10px 61px;
  position: relative;
  margin-top: 37px;
}


.quotes__block::after,
.quotes__block::before {
  content: '';
  position: absolute;
  width: 37px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.quotes__block::before {
  background-image: url(../images/quotes-1.svg);
  left: 0;
  top: 0;
}

.quotes__block::after {
  background-image: url(../images/quotes-2.svg);
  right: 0;
  bottom: 0;
}

.delivery__content-text ul:not(:last-child) {
  margin-bottom: 15px;
}

.delivery__content-text ul li,
.retinfo__text ul li {
  position: relative;
  padding-left: 17px;
}

.delivery__content-text ul li::before,
.retinfo__text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #782726;
}

.delivery__content-text ul li:not(:last-child) {
  margin-bottom: 10px;
}

.retinfo__text ul li:not(:last-child)  {
  margin-bottom: 6px;
}

.alert__block {
  position: relative;
  padding-left: 21px;
  color: rgba(52, 25, 14, 0.60);
  font-size: 16px;
  line-height: 120%; 
  margin-top: 50px;
}

.alert__block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 43px;
  background-image: url(../images/alert.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
 }

 .pay {
  padding-bottom: 90px;
}


.pay__flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.pay__item-wrap {
  width: 50%;
  padding: 15px;
}
.pay__item {
  padding: 14px;
  text-align: center;
  width: 100%;
  color: #F2E6D8;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; 
  background: #782726;
  backdrop-filter: blur(1.5px);
}

.pay__item span {
  position: relative;
}


.pay__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}



.pay__info {
  margin-top: 20px;
  color: #34190E;
  font-size: 16px;
  line-height: 120%;
  display: none;
}

@-webkit-keyframes blinker {
  from { opacity: 1.0; }
  to { opacity: 0.5; }
}

.blinker{
  -webkit-animation-name: blinker;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-duration: 1.5s;
}

.guarantee {
  padding: 43px 0;
  background-color: #782726;
}
.guarantee__flex {
  display: flex;
  align-items: center;
}
.guarantee__days {
  display: flex;
  align-items: center;
}
.guarantee__number {
  color: #F2E6D8;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 1; 
  margin-right: 8px;
}

.guarantee__text {
  color: #F2E6D8;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%; 
}
.guarantee__content {
  max-width: 870px;
  width: 100%;
  margin-left: 55px;
  color: #F2E6D8;
  font-size: 18px;
  line-height: 120%; 
}

.return {
  padding: 90px 0;
}

.return__flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.return__item-wrap {
  padding: 15px;
  width: 50%;
}

.return__item-wrap .box__border {
  margin-top: 0;
  height: 100%;
}


.box__border h3 {
  color: #34190E;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%; 
  margin-bottom: 15px;
}
.return__btn {
  text-align: center;
  margin-top: 30px;
}
.return__img {
  margin-top: 90px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 650px;
}



.form {
  padding: 90px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.form .contacts__top {
  color: #F2E6D8;
}

.form .contacts__top .section__title {
  color: #F2E6D8;
}


.form__flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.form__column {
  width: 50%;
  padding: 15px;
}
.form__content {
  max-width: 500px;
  color: #F2E6D8;
}

.form__content p:not(:last-child) {
  margin-bottom: 15px;
}

.form__wrap {
}
.form__fields {
  display: flex;
  margin-bottom: 30px;
}

.form__fields label {
  color: #F2E6D8;
  font-size: 18px;
  line-height: 120%; 
  display: block;
}

.form__fields input {
  display: block;
  margin-top: 10px;
  display: block;
  width: 100%;
  padding: 14px;
  border: 2px solid #F2E6D8;
  backdrop-filter: blur(1.5px);
  background-color: transparent;
  color: #F2E6D8;
}

.form__fields input::placeholder {
  color: rgba(242, 230, 216, 0.60);
}

.form__name {
  max-width: 334px;
  width: 100%;
  margin-right: 30px;
}
.form__phone {
  flex-grow: 1 ;
}
.form__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
  align-items: center;
}
.check {
  color: #F2E6D8;
  font-size: 14px;
  line-height: 120%; 
  position: relative;
  cursor: pointer;
  padding-left: 33px;
}
.check__input {
  appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    outline: none;
    opacity: 0;
}
.check__box {
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    border: 2px solid #F2E6D8;
    backdrop-filter: blur(1.5px);
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.check__name a {
  display: inline-block;
  text-decoration: underline;
}
.form__submit {
  max-width: 232px;
  width: 100%;
}

.check__input:checked+.check__box:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: #F2E6D8;
}

.form__time {
  color: #F2E6D8;
  font-size: 18px;  
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-top: 30px;
}

.retinfo {
  padding: 90px 0;
}
.tabs__content {
}
.retinfo__tabs-content {
}

.retinfo__text:not(:last-child) {
  margin-bottom: 30px;
}

.retinfo__text h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.retinfo__text a {
  color: #782726;
  font-weight: 700;
}

.retinfo__text p:not(:last-child),
.retinfo__text ul:not(:last-child) {
  margin-bottom: 15px;
}

.retinfo__text-title {
  color: #34190E;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 40px;
}
.retinfo__flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.retinfo__column {
  width: 50%;
  padding: 15px;
}

.retmoney__column img {
  margin: 0 auto;
}

.retmoney,
.application {
  padding-bottom: 90px;
}
.retmoney__flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.retmoney__column {
  width: 50%;
  padding: 15px;
}

.retmoney__item {
  display: flex;
}

.retmoney__item:not(:last-child) {
  margin-bottom: 40px;
}
.retmoney__number {
  color: #782726;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 36px;
  font-weight: 700;
  line-height: 100%; /* 36px */
  text-transform: uppercase;
  margin-right: 12px;
}

.contacts__adv {
  padding: 40px 0;
  background-color: #782726;
}

.faq {
  padding: 90px 0;
}
.faq__flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.faq__column {
  width: 50%;
  padding: 15px;
}

.faq__text:not(:last-child) {
  margin-bottom: 60px;
}

.faq__text p:not(:last-child) {
  margin-bottom: 30px;
}

.faq__text h4 {
  color: #34190E;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%; /* 24px */
  text-transform: uppercase;
  margin-bottom: 30px;
}


.faq__item {
  padding: 30px;
  background-color: #782726;
  margin-bottom: 30px;
}


.faq__item-title {
  color: #F2E6D8;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%; 
  margin-bottom: 15px;
}
.faq__item .contacts__list {
  color: #F2E6D8;
}
.faq__btn {
  text-align: right;
}
.feedback {
  padding-bottom: 90px;
}
.feedback__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.feedback__top .section__title {
  margin-bottom: 0;
  margin-right: auto;
}
.feedback__text {
  color: #34190E;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; 
  max-width: 370px;
  width: 100%;
}
.feedback__form-top {
  display: flex;
  margin-bottom: 40px;
}

.feedback__form-top label {
  display: block;
}

.feedback__form-top input,
.feedback__form-top textarea {
  display: block;
  width: 100%;
  padding: 14px;
  border: 2px solid #34190E;
  backdrop-filter: blur(1.5px);
  resize: none;
  height: 50px;
  color: #34190E;
  margin-top: 10px;
}

.feedback__form-top input::placeholder,
.feedback__form-top textarea::placeholder {
  color: rgba(52, 25, 14, 0.60);
} 

.feedback__name {
  max-width: 334px;
  width: 100%;
  margin-right: 30px; 
}
.feedback__phone {
  max-width: 170px;
  width: 100%;
  margin-right: 30px;
}
.feedback__comment {
  flex-grow: 1;
}
.feedback__bottom {
  display: flex;
  align-items: center;
}
.feedback__file {
  margin-right: auto;
}
.feedback__bottom .check {
  color: #34190E;
  margin-right: 50px;
}

.feedback__bottom .check__box {
  border-color: #34190E;
}
.feedback__bottom .check__input:checked+.check__box:after {
  background-color: #34190E;
}

.form__submit .btn {
  width: 100%;
}

.input-file {
	position: relative;
  display: flex;
  align-items: baseline;
}
.input-file-btn {
	position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	text-decoration: none;
	font-size: 14px;
	vertical-align: middle;
	text-align: center;
  color: #782726;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 18px;
  font-weight: 700;
}

.input-file input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}

.input-file-text {
	padding: 0 10px;
	line-height: 40px;
	display: inline-block;
}

.requisites {
  padding-bottom: 90px;
}

.requisites__flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.requisites__column {
  width: 50%;
  padding: 15px;
}

.requisites__column p:not(:last-child) {
  margin-bottom: 15px;
}

.shops {
  padding-bottom: 90px;
}

.shops__box:first-child {
  margin-top: 90px;
}

.shops__box:not(:last-child) {
  margin-bottom: 60px;
}
.shops__box-title {
  color: #34190E;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; 
  margin-bottom: 30px;
}
.shops__list {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.shop__item-wrap {
  width: 50%;
  padding: 15px;
}
.shop__item {
  padding-bottom: 30px;
  border-bottom: 1px solid #CCBDB0;
  position: relative;
}

.shop__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 14px;
  height: 18px;
  background-image: url(../images/pin.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.shop__item p:first-child {
  padding-right: 20px;
}


.shadow-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 1000;
  display: none;
}
.popup {
  background-color: #fff;
  padding: 30px 40px;
  margin: 0 auto;
  border-radius: 3px;
  z-index: 1500;
  max-width: 400px;
  width: 100%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  display: none;
}


.popup__title {
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}


.popup__close {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.popup__close::after, .popup__close::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #000000;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.popup__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup-field__wrap {margin-bottom: 20px;}
.popup-field__wrap input {
  width: 100%;
  padding: 0 14px;
    border: 2px solid #34190E;
    backdrop-filter: blur(1.5px);
    resize: none;
    height: 50px;
    color: #34190E;
}
.popup__form-btn .btn {width: 100%;}


/* old styles */
.catalog-page__title {
    font-size: 3em;
    font-family: 'LT Remark';
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}
.catalog__inner {
    display: flex;
    padding-top: 15px;
    padding-bottom: 10px;
}

.catalog__found {
    width: 16.66666667%;
    padding: 0 10px;
    text-align: center;
}

.catalog__sort {
    /*width: 66.66666667%;
    padding: 0 10px;*/
    display: flex;
    justify-content: space-between;
}

.catalog__sort-wrapper {
    position: relative;
}

.catalog__sort-heading {
    position: relative;
    display: block;
    /*margin-left: 15px;*/
    padding-right: 30px;
}

.catalog__sort-heading:hover {
    color: #993324;
}

.catalog__sort-heading::after {
    content: '';
    background-image: url(../images/icon-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.5s;
}

.catalog__sort-heading.active {
    color: #993324;
}

.catalog__sort-heading.active::after {
    transform: translateY(-25%) rotate(-90deg);
}

.catalog__sort-list {
    padding: 10px 10px;
    position: absolute;
    background: #fff;
    -webkit-box-shadow: 1px 2px 5px 0px #424242;
    /*2px 2px 3px 0 #cacaca;*/
    -moz-box-shadow: 1px 2px 5px 0px #424242;
    /*2px 2px 3px 0 #cacaca;*/
    box-shadow: 1px 2px 5px 0px #424242;
    /*2px 2px 3px 0 #cacaca;*/
    height: min-content;
    width: 200px;
    top: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 50;
}

.catalog__sort-heading.active+.catalog__sort-list {
    opacity: 1;
    pointer-events: auto;
}

.catalog__sort-link {
    display: block;
    padding: 4px 0;
    font-size: 15px;
}

.catalog__sort-link:hover {
    color: #993324;
}

.section-catalog_columns {display: flex;}
.section-catalog_columns aside {width: 22%;margin-right: 3%;}
.section-catalog_columns .category_page {flex: 1;}
aside .module_name {font-size: 20px;border-bottom: 1px solid #ececec;padding: 10px;background: #e3cdb3;}
.categories_links a {display: block;padding: 5px 10px;color: #000;}
.categories_links a:hover, .categories_links a.active {color: #e30613;background:#ececec}


.bf-form {display: flex;flex-direction: column;}
.bf-form .attr_o1 {order:-20;}
.bf-form .attr_a6 {order:-10;}
.bf-attr-header {position: relative;cursor: pointer;}
.bf-attr-block.bf-hidden {display: block;}
.bf-attr-header .bf-arrow {
  background-image: url(../images/icon-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s;
}
.bf-attr-header.active .bf-arrow {
  transform: translateY(-25%) rotate(-90deg);
}

.bf-count.bf-empty {display: none;}
.bf-price-filter .bf-cur-symb {display: flex;gap: 10px;}
.bf-price-filter .bf-range-block {width: 100%;}
.bf-price-filter .bf-range-block input {width: 100%;height: 40px;border: 0;}
.bf-buttonsubmit {width: 100%;display: none;}
.bf-buttonclear {
    width: 100%;
    border: 0;
    background: #c1c1c1;
    margin-top: 20px;
    color: #fff;
    text-align: center;
    font-size: 1.125em;
    line-height: 100%;
    border-radius: 5px;
    position: relative;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.catalog__pagination,
.pagination {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.pagintaion__item,
.pagination li {

}

.pagination__link,
.pagination li a, .pagination li span {
    line-height: 30px;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    display: block;
}

.pagination__link:hover,
.pagination li a:hover {
    color: #993324;
}

.pagination__link.active a, .pagination__link.active span,
.pagination li.active a, .pagination li.active span {
    border-color: #993324;
}

.catalog__all {display: none;}
.catalog__all button:hover {
    color: #993324;
}