@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

ul {
  list-style: none;
}

body * {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  line-height: inherit;
  text-align: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
}

@font-face {
  font-family: "SeoulHangangCB";
  src: url("../fonts/seoulhangangcb.woff") format("woff");
}
@font-face {
  font-family: "SeoulHangangCBL";
  src: url("../fonts/seoulhangangcbl.woff") format("woff");
}
@font-face {
  font-family: "DejaVuSans";
  src: url("../fonts/dejavusans.woff") format("woff");
}
@font-face {
  font-family: "SeoulHangangCondensed-Light";
  src: url("../fonts/seoulhangangcondensed-light.woff") format("woff");
}
/*шрифты*/
/*цвета*/
.popup__product-info .popup__product-btn, .popup__form .popup__form-btn, .delivery__products-btn, .to__pay-btn, .order__form-btn, .hall__btn, .guest__btn, .main__order-btn, .popup__product-btn {
  color: #E7DEC8;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCB";
  display: block;
  transition: all 0.5s;
  background-color: #6D2F3E;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  padding: 8px 20px;
  -webkit-clip-path: url(#myClip);
          clip-path: url(#myClip);
}

.popup__product-btn {
    cursor: pointer;
}
@media (max-width: 1500px) {
  .popup__product-info .popup__product-btn, .popup__form .popup__form-btn, .delivery__products-btn, .to__pay-btn, .order__form-btn, .hall__btn, .guest__btn, .main__order-btn {
    font-size: 28px;
  }
}
@media (max-width: 1230px) {
  .popup__product-info .popup__product-btn, .popup__form .popup__form-btn, .delivery__products-btn, .to__pay-btn, .order__form-btn, .hall__btn, .guest__btn, .main__order-btn {
    font-size: 26px;
  }
}
@media (max-width: 950px) {
  .popup__product-info .popup__product-btn, .popup__form .popup__form-btn, .delivery__products-btn, .to__pay-btn, .order__form-btn, .hall__btn, .guest__btn, .main__order-btn {
    font-size: 24px;
  }
}
@media (max-width: 800px) {
  .popup__product-info .popup__product-btn, .popup__form .popup__form-btn, .delivery__products-btn, .to__pay-btn, .order__form-btn, .hall__btn, .guest__btn, .main__order-btn {
    font-size: 22px;
  }
}
@media (max-width: 700px) {
  .popup__product-info .popup__product-btn, .popup__form .popup__form-btn, .delivery__products-btn, .to__pay-btn, .order__form-btn, .hall__btn, .guest__btn, .main__order-btn {
    font-size: 20px;
    padding: 5px 15px;
  }
}

body {
  display: flex;
  flex-direction: column;
  /* min-height: 100vh; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/bodybg.webp");
}

body.notbg {
    background: unset;
    background-color: #FFF8F2;
}

body.lock {
  overflow: hidden;
}

body > main {
  flex-grow: 1;
}

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

h2 {
  font-size: 36px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCBL";
  color: #4F1E00;
  margin-bottom: 30px;
}

.preloader loader {
    position: relative;
    top: 40%;
    left: 40%;
}

@media (max-width: 1400px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 1100px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 900px) {
  h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 700px) {
  h2 {
    font-size: 25px;
  }
}
@media (max-width: 500px) {
  h2 {
    font-family: "SeoulHangangCondensed-Light";
    color: #6D2F3E;
  }
}

/*header*/
header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 100%;
  height: 90px;
  padding: 30px 0;
  background-color: transparent;
  transition: all 0.5s;
}
header.inner__header {
  background-color: #6D2F3E;
}
header.scroll__bg-color {
  background-color: #6D2F3E;
}
@media (max-width: 1600px) {
  header {
    padding: 20px 0;
  }
}
/* @media (max-width: 1230px) {
  header {
    padding: 20px 0;
  }
} */
@media (max-width: 900px) {
  header {
    padding: 15px 0;
  }
}

.header__cnt {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .header__cnt {
    justify-content: flex-end;
    position: relative;
    z-index: 90;
  }
}

.header__logo {
  display: block;
  width: 148px;
  height: 60px;
  margin-right: auto;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/*@media (max-width: 500px) {
  .header__logo img.logo-pc {
    display: none;
  }
}*/
.header__logo img.logo-mob {
  display: none;
}
/*@media (max-width: 500px) {
  .header__logo img.logo-mob {
    display: block;
  }
}*/
@media (max-width: 1100px) {
  .header__logo {
    width: 120px;
    height: auto;
  }
}
@media (max-width: 800px) {
  .header__logo {
    width: 110px;
  }
}
@media (max-width: 500px) {
  .header__logo {
    width: 99px;
  }
}

.header__list {
    display: flex;
}

.header__list ul {
  display: flex;
  align-items: center;
}

.header__list .headerPopUp {
    margin-left: 48px;
}
.header__list ul li + li {
  margin-left: 48px;
}
@media (max-width: 1230px) {
  .header__list ul li + li {
    margin-left: 30px;
  }
  .header__list .headerPopUp {
        margin-left: 30px;
    }
}
@media (max-width: 1100px) {
  .header__list ul li + li {
    margin-left: 20px;
  }
  .header__list .headerPopUp {
        margin-left: 20px;
    }
}
.header__list ul a, .header__list .headerPopUp {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  line-height: 115%;
  font-weight: 400;
  color: #E7DEC8;
  font-family: "SeoulHangangCB";
}
@media (max-width: 1230px) {
  .header__list ul a, .header__list .headerPopUp {
    font-size: 22px;
  }
}
@media (max-width: 1100px) {
  .header__list ul a, .header__list .headerPopUp {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .header__list {
    display: none;
  }
}

.basket__link {
  display: block;
  width: 50px;
  height: 50px;
  margin-left: auto;
  position: relative;
}
.msMiniCart {
    position: absolute;
    top: -5px;
    right: -10px;
    border: 1px solid #4F1E00;
    background-color: #6D2F3E;
    border-radius: 100%;
    padding: 5px 10px;
}
.msMiniCart strong {
    color: #fff;
}
.basket__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1100px) {
  .basket__link {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 900px) {
  .basket__link {
    margin-left: 50px;
  }
}
@media (max-width: 500px) {
  .basket__link {
    margin-left: 40px;
  }
}

.header__burger {
  display: none;
  position: relative;
  width: 32px;
  height: 22px;
  cursor: pointer;
}
@media (max-width: 900px) {
  .header__burger {
    display: block;
  }
}

.header__burger span {
  position: absolute;
  background-color: #E7DEC8;
  width: 100%;
  height: 2px;
  right: 0;
  top: 10px;
  transition: all 0.5s ease 0s;
}

.header__burger::before, .header__burger::after {
  content: "";
  position: absolute;
  background-color: #E7DEC8;
  width: 100%;
  height: 2px;
  right: 0;
  transition: all 0.5s ease 0s;
}

.header__burger::before {
  top: 0;
}

.header__burger::after {
  bottom: 0;
}

.header__burger.active-burger span {
  transform: scale(0);
}

.header__burger.active-burger::before {
  transform: rotate(45deg);
  top: 10px;
}

.header__burger.active-burger::after {
  transform: rotate(-45deg);
  bottom: 10px;
}

/*mob menu*/
.header__mob {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 80;
  top: 0;
  left: -2000px;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  transition: all 0.5s;
}
.header__mob::-webkit-scrollbar {
  display: none;
}
.header__mob ul {
  padding: 180px 27px 42px 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}
.header__mob ul li + li {
  margin-top: 42px;
}
@media (max-width: 500px) {
  .header__mob ul li + li {
    margin-top: 30px;
  }
}
.header__mob ul a, .header__mob .headerPopUp {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  line-height: 115%;
  color: #E7DEC8;
  font-family: "SeoulHangangCondensed-Light";
  font-weight: 400;
  text-align: right;
}

.header__mob .headerPopUp {
    padding-right: 27px;
}
@media (max-width: 800px) {
  .header__mob ul {
    padding-top: 160px;
  }
}
@media (max-width: 500px) {
  .header__mob ul {
    padding-top: 130px;
    padding-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .header__mob {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

.header__mob.active-burger {
  left: 0;
}

/*main*/
.page__inner-wrapper {
  height: 850px;
  position: relative;
}
.page__inner-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.page__inner-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -122px;
  width: 100%;
  height: 122px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/topbgimg.webp");
  z-index: 1;
}
.content_wrapper {
    position: relative;
    margin-bottom: 122px;
}
.masonry__wrapper::after, .about__banner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -122px;
  width: 100%;
  height: 122px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/topbgimg.webp");
  z-index: 1;
}

.content_wrapper::after, .hall__wrapper-big::after, .products__offers-wrapper::after, .delivery__wrapper::after {
    content: "";
  position: absolute;
  left: 0;
  bottom: -190px;
  width: 100%;
  height: 122px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/topbgimg.webp");
  z-index: 1;
}
@media (max-width: 1400px) {
  .page__inner-wrapper::after, .masonry__wrapper::after, .about__banner::after, .content_wrapper::after, .hall__wrapper-big::after {
    height: 95px;
    bottom: -95px;
  }
  .content_wrapper::after, .hall__wrapper-big::after, .products__offers-wrapper::after, .delivery__wrapper::after{
      bottom: -175px;
  }
}
@media (max-width: 1100px) {
  .page__inner-wrapper::after, .masonry__wrapper::after, .about__banner::after, .content_wrapper::after, .hall__wrapper-big::after {
    height: 80px;
    bottom: -80px;
  }
  .content_wrapper::after, .hall__wrapper-big::after, .products__offers-wrapper::after, .delivery__wrapper::after{
      bottom: -190px;
  }
}
@media (max-width: 950px) {
  .page__inner-wrapper::after, .masonry__wrapper::after, .about__banner::after, .content_wrapper::after, .hall__wrapper-big::after {
    height: 70px;
    bottom: -70px;
  }
  .content_wrapper::after, .hall__wrapper-big::after, .products__offers-wrapper::after, .delivery__wrapper::after{
      /* bottom: -150px; */
  }
}
@media (max-width: 800px) {
  .page__inner-wrapper::after, .masonry__wrapper::after, .about__banner::after, .content_wrapper::after, .hall__wrapper-big::after  {
    height: 60px;
    bottom: -60px;
  }
  .content_wrapper::after, .hall__wrapper-big::after, .products__offers-wrapper::after, .delivery__wrapper::after{
      /* bottom: -140px; */
  }
}
@media (max-width: 1600px) {
  .page__inner-wrapper {
    height: 700px;
  }
}
@media (max-width: 1230px) {
  .page__inner-wrapper {
    height: 650px;
  }
}
@media (max-width: 1100px) {
  .page__inner-wrapper {
    height: 550px;
  }
}
@media (max-width: 950px) {
  .page__inner-wrapper {
    height: 500px;
  }
}
@media (max-width: 800px) {
  .page__inner-wrapper {
    height: 450px;
  }
}
@media (max-width: 500px) {
  .page__inner-wrapper {
    height: 380px;
  }
}

.page__inner-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
@media (max-width: 1600px) {
  .page__inner-title {
    top: 270px;
  }
}
@media (max-width: 1230px) {
  .page__inner-title {
    top: 260px;
  }
}
@media (max-width: 1100px) {
  .page__inner-title {
    top: 210px;
  }
}
@media (max-width: 950px) {
  .page__inner-title {
    top: 190px;
  }
}
@media (max-width: 800px) {
  .page__inner-title {
    top: 170px;
  }
}
@media (max-width: 500px) {
  .page__inner-title {
    top: 150px;
  }
}

.main-page__inner-title {
  width: 587px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-page__inner-title .main-page__inner-title-top {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-page__inner-title .main-page__inner-title-bottom {
  width: 311px;
  height: auto;
  margin-top: 23px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1230px) {
  .main-page__inner-title .main-page__inner-title-bottom {
    width: 270px;
  }
}
@media (max-width: 1100px) {
  .main-page__inner-title .main-page__inner-title-bottom {
    width: 220px;
  }
}
@media (max-width: 950px) {
  .main-page__inner-title .main-page__inner-title-bottom {
    width: 180px;
    margin-top: 15px;
  }
}
@media (max-width: 800px) {
  .main-page__inner-title .main-page__inner-title-bottom {
    width: 150px;
    margin-top: 10px;
  }
}
@media (max-width: 500px) {
  .main-page__inner-title .main-page__inner-title-bottom {
    display: none;
  }
}
.main-page__inner-title .main-page__inner-title-text {
  display: none;
  color: #E7DEC8;
  font-size: 18px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCBL";
  margin-top: 16px;
  width: 150px;
  text-align: center;
}
@media (max-width: 500px) {
  .main-page__inner-title .main-page__inner-title-text {
    display: block;
  }
}
@media (max-width: 1600px) {
  .main-page__inner-title {
    width: 500px;
  }
}
@media (max-width: 1230px) {
  .main-page__inner-title {
    width: 430px;
  }
}
@media (max-width: 1100px) {
  .main-page__inner-title {
    width: 350px;
  }
}
@media (max-width: 950px) {
  .main-page__inner-title {
    width: 300px;
  }
}
@media (max-width: 800px) {
  .main-page__inner-title {
    width: 250px;
  }
}
@media (max-width: 500px) {
  .main-page__inner-title {
    width: 194px;
  }
}

.main-page__slider-container {
  position: relative;
  height: 850px;
}
@media (max-width: 1600px) {
  .main-page__slider-container {
    height: 700px;
  }
}
@media (max-width: 1230px) {
  .main-page__slider-container {
    height: 650px;
  }
}
@media (max-width: 1100px) {
  .main-page__slider-container {
    height: 550px;
  }
}
@media (max-width: 950px) {
  .main-page__slider-container {
    height: 500px;
  }
}
@media (max-width: 800px) {
  .main-page__slider-container {
    height: 450px;
  }
}
@media (max-width: 500px) {
  .main-page__slider-container {
    height: 380px;
  }
}

.main-page__slider {
  height: 100%;
}
.main-page__slider .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
}
.main-page__slider .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.main-page__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main__order-wrapper {
  padding-top: 202px;
}
@media (max-width: 1400px) {
  .main__order-wrapper {
    padding-top: 200px;
  }
}
@media (max-width: 1100px) {
  .main__order-wrapper {
    padding-top: 150px;
  }
}
@media (max-width: 950px) {
  .main__order-wrapper {
    padding-top: 120px;
  }
}
@media (max-width: 800px) {
  .main__order-wrapper {
    padding-top: 100px;
  }
}

.main__order-wrapper-bg {
  position: relative;
}
.main__order-wrapper-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 103%;
  z-index: -1;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/main-orderbg.webp");
  display: none;
}
@media (max-width: 550px) {
  .main__order-wrapper-bg::before {
    display: block;
  }
}
@media (max-width: 450px) {
  .main__order-wrapper-bg::before {
    height: 102%;
  }
}
.main__order-wrapper-bg .main-text-left-bg {
  position: absolute;
  left: 6%;
  z-index: -1;
  top: 202px;
  width: 19%;
  height: auto;
}
.main__order-wrapper-bg .main-text-left-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 550px) {
  .main__order-wrapper-bg .main-text-left-bg {
    display: none;
  }
}
.main__order-wrapper-bg .main-text-middle-bg {
  position: absolute;
  right: 19%;
  z-index: -1;
  top: 455px;
  width: 19%;
  height: auto;
}
.main__order-wrapper-bg .main-text-middle-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 550px) {
  .main__order-wrapper-bg .main-text-middle-bg {
    display: none;
  }
}
.main__order-wrapper-bg .main-text-right-bg {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 96px;
  width: 11.4%;
  height: auto;
}
.main__order-wrapper-bg .main-text-right-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1400px) {
  .main__order-wrapper-bg .main-text-right-bg {
    top: 85px;
  }
}
@media (max-width: 550px) {
  .main__order-wrapper-bg .main-text-right-bg {
    display: none;
  }
}

.main__order {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 550px) {
  .main__order {
    flex-direction: column;
  }
}

.main__order-item {
  width: 47%;
}
.main__order-item .main__order-card-text-title {
  display: none;
  text-align: center;
  margin: 0 auto 16px auto;
  font-size: 20px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
  color: #4F1E00;
}
@media (max-width: 550px) {
  .main__order-item .main__order-card-text-title {
    display: block;
  }
}
@media (max-width: 800px) {
  .main__order-item {
    width: 48.5%;
  }
}
@media (max-width: 550px) {
  .main__order-item {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .main__order-item + .main__order-item {
    margin-top: 40px;
  }
}

.main__order-card {
  width: 100%;
  height: auto;
  height: 650px;
  border-radius: 30px;
  border: 1px solid #6D2F3E;
}
.main__order-card a {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
  position: relative;
  transition: all 0.5s;
  transform: scale(0.98);
}
.main__order-card a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 28px 28px 0 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
@media (max-width: 550px) {
  .main__order-card a::before {
    display: none;
  }
}
@media (max-width: 550px) {
  .main__order-card a {
    transform: scale(1);
  }
}
.main__order-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
  transition: all 0.5s;
  
}
@media (max-width: 550px) {
  .main__order-card img.main__order-card-img-desc {
    display: none;
  }
}
.main__order-card img.main__order-card-img-mob {
  display: none;
}
@media (max-width: 550px) {
  .main__order-card img.main__order-card-img-mob {
    display: block;
  }
}
@media (max-width: 550px) {
  .main__order-card img {
    border-radius: 15px;
  }
}
.main__order-card .main__order-card-title {
  position: absolute;
  z-index: 2;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
}
.main__order-card .main__order-card-title svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 550px) {
  .main__order-card .main__order-card-title {
    display: none;
  }
}
.main__order-card:hover a {
  transform: scale(1);
}
@media (max-width: 1230px) {
  .main__order-card {
    height: 620px;
  }
}
@media (max-width: 1100px) {
  .main__order-card {
    height: 580px;
  }
}
@media (max-width: 950px) {
  .main__order-card {
    height: 500px;
  }
}
@media (max-width: 800px) {
  .main__order-card {
    height: 450px;
  }
}
@media (max-width: 650px) {
  .main__order-card {
    height: 350px;
  }
}
@media (max-width: 550px) {
  .main__order-card {
    border: unset;
    height: 270px;
  }
}
@media (max-width: 500px) {
  .main__order-card {
    height: 240px;
  }
}
@media (max-width: 450px) {
  .main__order-card {
    height: 220px;
  }
}
@media (max-width: 400px) {
  .main__order-card {
    height: auto;
  }
}

.main__order-left .main__order-card-title {
  width: 421px;
  height: auto;
}
@media (max-width: 1230px) {
  .main__order-left .main__order-card-title {
    width: 350px;
  }
}
@media (max-width: 950px) {
  .main__order-left .main__order-card-title {
    width: 300px;
  }
}
@media (max-width: 800px) {
  .main__order-left .main__order-card-title {
    width: 90%;
  }
}

.main__order-right .main__order-card-title {
  width: 431px;
  height: auto;
}
@media (max-width: 1230px) {
  .main__order-right .main__order-card-title {
    width: 350px;
  }
}
@media (max-width: 950px) {
  .main__order-right .main__order-card-title {
    width: 300px;
  }
}
@media (max-width: 800px) {
  .main__order-right .main__order-card-title {
    width: 90%;
  }
}

.main__order-btn {
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 1100px) {
  .main__order-btn {
    margin-top: 40px;
  }
}
@media (max-width: 800px) {
  .main__order-btn {
    margin-top: 30px;
  }
}
@media (max-width: 550px) {
  .main__order-btn {
    width: 240px;
    margin: 12px auto 0 auto;
  }
}

.guest__wrapper {
  margin-top: 140px;
}
@media (max-width: 950px) {
  .guest__wrapper {
    margin-top: 110px;
  }
}
@media (max-width: 650px) {
  .guest__wrapper {
    margin-top: 80px;
  }
}
@media (max-width: 550px) {
  .guest__wrapper {
    margin-top: 40px;
  }
}

.guest {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 950px) {
  .guest {
    justify-content: space-between;
  }
}
@media (max-width: 550px) {
  .guest {
    flex-direction: column;
  }
}

.guest__main-title {
  display: none;
}
.guest__main-title h2 {
  font-size: 33px;
  line-height: 115%;
  font-weight: 400;
  font-family: "DejaVuSans";
  color: #8C232D;
  margin-bottom: 16px;
}
.guest__main-title p {
  font-size: 18px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
  color: #8C232D;
}
@media (max-width: 550px) {
  .guest__main-title {
    display: block;
  }
}

.guest__img {
  width: 38.5%;
  height: auto;
}
.guest__img a {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}
@media (max-width: 550px) {
  .guest__img a img {
    display: none;
  }
}
.guest__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
}
.guest__img img.mainguest-mob {
  display: none;
  mix-blend-mode: color-burn;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 550px) {
  .guest__img img.mainguest-mob {
    display: block;
  }
}
@media (max-width: 550px) {
  .guest__img img {
    border-radius: 0;
  }
}
@media (max-width: 550px) {
  .guest__img {
    width: 263px;
    height: 170px;
    margin: 0 auto;
    position: relative;
  }
}

.guest__right {
  width: 46%;
  margin-left: 40px;
}
@media (max-width: 1230px) {
  .guest__right {
    width: 58%;
  }
}
@media (max-width: 950px) {
  .guest__right {
    width: 59%;
    margin: 0;
  }
}
@media (max-width: 550px) {
  .guest__right {
    width: 100%;
    margin-top: -40px;
  }
}

.guest__title {
  width: 402px;
  height: auto;
  margin-bottom: 51px;
}
.guest__title svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1100px) {
  .guest__title {
    margin-bottom: 30px;
    width: 380px;
  }
}
@media (max-width: 950px) {
  .guest__title {
    margin-bottom: 20px;
    width: 320px;
  }
}
@media (max-width: 800px) {
  .guest__title {
    margin-bottom: 10px;
    width: 280px;
  }
}
@media (max-width: 650px) {
  .guest__title {
    width: 250px;
  }
}
@media (max-width: 550px) {
  .guest__title {
    display: none;
  }
}

.guest__text p + p {
  margin-top: 32px;
}
@media (max-width: 1230px) {
  .guest__text p + p {
    margin-top: 20px;
  }
}
@media (max-width: 1100px) {
  .guest__text p + p {
    margin-top: 15px;
  }
}
@media (max-width: 950px) {
  .guest__text p + p {
    margin-top: 10px;
  }
}
@media (max-width: 650px) {
  .guest__text p + p {
    margin-top: 5px;
  }
}
.guest__text p {
  color: #4F1E00;
  font-weight: 400;
  line-height: 115%;
  font-size: 24px;
  font-family: "SeoulHangangCB";
}
@media (max-width: 1100px) {
  .guest__text p {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .guest__text p {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .guest__text p {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .guest__text p {
    font-size: 16px;
  }
}
@media (max-width: 550px) {
  .guest__text {
    display: none;
  }
}

.guest__info {
  display: flex;
  align-items: center;
  margin-top: 54px;
  margin-bottom: 52px;
}
@media (max-width: 950px) {
  .guest__info {
    margin: 30px 0;
  }
}
@media (max-width: 800px) {
  .guest__info {
    margin: 15px 0;
  }
}
@media (max-width: 650px) {
  .guest__info {
    margin: 10px 0;
  }
}
@media (max-width: 550px) {
  .guest__info {
    display: none;
  }
}

.guest__info-discount {
  width: 221px;
  height: auto;
  margin-right: 18px;
}
.guest__info-discount svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1100px) {
  .guest__info-discount {
    width: 200px;
  }
}
@media (max-width: 950px) {
  .guest__info-discount {
    width: 170px;
  }
}
@media (max-width: 800px) {
  .guest__info-discount {
    width: 150px;
  }
}
@media (max-width: 650px) {
  .guest__info-discount {
    width: 130px;
  }
}

.guest__info-text {
  width: -moz-fit-content;
  width: fit-content;
}
.guest__info-text p {
  font-size: 24px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
  color: #6D2F3E;
}
@media (max-width: 1100px) {
  .guest__info-text p {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .guest__info-text p {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .guest__info-text p {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .guest__info-text p {
    font-size: 16px;
  }
}

.btns-bg {
  width: 0;
  height: 0;
  opacity: 0;
}

.guest__btn {
  position: relative;
  width: 490px;
  height: 46px;
}
@media (max-width: 950px) {
  .guest__btn {
    width: 370px;
  }
}
@media (max-width: 800px) {
  .guest__btn {
    width: 320px;
  }
}
@media (max-width: 650px) {
  .guest__btn {
    width: 270px;
    height: 35px;
  }
}
@media (max-width: 550px) {
  .guest__btn {
    margin: 12px auto 0 auto;
    width: 240px;
    height: 40px;
  }
}

.guest__text-mob {
  display: none;
}
.guest__text-mob ul li + li {
  margin-top: 16px;
}
.guest__text-mob ul li {
  position: relative;
  padding-left: 30px;
}
.guest__text-mob ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/icons/guesticon.svg");
}
.guest__text-mob ul p {
  font-size: 16px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCB";
  color: #4F1E00;
}
.guest__text-mob ul img {
  width: 250px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
}
@media (max-width: 550px) {
  .guest__text-mob {
    display: block;
  }
}

.food__wrapper {
  margin-top: 140px;
}
@media (max-width: 950px) {
  .food__wrapper {
    margin-top: 100px;
  }
}
@media (max-width: 650px) {
  .food__wrapper {
    margin-top: 80px;
  }
}
@media (max-width: 550px) {
  .food__wrapper {
    margin-top: 44px;
    padding-bottom: 100px;
    position: relative;
  }
}
.food__wrapper::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/foodbg.webp");
  display: none;
}
@media (max-width: 550px) {
  .food__wrapper::before {
    display: block;
  }
}

.food__title {
  width: 991px;
  height: 71px;
}
.food__title svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1100px) {
  .food__title {
    width: 900px;
    height: auto;
  }
}
@media (max-width: 950px) {
  .food__title {
    width: 750px;
  }
}
@media (max-width: 800px) {
  .food__title {
    width: 600px;
  }
}
@media (max-width: 650px) {
  .food__title {
    width: 500px;
  }
}
@media (max-width: 550px) {
  .food__title {
    display: none;
  }
}

.food {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 54px;
}
@media (max-width: 1230px) {
  .food {
    align-items: stretch;
  }
}
@media (max-width: 950px) {
  .food {
    margin-top: 30px;
  }
}
@media (max-width: 800px) {
  .food {
    margin-top: 20px;
  }
}
@media (max-width: 650px) {
  .food {
    margin-top: 15px;
  }
}
@media (max-width: 550px) {
  .food {
    margin: 0;
    flex-direction: column-reverse;
  }
}

.food__left {
  width: 51%;
}
@media (max-width: 1230px) {
  .food__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 950px) {
  .food__left {
    width: 56%;
  }
}
@media (max-width: 550px) {
  .food__left {
    width: 100%;
    margin-top: 40px;
  }
}

.food__text {
  margin-bottom: 67px;
}
.food__text p + p {
  margin-top: 32px;
}
@media (max-width: 1500px) {
  .food__text p + p {
    margin-top: 25px;
  }
}
@media (max-width: 1300px) {
  .food__text p + p {
    margin-top: 20px;
  }
}
@media (max-width: 1100px) {
  .food__text p + p {
    margin-top: 15px;
  }
}
@media (max-width: 950px) {
  .food__text p + p {
    margin-top: 10px;
  }
}
@media (max-width: 650px) {
  .food__text p + p {
    margin-top: 5px;
  }
}
@media (max-width: 550px) {
  .food__text p + p {
    margin-top: 12px;
  }
}
.food__text p {
  color: #4F1E00;
  line-height: 115%;
  font-weight: 400;
  font-size: 32px;
  font-family: "SeoulHangangCB";
}
@media (max-width: 1500px) {
  .food__text p {
    font-size: 28px;
  }
}
@media (max-width: 1300px) {
  .food__text p {
    font-size: 25px;
  }
}
@media (max-width: 1230px) {
  .food__text p {
    font-size: 24px;
  }
}
@media (max-width: 1100px) {
  .food__text p {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .food__text p {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .food__text p {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .food__text p {
    font-size: 16px;
  }
}
.food__text p.food__text-title {
  font-size: 20px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
  color: #8C232D;
  width: 200px;
  display: none;
}
@media (max-width: 550px) {
  .food__text p.food__text-title {
    display: block;
  }
}
@media (max-width: 900px) {
  .food__text {
    margin-bottom: 20px;
  }
}
@media (max-width: 800px) {
  .food__text {
    margin-bottom: 10px;
  }
}

.food__left-img {
  width: 100%;
  height: auto;
}
.food__left-img a {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}
.food__left-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
}
@media (max-width: 550px) {
  .food__left-img {
    display: none;
  }
}

.food__right {
  width: 37.3%;
  height: auto;
  border: 1px solid #6D2F3E;
  border-radius: 30px;
}
.food__right a {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}
.food__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
  transform: scale(0.98);
  transition: all 0.5s;
  cursor: pointer;
}
@media (max-width: 550px) {
  .food__right img {
    border-radius: 17px;
    transform: scale(0.97);
  }
}
.food__right:hover img {
  transform: scale(1);
}
@media (max-width: 1500px) {
  .food__right {
    height: 700px;
  }
}
@media (max-width: 1300px) {
  .food__right {
    height: 671px;
  }
}
@media (max-width: 950px) {
  .food__right {
    height: auto;
  }
}
@media (max-width: 800px) {
  .food__right {
    width: 40%;
  }
}
@media (max-width: 550px) {
  .food__right {
    width: 283px;
    height: 400px;
    margin: 0 auto;
    border-radius: 17px;
  }
}

.masonry__wrapper {
  margin-top: 275px;
  position: relative;
  margin-bottom: 122px;
}
.masonry__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: -122px;
  width: 100%;
  height: 122px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/bottomimgbg1.webp");
}
@media (max-width: 1400px) {
  .masonry__wrapper::before {
    height: 95px;
    top: -95px;
  }
  .masonry__wrapper {
      margin-bottom: 95px;
    }
}
@media (max-width: 1100px) {
  .masonry__wrapper::before {
    height: 80px;
    top: -80px;
  }
  .masonry__wrapper {
      margin-bottom: 80px;
    }
}
@media (max-width: 950px) {
  .masonry__wrapper::before {
    height: 70px;
    top: -70px;
  }
  .masonry__wrapper {
      margin-bottom: 70px;
    }
}
@media (max-width: 800px) {
  .masonry__wrapper::before {
    height: 60px;
    top: -60px;
  }
  .masonry__wrapper {
      margin-bottom: 60px;
    }
}
@media (max-width: 1300px) {
  .masonry__wrapper {
    margin-top: 220px;
  }
}
@media (max-width: 1100px) {
  .masonry__wrapper {
    margin-top: 170px;
  }
}
@media (max-width: 950px) {
  .masonry__wrapper {
    margin-top: 140px;
  }
}
@media (max-width: 800px) {
  .masonry__wrapper {
    margin-top: 120px;
  }
}
@media (max-width: 550px) {
  .masonry__wrapper {
    margin-top: 0;
  }
}

.masonry-gallery__box {
  overflow: hidden;
}
@media (max-width: 900px) {
  .masonry-gallery__box {
    overflow-x: scroll;
  }
  .masonry-gallery__box::-webkit-scrollbar {
    display: none;
  }
}

.masonry-gallery {
  margin: -2px;
}
@media (max-width: 900px) {
  .masonry-gallery {
    width: 904px;
  }
}

.item-masonry {
  display: flex;
}

.item-masonry a {
  display: block;
  width: 100%;
  height: auto;
}

.item-masonry img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.sizer1 {
  width: 100%;
}

.sizer2 {
  width: 50%;
}

.sizer4 {
  width: 25%;
  display: flex;
  padding: 2px;
}

.sizer5 {
  width: 20%;
}

.sizer2 {
  width: 12.5%;
}

.contacts__wrapper {
  position: relative;
  height: 658px;
  margin-top: 200px;
}
.contacts__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/bottomimgbg2.webp");
  display: none;
}
@media (max-width: 550px) {
  .contacts__wrapper::before {
    display: block;
  }
}
.contacts__wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 65px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/contactbg.webp");
  display: none;
}
@media (max-width: 550px) {
  .contacts__wrapper::after {
    display: block;
  }
}
.contacts__wrapper .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  .contacts__wrapper .container {
    padding: 0;
  }
}
@media (max-width: 550px) {
  .contacts__wrapper .container {
    flex-direction: column-reverse;
    position: relative;
    z-index: 5;
  }
}
@media (max-width: 1400px) {
  .contacts__wrapper {
    height: 550px;
  }
}
@media (max-width: 1100px) {
  .contacts__wrapper {
    height: 450px;
  }
}
@media (max-width: 800px) {
  .contacts__wrapper {
    height: 350px;
  }
}
@media (max-width: 700px) {
  .contacts__wrapper {
    height: unset;
  }
}
@media (max-width: 550px) {
  .contacts__wrapper {
    padding-top: 100px;
    background-color: rgba(208, 183, 152, 0.5);
  }
}
@media (max-width: 550px) {
  .contacts__wrapper.contacts__wrapper-order-page {
    background-color: transparent;
  }
}

@media (max-width: 550px) {
  .page__map-box {
    padding: 10px 10px 0 10px;
    background: #F3ECE5;
    border-radius: 340px 340px 0 0;
  }
}

.page__map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 700px) {
  .page__map {
    position: static;
    height: 300px;
  }
}
@media (max-width: 550px) {
  .page__map {
    height: 250px;
    overflow: hidden;
    border-radius: 340px 340px 0 0;
    border: 2px solid #6D2F3E;
    border-bottom: unset;
  }
}
@media (max-width: 400px) {
  .page__map {
    height: 230px;
  }
}

.contacts__logo {
  display: none;
  width: 177px;
  height: auto;
  outline: none;
  position: absolute;
  bottom: -2px;
  left: 25px;
  z-index: 5;
}
.contacts__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 550px) {
  .contacts__logo {
    display: block;
  }
}

.custom-place-caption {
  width: 150px;
  height: auto;
  position: absolute;
  left: 60px;
  top: 7px;
  z-index: 99;
}
.custom-place-caption img {
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-place-caption img.maplogopc {
  width: 100%;
  height: 100%;
}
@media (max-width: 550px) {
  .custom-place-caption img.maplogopc {
    display: none;
  }
}
.custom-place-caption img.maplogomob {
  width: 70px;
  height: auto;
  display: none;
}
@media (max-width: 550px) {
  .custom-place-caption img.maplogomob {
    display: block;
  }
}
.custom-place-caption p {
  font-size: 14px;
  font-weight: 600;
  line-height: 115%;
  font-family: "SeoulHangangCB";
  color: #6D2F3E;
  text-align: center;
  display: none;
  width: 100%;
}
@media (max-width: 550px) {
  .custom-place-caption p {
    display: block;
  }
}
@media (max-width: 1100px) {
  .custom-place-caption {
    width: 120px;
  }
}
@media (max-width: 550px) {
  .custom-place-caption {
    width: unset;
    height: unset;
    left: 40px;
  }
}

@media (max-width: 550px) {
  .ymaps-2-1-79-map-copyrights-promo {
    display: none !important;
  }
}

@media (max-width: 550px) {
  .ymaps-2-1-79-image-with-content {
    width: 30px !important;
    height: 38px !important;
    background-size: 30px 38px !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 550px) {
  .ymaps-2-1-79-controls__control_toolbar {
    display: none !important;
  }
}

@media (max-width: 550px) {
  .ymaps-2-1-79-gototech {
    display: none !important;
  }
}

@media (max-width: 550px) {
  .ymaps-2-1-79-copyright__wrap {
    display: none !important;
  }
}

@media (max-width: 550px) {
  .ymaps-2-1-79-controls__control {
    display: none !important;
  }
}

.contacts {
  margin-top: auto;
  margin-bottom: 80px;
  border-radius: 21px;
  background-color: rgba(238, 223, 209, 0.5);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  border: 1px solid #6D2F3E;
  padding: 44px 30px 22px 30px;
  width: 485px;
}
@media (max-width: 1300px) {
  .contacts {
    width: 440px;
  }
}
@media (max-width: 1100px) {
  .contacts {
    padding: 20px;
    width: 360px;
  }
}
@media (max-width: 800px) {
  .contacts {
    padding: 15px;
    width: 310px;
    margin-bottom: 40px;
    border-radius: 15px;
  }
}
@media (max-width: 700px) {
  .contacts {
    margin: 0 auto;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 30px 15px;
  }
}
@media (max-width: 550px) {
  .contacts {
    border: none;
    background-color: unset;
    box-shadow: unset;
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
    padding: 0 15px;
    margin-bottom: 40px;
  }
}

.contacts__title {
  width: 318px;
  height: auto;
  margin: 0 auto;
}
.contacts__title p {
  font-size: 20px;
  line-height: 115%;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #8C232D;
  font-family: "SeoulHangangCondensed-Light";
  width: -moz-fit-content;
  width: fit-content;
  text-decoration-thickness: 1px;
  display: none;
}
@media (max-width: 550px) {
  .contacts__title p {
    display: block;
  }
}
.contacts__title svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 550px) {
  .contacts__title svg {
    display: none;
  }
}
@media (max-width: 1300px) {
  .contacts__title {
    width: 230px;
  }
}
@media (max-width: 1100px) {
  .contacts__title {
    width: 160px;
  }
}
@media (max-width: 800px) {
  .contacts__title {
    width: 140px;
  }
}
@media (max-width: 550px) {
  .contacts__title {
    width: 100%;
  }
}

.contacts__info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 18px;
  margin-top: 40px;
  border-top: 2px solid #6D2F3E;
}
.contacts__info p, .contacts__info a {
  font-size: 21px;
  font-weight: 400;
  line-height: 115%;
  color: #4F1E00;
}
@media (max-width: 1100px) {
  .contacts__info p, .contacts__info a {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  .contacts__info p, .contacts__info a {
    font-size: 16px;
  }
}
.contacts__info p {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "SeoulHangangCB";
}
.contacts__info a {
  display: flex;
  align-items: center;
  font-family: "SeoulHangangCB";
}
.contacts__info a img {
  width: 41px;
  height: 41px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 5px;
}
@media (max-width: 1100px) {
  .contacts__info a img {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 800px) {
  .contacts__info a img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 550px) {
  .contacts__info a img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
}
@media (max-width: 550px) {
  .contacts__info a {
    margin-top: 13px;
  }
}
@media (max-width: 1300px) {
  .contacts__info {
    margin-top: 20px;
    padding-top: 10px;
  }
}
@media (max-width: 800px) {
  .contacts__info {
    margin-top: 10px;
  }
}
@media (max-width: 550px) {
  .contacts__info {
    border: unset;
    justify-content: flex-start;
    padding: 0;
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.contacts__schedule {
  text-align: center;
  padding: 15px 0;
  margin: 18px 0 14px 0;
  position: relative;
}
.contacts__schedule::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/mainpage/contacts-schedule-top.webp");
}
@media (max-width: 1300px) {
  .contacts__schedule::before {
    background-size: contain;
  }
}
@media (max-width: 550px) {
  .contacts__schedule::before {
    width: 280px;
    height: 9px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.contacts__schedule::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/mainpage/contacts-schedule-bottom.webp");
}
@media (max-width: 1300px) {
  .contacts__schedule::after {
    background-size: contain;
  }
}
@media (max-width: 550px) {
  .contacts__schedule::after {
    width: 280px;
    height: 9px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.contacts__schedule p {
  font-size: 21px;
  font-weight: 400;
  line-height: 115%;
  color: #4F1E00;
  font-family: "SeoulHangangCBL";
}
@media (max-width: 1100px) {
  .contacts__schedule p {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  .contacts__schedule p {
    font-size: 16px;
  }
}
@media (max-width: 550px) {
  .contacts__schedule p {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    font-weight: 600;
    font-family: "SeoulHangangCB";
  }
}
.contacts__schedule p + p {
  font-family: "SeoulHangangCB";
  margin-top: 5px;
}
@media (max-width: 550px) {
  .contacts__schedule p + p {
    margin-top: 20px;
    text-decoration: unset;
    font-weight: 400;
  }
}
@media (max-width: 1300px) {
  .contacts__schedule {
    margin: 10px 0;
  }
}
@media (max-width: 550px) {
  .contacts__schedule {
    margin: 20px 0 50px 0;
  }
}

.contacts__soc-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contacts__soc-box p {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 15px;
  color: #4F1E00;
  font-weight: 400;
  line-height: 115%;
  font-size: 21px;
  font-family: "SeoulHangangCB";
}
@media (max-width: 1100px) {
  .contacts__soc-box p {
    font-size: 18px;
    margin-right: 5px;
  }
}
@media (max-width: 800px) {
  .contacts__soc-box p {
    font-size: 16px;
    margin-right: 3px;
  }
}
@media (max-width: 550px) {
  .contacts__soc-box p {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .contacts__soc-box {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
}

.contacts__soc {
  display: flex;
  align-items: center;
}
.contacts__soc a {
  width: 41px;
  height: 41px;
  display: block;
}
.contacts__soc a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1100px) {
  .contacts__soc a {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 800px) {
  .contacts__soc a {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 550px) {
  .contacts__soc a {
    width: 40px;
    height: 40px;
  }
}
.contacts__soc a + a {
  margin-left: 5px;
}

/*страница о нас*/
.about-page__videoContainer {
  width: 100%;
  height: 100%;
}

.about-page-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-page__inner-img {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1024px) {
  .about-page__inner-img {
    display: block;
  }
}

.bread__crumbs-box {
  margin-top: 160px;
  margin-bottom: 80px;
}
.inner__main .bread__crumbs-box {
  margin-top: 40px;
}
@media (max-width: 1400px) {
  .bread__crumbs-box {
    margin-top: 135px;
    margin-bottom: 115px;
  }
}
@media (max-width: 1100px) {
  .bread__crumbs-box {
    margin-top: 115px;
    margin-bottom: 100px;
  }
}
@media (max-width: 950px) {
  .bread__crumbs-box {
    margin-top: 100px;
    margin-bottom: 80px;
  }
}
@media (max-width: 800px) {
  .bread__crumbs-box {
    margin-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .bread__crumbs-box {
    margin-bottom: 40px;
  }
}

.bread__crumbs {
  display: flex;
  align-items: center;
  color: #6D2F3E;
  font-weight: 400;
  line-height: 115%;
  font-size: 16px;
  font-family: "SeoulHangangCB";
}
.bread__crumbs a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.bread__crumbs img {
  width: 14px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 8px;
}
@media (max-width: 800px) {
  .bread__crumbs {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .bread__crumbs {
    font-size: 14px;
  }
}

.about-page__inner-title {
  width: 507px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-page__inner-title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1600px) {
  .about-page__inner-title {
    width: 450px;
  }
}
@media (max-width: 1230px) {
  .about-page__inner-title {
    width: 400px;
  }
}
@media (max-width: 1100px) {
  .about-page__inner-title {
    width: 350px;
  }
}
@media (max-width: 950px) {
  .about-page__inner-title {
    width: 300px;
  }
}
@media (max-width: 800px) {
  .about-page__inner-title {
    width: 250px;
  }
}
@media (max-width: 500px) {
  .about-page__inner-title {
    width: 134px;
  }
}

.restaurant__wrapper {
  position: relative;
}
.restaurant__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: -157px;
  width: 100%;
  height: 1150px;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/aboutpagebg.webp");
  z-index: -1;
  display: none;
}
@media (max-width: 500px) {
  .restaurant__wrapper::before {
    display: block;
  }
}
@media (max-width: 450px) {
  .restaurant__wrapper::before {
    height: 1100px;
  }
}
@media (max-width: 400px) {
  .restaurant__wrapper::before {
    height: 1140px;
  }
}

.restaurant__title {
  display: flex;
}
.restaurant__title svg + svg {
  margin-left: 20px;
}
@media (max-width: 650px) {
  .restaurant__title svg + svg {
    margin-left: 10px;
  }
}
@media (max-width: 500px) {
  .restaurant__title svg + svg {
    margin-left: 0;
    margin-top: 12px;
  }
}
.restaurant__title .restaurant__title1 {
  width: 364px;
  height: 43px;
}
@media (max-width: 1000px) {
  .restaurant__title .restaurant__title1 {
    width: 290px;
    height: auto;
  }
}
@media (max-width: 800px) {
  .restaurant__title .restaurant__title1 {
    width: 250px;
  }
}
@media (max-width: 650px) {
  .restaurant__title .restaurant__title1 {
    width: 190px;
  }
}
.restaurant__title .restaurant__title2 {
  width: 511px;
  height: 43px;
}
@media (max-width: 1000px) {
  .restaurant__title .restaurant__title2 {
    width: 440px;
    height: auto;
  }
}
@media (max-width: 800px) {
  .restaurant__title .restaurant__title2 {
    width: 350px;
  }
}
@media (max-width: 650px) {
  .restaurant__title .restaurant__title2 {
    width: 260px;
  }
}
@media (max-width: 500px) {
  .restaurant__title {
    flex-direction: column;
  }
}

.restaurant {
  display: flex;
  align-items: stretch;
  margin-top: 54px;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .restaurant {
    margin-top: 40px;
  }
}
@media (max-width: 800px) {
  .restaurant {
    margin-top: 30px;
  }
}
@media (max-width: 550px) {
  .restaurant {
    flex-direction: column;
    margin-top: 16px;
  }
}

.restaurant__left {
  width: 48%;
  height: auto;
  border: 1px solid #6D2F3E;
  border-radius: 24px;
}
.restaurant__left a {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
  transition: all 0.5s;
  transform: scale(0.98);
}
.restaurant__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 22px;
}
.restaurant__left:hover a {
  transform: scale(1);
}
@media (max-width: 1600px) {
  .restaurant__left {
    height: 770px;
  }
}
@media (max-width: 1400px) {
  .restaurant__left {
    height: 730px;
  }
}
@media (max-width: 1100px) {
  .restaurant__left {
    height: 650px;
  }
}
@media (max-width: 950px) {
  .restaurant__left {
    height: auto;
  }
}
@media (max-width: 500px) {
  .restaurant__left {
    display: none;
  }
}

.restaurant__right {
  width: 49%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .restaurant__right {
    width: 100%;
  }
}

.restaurant__text {
  margin-bottom: 20px;
}
.restaurant__text p {
  color: #4F1E00;
  font-weight: 400;
  font-size: 24px;
  line-height: 115%;
  font-family: "SeoulHangangCondensed-Light";
}
.restaurant__text p span {
  display: block;
}
@media (max-width: 1100px) {
  .restaurant__text p {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .restaurant__text p {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .restaurant__text p {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .restaurant__text p {
    font-size: 16px;
  }
}
.restaurant__text p + p {
  margin-top: 32px;
}
@media (max-width: 1230px) {
  .restaurant__text p + p {
    margin-top: 20px;
  }
}
@media (max-width: 1100px) {
  .restaurant__text p + p {
    margin-top: 15px;
  }
}
@media (max-width: 950px) {
  .restaurant__text p + p {
    margin-top: 10px;
  }
}
@media (max-width: 500px) {
  .restaurant__text p + p {
    margin-top: 12px;
  }
}

.restaurant__right-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 1px solid #6D2F3E;
}
.restaurant__right-img a {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
  transition: all 0.5s;
  transform: scale(0.98);
}
@media (max-width: 500px) {
  .restaurant__right-img a {
    transform: scale(0.97);
  }
}
.restaurant__right-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 500px) {
  .restaurant__right-img img {
    border-radius: 7px;
  }
}
.restaurant__right-img:hover a {
  transform: scale(1);
}
@media (max-width: 500px) {
  .restaurant__right-img {
    border-radius: 10px;
  }
}

.atmosphere__wrapper {
  margin-top: 140px;
}
@media (max-width: 950px) {
  .atmosphere__wrapper {
    margin-top: 110px;
  }
}
@media (max-width: 800px) {
  .atmosphere__wrapper {
    margin-top: 80px;
  }
}
@media (max-width: 500px) {
  .atmosphere__wrapper {
    margin-top: 60px;
  }
}

.atmosphere__title {
  display: flex;
}
.atmosphere__title svg + svg {
  margin-left: 20px;
}
@media (max-width: 650px) {
  .atmosphere__title svg + svg {
    margin-left: 10px;
  }
}
@media (max-width: 500px) {
  .atmosphere__title svg + svg {
    margin-left: 0;
    margin-top: 12px;
  }
}
.atmosphere__title .atmosphere__title1 {
  width: 334px;
  height: 43px;
}
@media (max-width: 1000px) {
  .atmosphere__title .atmosphere__title1 {
    width: 280px;
    height: auto;
  }
}
@media (max-width: 800px) {
  .atmosphere__title .atmosphere__title1 {
    width: 230px;
  }
}
@media (max-width: 650px) {
  .atmosphere__title .atmosphere__title1 {
    width: 173px;
  }
}
.atmosphere__title .atmosphere__title2 {
  width: 487px;
  height: 43px;
}
@media (max-width: 1000px) {
  .atmosphere__title .atmosphere__title2 {
    width: 440px;
    height: auto;
  }
}
@media (max-width: 800px) {
  .atmosphere__title .atmosphere__title2 {
    width: 350px;
  }
}
@media (max-width: 650px) {
  .atmosphere__title .atmosphere__title2 {
    width: 238px;
  }
}
@media (max-width: 500px) {
  .atmosphere__title {
    flex-direction: column;
  }
}

.atmosphere {
  margin-top: 54px;
  margin-bottom: 202px;
}
@media(max-width: 1400px){
    .atmosphere {
        margin-bottom: 176px;
    }
}
@media(max-width: 1100px){
    .atmosphere {
        margin-bottom: 160px;
    }
}
@media(max-width: 950px){
    .atmosphere {
        margin-bottom: 150px;
    }
}
@media(max-width: 800px){
    .atmosphere {
        margin-bottom: 140px;
    }
}
.atmosphere p {
  font-size: 24px;
  line-height: 115%;
  font-weight: 400;
  color: #4F1E00;
  font-family: "SeoulHangangCondensed-Light";
}
.atmosphere p span {
  display: block;
}
@media (max-width: 1100px) {
  .atmosphere p {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .atmosphere p {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .atmosphere p {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .atmosphere p {
    font-size: 16px;
  }
}
.atmosphere p + p {
  margin-top: 32px;
}
@media (max-width: 1230px) {
  .atmosphere p + p {
    margin-top: 20px;
  }
}
@media (max-width: 1100px) {
  .atmosphere p + p {
    margin-top: 15px;
  }
}
@media (max-width: 950px) {
  .atmosphere p + p {
    margin-top: 10px;
  }
}
@media (max-width: 500px) {
  .atmosphere p + p {
    margin-top: 12px;
  }
}
@media (max-width: 1000px) {
  .atmosphere {
    margin-top: 40px;
  }
}
@media (max-width: 800px) {
  .atmosphere {
    margin-top: 30px;
  }
}
@media (max-width: 550px) {
  .atmosphere {
    margin-top: 16px;
  }
}

.about__banner {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 256px;
  margin-bottom: 122px;
}
.about__banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: -116px;
  width: 100%;
  height: 116px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/bottomimgbg1.webp");
}
@media (max-width: 1400px) {
  .about__banner::before {
    height: 95px;
    top: -95px;
  }
}
@media (max-width: 1100px) {
  .about__banner::before {
    height: 80px;
    top: -80px;
  }
}
@media (max-width: 950px) {
  .about__banner::before {
    height: 70px;
    top: -70px;
  }
}
@media (max-width: 800px) {
  .about__banner::before {
    height: 60px;
    top: -60px;
  }
}
.about__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1400px) {
  .about__banner {
    margin-top: 220px;
  }
}
@media (max-width: 1100px) {
  .about__banner {
    margin-top: 180px;
  }
}
@media (max-width: 950px) {
  .about__banner {
    margin-top: 150px;
  }
}
@media (max-width: 800px) {
  .about__banner {
    margin-top: 120px;
  }
}
@media (max-width: 500px) {
  .about__banner {
    margin-top: 100px;
  }
}

/*страница банкетные залы*/
.banket-page__inner-title {
  flex-direction: column;
}
.banket-page__inner-title .banket-page__inner-title-top {
  width: 933px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  .banket-page__inner-title .banket-page__inner-title-top {
    width: 750px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1230px) {
  .banket-page__inner-title .banket-page__inner-title-top {
    width: 600px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1100px) {
  .banket-page__inner-title .banket-page__inner-title-top {
    width: 500px;
    margin-bottom: 15px;
  }
}
@media (max-width: 950px) {
  .banket-page__inner-title .banket-page__inner-title-top {
    width: 420px;
    margin-bottom: 10px;
  }
}
@media (max-width: 800px) {
  .banket-page__inner-title .banket-page__inner-title-top {
    width: 350px;
    margin-bottom: 5px;
  }
}
@media (max-width: 500px) {
  .banket-page__inner-title .banket-page__inner-title-top {
    width: 290px;
    margin-bottom: 0;
  }
}
.banket-page__inner-title .banket-page__inner-title-text {
  text-align: center;
  color: #E9DEC8;
  font-weight: 400;
  line-height: 115%;
  font-size: 36px;
  font-family: "SeoulHangangCondensed-Light";
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1600px) {
  .banket-page__inner-title .banket-page__inner-title-text {
    font-size: 32px;
  }
}
@media (max-width: 1230px) {
  .banket-page__inner-title .banket-page__inner-title-text {
    font-size: 26px;
  }
}
@media (max-width: 1100px) {
  .banket-page__inner-title .banket-page__inner-title-text {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .banket-page__inner-title .banket-page__inner-title-text {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .banket-page__inner-title .banket-page__inner-title-text {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .banket-page__inner-title .banket-page__inner-title-text {
    display: none;
  }
}

.banket-page-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.hall__wrapper-big {
  position: relative;
  margin-bottom: 202px;
}
.hall__wrapper-big::before {
  content: "";
  position: absolute;
  left: 0;
  top: -157px;
  width: 100%;
  height: 1200px;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/aboutpagebg.webp");
  z-index: -1;
  display: none;
}
@media (max-width: 500px) {
  .hall__wrapper-big::before {
    display: block;
  }
}
@media (max-width: 400px) {
  .hall__wrapper-big::before {
    height: 1230px;
  }
}

.hall__wrapper.hall__wrapper-small {
  margin-bottom: 140px;
}
@media (max-width: 1000px) {
  .hall__wrapper.hall__wrapper-small {
    margin-bottom: 120px;
  }
}
@media (max-width: 800px) {
  .hall__wrapper.hall__wrapper-small {
    margin-bottom: 90px;
  }
}
@media (max-width: 600px) {
  .hall__wrapper.hall__wrapper-small {
    margin-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .hall__wrapper.hall__wrapper-small {
    margin-bottom: 40px;
  }
}

.hall__wrapper + .hall__wrapper {
  margin-top: 140px;
}
@media (max-width: 1000px) {
  .hall__wrapper + .hall__wrapper {
    margin-top: 120px;
  }
}
@media (max-width: 800px) {
  .hall__wrapper + .hall__wrapper {
    margin-top: 90px;
  }
}
@media (max-width: 600px) {
  .hall__wrapper + .hall__wrapper {
    margin-top: 60px;
  }
}
@media (max-width: 500px) {
  .hall__wrapper + .hall__wrapper {
    margin-top: 40px;
  }
}

.hall__title {
  margin-bottom: 55px;
  width: 767px;
  height: auto;
}
@media (max-width: 1230px) {
  .hall__title {
    margin-bottom: 35px;
    width: 700px;
  }
}
@media (max-width: 950px) {
  .hall__title {
    margin-bottom: 25px;
    width: 600px;
  }
}
@media (max-width: 800px) {
  .hall__title {
    margin-bottom: 20px;
    width: 500px;
  }
}
@media (max-width: 600px) {
  .hall__title {
    margin-bottom: 10px;
    width: 400px;
  }
}
@media (max-width: 500px) {
  .hall__title {
    margin-bottom: 16px;
    width: 270px;
  }
}

.hall {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.hall__left {
  width: 48%;
  height: 860px;
  position: relative;
}
.hall__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1.2s ease-in-out;
  position: absolute;
  opacity: 0 !important;
  border-radius: 22px;
  border: 1px solid #6D2F3E;
  padding: 7px;
}
.hall__left img.activeHall {
  opacity: 1 !important;
}
@media (max-width: 1500px) {
  .hall__left {
    height: 780px;
  }
}
@media (max-width: 1300px) {
  .hall__left {
    height: 700px;
  }
}
@media (max-width: 1230px) {
  .hall__left {
    height: 650px;
  }
}
@media (max-width: 950px) {
  .hall__left {
    height: 550px;
  }
}
@media (max-width: 700px) {
  .hall__left {
    height: 450px;
  }
}
@media (max-width: 600px) {
  .hall__left {
    display: none;
  }
}

.hall__right {
  width: 49%;
}
@media (max-width: 1000px) {
  .hall__right {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .hall__right {
    width: 100%;
  }
}

.hall__text p {
  color: #4F1E00;
  font-weight: 400;
  line-height: normal;
  font-family: "SeoulHangangCB";
  font-size: 24px;
}
.hall__text p a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
}
@media (max-width: 1500px) {
  .hall__text p a {
    font-size: 30px;
  }
}
@media (max-width: 1230px) {
  .hall__text p a {
    font-size: 25px;
  }
}
@media (max-width: 950px) {
  .hall__text p a {
    font-size: 22px;
  }
}
@media (max-width: 800px) {
  .hall__text p a {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .hall__text p a {
    font-size: 18px;
  }
}
@media (max-width: 1500px) {
  .hall__text p {
    font-size: 23px;
  }
}
@media (max-width: 1230px) {
  .hall__text p {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .hall__text p {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .hall__text p {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .hall__text p {
    font-size: 16px;
  }
}
.hall__text p + p {
  margin-top: 32px;
}
@media (max-width: 1500px) {
  .hall__text p + p {
    margin-top: 28px;
  }
}
@media (max-width: 1300px) {
  .hall__text p + p {
    margin-top: 24px;
  }
}
@media (max-width: 1230px) {
  .hall__text p + p {
    margin-top: 20px;
  }
}
@media (max-width: 1100px) {
  .hall__text p + p {
    margin-top: 15px;
  }
}
@media (max-width: 950px) {
  .hall__text p + p {
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .hall__text p + p {
    margin-top: 12px;
  }
}

.hall__form {
  margin-top: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1500px) {
  .hall__form {
    margin-top: 28px;
  }
}
@media (max-width: 1300px) {
  .hall__form {
    margin-top: 24px;
  }
}
@media (max-width: 1230px) {
  .hall__form {
    margin-top: 20px;
  }
}
@media (max-width: 1100px) {
  .hall__form {
    margin-top: 15px;
  }
}
@media (max-width: 800px) {
  .hall__form {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .hall__form {
    margin-top: 40px;
  }
}
@media (max-width: 500px) {
  .hall__form {
    align-items: center;
  }
}

.hall__label {
  display: block;
  width: 48%;
  font-size: 15px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCB";
  color: #4F1E00;
}
.hall__label input {
  display: block;
  width: 100%;
  margin-top: 7px;
  height: auto;
  outline: none !important;
  border: none;
  padding: 10px 35px;
  font-size: 24px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCB";
  color: #E9DEC8;
  background-color: #6D2F3E;
  background-size: 100% auto;
  -webkit-clip-path: url(#myClip);
          clip-path: url(#myClip);
}
.hall__label input::-moz-placeholder {
  color: #E9DEC8;
}
.hall__label input::placeholder {
  color: #E9DEC8;
}
@media (max-width: 1500px) {
  .hall__label input {
    font-size: 23px;
  }
}
@media (max-width: 1230px) {
  .hall__label input {
    font-size: 22px;
  }
}
@media (max-width: 1000px) {
  .hall__label input {
    padding: 8px 20px;
  }
}
@media (max-width: 950px) {
  .hall__label input {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .hall__label input {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .hall__label input {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .hall__label input {
    font-size: 20px;
    padding: 10.5px 20px;
  }
}
@media (max-width: 950px) {
  .hall__label {
    width: 49%;
  }
}
@media (max-width: 800px) {
  .hall__label {
    width: 200px;
  }
}
@media (max-width: 600px) {
  .hall__label {
    width: 250px;
  }
}
@media (max-width: 500px) {
  .hall__label {
    width: 270px;
  }
}

.hall__btn {
  width: 48%;
  cursor: pointer;
  outline: none;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 1500px) {
  .hall__btn {
    font-size: 23px;
  }
}
@media (max-width: 1230px) {
  .hall__btn {
    font-size: 22px;
  }
}
@media (max-width: 1000px) {
  .hall__btn {
    padding: 8px 20px;
  }
}
@media (max-width: 950px) {
  .hall__btn {
    font-size: 20px;
    width: 49%;
  }
}
@media (max-width: 800px) {
  .hall__btn {
    font-size: 18px;
    width: 200px;
    margin-top: 15px;
  }
}
@media (max-width: 700px) {
  .hall__btn {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .hall__btn {
    font-size: 20px;
    width: 250px;
    margin-top: 20px;
    padding: 10.5px 20px;
  }
}
@media (max-width: 500px) {
  .hall__btn {
    width: 270px;
  }
}

.hall__nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 54px;
}
.hall__nav a {
  display: block;
  width: 49%;
  height: auto;
  outline: none;
  border-radius: 10px;
  border: 1px solid #6D2F3E;
}
.hall__nav a:hover img {
  transform: scale(1);
}
.hall__nav img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: all 0.5s;
  transform: scale(0.96);
}
@media (max-width: 1500px) {
  .hall__nav {
    margin-top: 40px;
  }
}
@media (max-width: 1300px) {
  .hall__nav {
    margin-top: 30px;
  }
}
@media (max-width: 1230px) {
  .hall__nav {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .hall__nav {
    display: none;
  }
}

.hall__mob {
  display: none;
  margin-top: 20px;
}
.hall__mob a {
  display: block;
  width: 49%;
  height: auto;
  outline: none;
  border: 1px solid #6D2F3E;
  border-radius: 10px;
}
.hall__mob a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transform: scale(0.96);
}
@media (max-width: 600px) {
  .hall__mob {
    display: flex;
    justify-content: space-between;
  }
}

/*страница оформление заказа*/
.inner__main {
  margin-top: 140px;
  position: relative;
}
@media (max-width: 1600px) {
  .inner__main {
    margin-top: 120px;
  }
}
@media (max-width: 1230px) {
  .inner__main {
    margin-top: 100px;
  }
}
@media (max-width: 1100px) {
  .inner__main {
    margin-top: 88.64px;
  }
}
@media (max-width: 900px) {
  .inner__main {
    margin-top: 78.64px;
  }
}
@media (max-width: 800px) {
  .inner__main {
    margin-top: 74.59px;
  }
}
@media (max-width: 500px) {
  .inner__main {
    margin-top: 75.61px;
  }
}

.order__wrapper {
  margin-bottom: 140px;
}
@media (max-width: 900px) {
  .order__wrapper {
    margin-bottom: 90px;
  }
}
@media (max-width: 500px) {
  .order__wrapper {
    margin-bottom: 40px;
  }
}

.order__form input {
  display: block;
  width: 100%;
  height: auto;
  outline: none !important;
  border: none;
  padding: 20px 30px;
  font-size: 20px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
  color: #4F1E00;
  background-color: transparent;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/inputsvg.svg");
}
.order__form input::-moz-placeholder {
  color: #4F1E00;
}
.order__form input::placeholder {
  color: #4F1E00;
}
@media (max-width: 1230px) {
  .order__form input {
    font-size: 19px;
    padding: 18px 25px;
  }
}
@media (max-width: 900px) {
  .order__form input {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .order__form input {
    font-size: 17px;
    padding: 16px 15px;
  }
}
@media (max-width: 500px) {
  .order__form input {
    font-size: 16px;
    padding: 10px;
  }
}

.order__form-title {
  color: #6D2F3E;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
  font-size: 36px;
  margin-bottom: 28px;
}
@media (max-width: 1400px) {
  .order__form-title {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
@media (max-width: 900px) {
  .order__form-title {
    font-size: 27px;
    margin-bottom: 15px;
  }
}
@media (max-width: 500px) {
  .order__form-title {
    font-size: 25px;
    margin-bottom: 12px;
  }
}

.buyer__input-box {
  width: 790px;
  margin-bottom: 35px;
}
.buyer__input-box .buyer-title {
  margin-bottom: 20px;
  color: #4F1E00;
  font-weight: 400;
  line-height: 115%;
  font-size: 24px;
  font-family: "SeoulHangangCondensed-Light";
}
@media (max-width: 1230px) {
  .buyer__input-box .buyer-title {
    font-size: 22px;
  }
}
@media (max-width: 900px) {
  .buyer__input-box .buyer-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (max-width: 500px) {
  .buyer__input-box .buyer-title {
    font-size: 19px;
  }
}
.buyer__input-box input + input {
  margin-top: 15px;
}
@media (max-width: 500px) {
  .buyer__input-box input + input {
    margin-top: 12px;
  }
}
@media (max-width: 900px) {
  .buyer__input-box {
    width: 100%;
  }
}

.address__inputs {
  margin-bottom: 35px;
}
.address__inputs .address__inputs-top {
  width: 790px;
  margin-bottom: 15px;
}
.address__inputs .address__inputs-top input + input {
  margin-top: 15px;
}
@media (max-width: 500px) {
  .address__inputs .address__inputs-top input + input {
    margin-top: 12px;
  }
}
@media (max-width: 900px) {
  .address__inputs .address__inputs-top {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .address__inputs .address__inputs-top {
    margin-bottom: 12px;
  }
}
.address__inputs .address__inputs-bottom {
  display: flex;
  justify-content: space-between;
}
.address__inputs .address__inputs-bottom input {
  width: 32%;
  background-image: url("../images/pagesbg/popupinputsvg.svg");
}

.payment-method {
  margin-bottom: 40px;
}

.payment-method-item + .payment-method-item, .delivery-method-item + .delivery-method-item {
  margin-top: 25px;
}
@media (max-width: 900px) {
  .payment-method-item + .payment-method-item, .delivery-method-item + .delivery-method-item {
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  .payment-method-item + .payment-method-item, .delivery-method-item + .delivery-method-item {
    margin-top: 12px;
  }
}

.payment-method-item, .delivery-method-item {
  width: -moz-fit-content;
  width: fit-content;
}
.payment-method-item input, .delivery-method-item input {
  display: none;
}
.payment-method-item .pay__variants-label, .delivery-method-item .dev__variants-label {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.payment-method-item .pay__variants-label svg, .delivery-method-item .dev__variants-label svg {
  width: 35px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}
.payment-method-item .pay__variants-label svg path, .delivery-method-item .dev__variants-label svg path {
  transition: all 0.5s;
  fill: transparent;
}
@media (max-width: 1230px) {
  .payment-method-item .pay__variants-label svg, .delivery-method-item .dev__variants-label svg {
    width: 30px;
  }
}
@media (max-width: 900px) {
  .payment-method-item .pay__variants-label svg, .delivery-method-item .dev__variants-label svg {
    width: 25px;
  }
}
.payment-method-item .pay__variants-label p, .delivery-method-item .dev__variants-label p {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
  color: #4F1E00;
}
@media (max-width: 1230px) {
  .payment-method-item .pay__variants-label p, .delivery-method-item .dev__variants-label p {
    font-size: 22px;
  }
}
@media (max-width: 900px) {
  .payment-method-item .pay__variants-label p, .delivery-method-item .dev__variants-label p {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .payment-method-item .pay__variants-label p, .delivery-method-item .dev__variants-label p {
    font-size: 19px;
  }
}
.payment-method-item:hover svg path, .delivery-method-item:hover svg path {
  fill: #6D2F3E;
}
.payment-method-item.payment-method-item-active svg path, .delivery-method-item.delivery-method-item-active svg path {
  fill: #6D2F3E;
}

.comment__box {
  margin-bottom: 35px;
}
.comment__box textarea {
  display: block;
  max-width: 1200px;
  width: 100%;
  min-height: 136px;
  height: auto;
  outline: none !important;
  border: none;
  padding: 45px;
  font-size: 24px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
  color: #4F1E00;
  background-color: transparent;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/textareasvg.svg");
}
.comment__box textarea::-moz-placeholder {
  color: #4F1E00;
}
.comment__box textarea::placeholder {
  color: #4F1E00;
}
@media (max-width: 1230px) {
  .comment__box textarea {
    font-size: 22px;
    padding: 35px;
    min-height: 120px;
  }
}
@media (max-width: 900px) {
  .comment__box textarea {
    font-size: 20px;
    padding: 25px;
    min-height: 100px;
  }
}
@media (max-width: 750px) {
  .custom-checkbox + label {
      flex-direction: column;
  }
}
@media (max-width: 700px) {
  .comment__box textarea {
    font-size: 18px;
    padding: 20px;
    min-height: 80px;
  }
}
@media (max-width: 500px) {
  .comment__box textarea {
    font-size: 16px;
    padding: 10px;
    min-height: 60px;
  }
}
@media (max-width: 500px) {
  .comment__box {
    margin-bottom: 12px;
  }
}

.order__form-btn {
  margin-top: 40px;
  cursor: pointer;
  font-size: 20px;
  padding: 20px 115px;
}
@media (max-width: 1230px) {
  .order__form-btn {
    padding: 15px 90px;
    font-size: 19px;
  }
}
@media (max-width: 900px) {
  .order__form-btn {
    padding: 14px 80px;
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .order__form-btn {
    padding: 12px 70px;
    font-size: 20px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto 0 auto;
  }
}

.politic a {
  display: inline-block;
  font-weight: 600;
}
.politic input {
  padding: 0;
  margin: 0;
  width: unset;
}
.politic label {
  font-family: "SeoulHangangCondensed-Light";
  font-weight: 300;
  color: #4F1E00;
  font-size: 16px;
  line-height: 130%;
  cursor: pointer;
}
@media (max-width: 500px) {
  .politic label {
    font-size: 14px;
  }
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 340px) {
  .custom-checkbox + label {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 43px;
  flex-shrink: 0;
  flex-grow: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/icons/payment-icon.svg");
  margin-right: 10px;
}
@media (max-width: 1230px) {
  .custom-checkbox + label::before {
    width: 30px;
    height: 36px;
  }
}
@media (max-width: 900px) {
  .custom-checkbox + label::before {
    width: 25px;
    height: 30.7px;
  }
}

.custom-checkbox:checked + label::before {
  background-image: url("../images/icons/checkedpaymenticon.svg");
}

.order__right-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
  width: 55.5%;
  z-index: -1;
  mix-blend-mode: screen;
}
.order__right-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 500px) {
  .order__right-bg img.order__right-bg-pc {
    display: none;
  }
}
.order__right-bg img.order__right-bg-mob {
  display: none;
}
@media (max-width: 500px) {
  .order__right-bg img.order__right-bg-mob {
    display: block;
  }
}

.order__left-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: auto;
  width: 40%;
  z-index: -1;
  mix-blend-mode: screen;
}
.order__left-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 500px) {
  .order__left-bg img.order__left-bg-pc {
    display: none;
  }
}
.order__left-bg img.order__left-bg-mob {
  display: none;
}
@media (max-width: 500px) {
  .order__left-bg img.order__left-bg-mob {
    display: block;
  }
}

/*страница корзина*/
.basket__choice {
  display: flex;
  align-items: center;
  padding: 16px 12px;
  margin-bottom: 24px;
  background-color: transparent;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/choicebg.svg");
}
@media (max-width: 700px) {
  .basket__choice {
    padding: 12px;
  }
}
@media (max-width: 500px) {
  .basket__choice {
    padding: 7px 12px 13px 10px;
    margin-bottom: 40px;
  }
}

.all__choice {
  display: flex;
  align-items: center;
  background-color: transparent;
  outline: none;
  font-size: 20px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
  color: #4F1E00;
  cursor: pointer;
}
.all__choice svg {
  width: 23px;
  height: auto;
  margin-right: 10px;
}
.all__choice svg path {
  transition: all 0.5s;
  fill: transparent;
}
@media (max-width: 900px) {
  .all__choice svg {
    width: 20px;
    height: 28px;
  }
}
@media (max-width: 700px) {
  .all__choice svg {
    width: 16px;
    height: 20px;
  }
}
@media (max-width: 500px) {
  .all__choice svg {
    width: 24px;
    height: 30px;
  }
}
.all__choice.all__choice-active svg path {
  fill: rgba(131, 32, 41, 0.6);
}
@media (max-width: 900px) {
  .all__choice {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .all__choice {
    font-size: 16px;
  }
}

.basket__item + .basket__item {
  margin-top: 34px;
}
@media (max-width: 700px) {
  .basket__item + .basket__item {
    margin-top: 40px;
  }
}

.basket__item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .basket__item {
    flex-direction: column;
  }
}

.basket__item-left {
  width: 378px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.basket__item-left.all__choice-active svg path {
  fill: rgba(131, 32, 41, 0.6);
}
.basket__item-left.basket__item-choice-active svg path {
  fill: rgba(131, 32, 41, 0.6);
}
@media (max-width: 1100px) {
  .basket__item-left {
    width: 333px;
  }
}
@media (max-width: 1050px) {
  .basket__item-left {
    width: 33%;
  }
}
@media (max-width: 700px) {
  .basket__item-left {
    margin-bottom: 12px;
    width: 380px;
  }
}
@media (max-width: 500px) {
  .basket__item-left {
    width: 100%;
  }
}

.basket__item-choice {
  width: 23px;
  height: auto;
  cursor: pointer;
  position: relative;
}
.basket__item-choice input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
}
.basket__item-choice label {
  width: 100%;
  height: 100%;
  display: block;
}
.basket__item-choice svg {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.basket__item-choice svg path {
  transition: all 0.5s;
  fill: transparent;
}
@media (max-width: 900px) {
  .basket__item-choice {
    width: 20px;
    height: 28px;
  }
}
@media (max-width: 700px) {
  .basket__item-choice {
    width: 16px;
    height: 20px;
  }
}
@media (max-width: 500px) {
  .basket__item-choice {
    width: 24px;
    height: 30px;
  }
}

.basket__item-img {
  width: 345px;
  height: auto;
  padding: 11px;
  border-radius: 8px;
  border: 1px solid #6D2F3E;
}
.basket__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 1100px) {
  .basket__item-img {
    width: 300px;
  }
}
@media (max-width: 1050px) {
  .basket__item-img {
    width: 88%;
  }
}
@media (max-width: 900px) {
  .basket__item-img {
    padding: 6px;
  }
}
@media (max-width: 700px) {
  .basket__item-img {
    width: 350px;
  }
}
@media (max-width: 500px) {
  .basket__item-img {
    width: 83%;
    padding: 8px;
  }
}

.basket__item-right {
  width: 794px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.basket__item-right::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background-image: url("../images/pagesbg/basket-item-rightbg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
@media (max-width: 700px) {
  .basket__item-right::after {
    display: none;
  }
}
@media (max-width: 1230px) {
  .basket__item-right {
    width: 730px;
  }
}
@media (max-width: 1180px) {
  .basket__item-right {
    width: 670px;
  }
}
@media (max-width: 1050px) {
  .basket__item-right {
    width: 65%;
  }
}
@media (max-width: 700px) {
  .basket__item-right {
    flex-wrap: wrap;
    width: 380px;
  }
}
@media (max-width: 500px) {
  .basket__item-right {
    width: 100%;
  }
}

.basket__item-text {
  width: 265px;
}
.basket__item-text .basket__item-name {
  font-size: 24px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCBL";
  color: #4F1E00;
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .basket__item-text .basket__item-name {
    font-size: 22px;
  }
}
@media (max-width: 1050px) {
  .basket__item-text .basket__item-name {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .basket__item-text .basket__item-name {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .basket__item-text .basket__item-name {
    font-size: 19px;
    margin-bottom: 12px;
  }
}
.basket__item-text .basket__item-desc {
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .basket__item-text .basket__item-desc {
    margin-bottom: 5px;
  }
}
.basket__item-text .basket__item-desc, .basket__item-text .basket__item-weight {
  font-size: 16px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCB";
  color: #4F1E00;
}
@media (max-width: 900px) {
  .basket__item-text .basket__item-desc, .basket__item-text .basket__item-weight {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .basket__item-text .basket__item-desc, .basket__item-text .basket__item-weight {
    font-size: 14px;
  }
}
@media (max-width: 1400px) {
  .basket__item-text {
    width: 240px;
  }
}
@media (max-width: 1050px) {
  .basket__item-text {
    width: 220px;
  }
}
@media (max-width: 900px) {
  .basket__item-text {
    width: 195px;
  }
}
@media (max-width: 700px) {
  .basket__item-text {
    width: 295px;
    margin-bottom: 25px;
  }
}
@media (max-width: 500px) {
  .basket__item-text {
    width: 75%;
  }
}
@media (max-width: 450px) {
  .basket__item-text {
    width: 72%;
  }
}
@media (max-width: 400px) {
  .basket__item-text {
    width: 68%;
  }
}
@media (max-width: 360px) {
  .basket__item-text {
    width: 64%;
  }
}
@media (max-width: 340px) {
  .basket__item-text {
    width: 62%;
  }
}

.basket__item-price {
  text-align: left;
  width: 95px;
}
.basket__item-price .basket__item-price-new {
  margin-bottom: 7px;
  font-size: 24px;
  font-weight: 400;
  line-height: 115%;
  font-family: "SeoulHangangCBL";
  color: #4F1E00;
}
@media (max-width: 1400px) {
  .basket__item-price .basket__item-price-new {
    font-size: 22px;
  }
}
@media (max-width: 1050px) {
  .basket__item-price .basket__item-price-new {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .basket__item-price .basket__item-price-new {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .basket__item-price .basket__item-price-new {
    font-size: 24px;
  }
}
.basket__item-price .basket__item-price-old {
  font-size: 16px;
  font-weight: 400;
  color: #4F1E00;
  line-height: 115%;
  font-family: "SeoulHangangCB";
  text-decoration: line-through;
}
@media (max-width: 900px) {
  .basket__item-price .basket__item-price-old {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .basket__item-price .basket__item-price-old {
    font-size: 16px;
  }
}
@media (max-width: 1400px) {
  .basket__item-price {
    width: 87px;
  }
}
@media (max-width: 1050px) {
  .basket__item-price {
    width: 77px;
  }
}
@media (max-width: 900px) {
  .basket__item-price {
    width: 70px;
  }
}
@media (max-width: 700px) {
  .basket__item-price {
    text-align: right;
  }
}
@media (max-width: 500px) {
  .basket__item-price {
    width: 100px;
  }
}

.basket-quantity__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 700px) {
  .basket-quantity__box {
    order: 6;
  }
}

.basket-quantity__value {
  display: block;
  color: #4F1E00;
  font-weight: 400;
  line-height: 115%;
  font-size: 24px;
  font-family: "SeoulHangangCBL";
  background-color: transparent;
  border: unset;
  outline: none;
  width: 50px;
  text-align: center;
  margin: 0 5px;
}
@media (max-width: 1400px) {
  .basket-quantity__value {
    font-size: 22px;
    width: 35px;
  }
}
@media (max-width: 1050px) {
  .basket-quantity__value {
    font-size: 20px;
    width: 30px;
  }
}
@media (max-width: 900px) {
  .basket-quantity__value {
    font-size: 18px;
    width: 24px;
  }
}
@media (max-width: 500px) {
  .basket-quantity__value {
    font-size: 24px;
    width: 40px;
  }
}

.basket-quantity__btn {
  outline: none;
  padding: 0;
  color: #4F1E00;
  background-color: transparent;
  font-size: 24px;
  line-height: normal;
  font-weight: 400;
  font-family: "SeoulHangangCBL";
  border-radius: 50%;
  border: 1px solid #4F1E00;
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .basket-quantity__btn {
    font-size: 22px;
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 1050px) {
  .basket-quantity__btn {
    font-size: 20px;
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 900px) {
  .basket-quantity__btn {
    font-size: 18px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 500px) {
  .basket-quantity__btn {
    font-size: 24px;
    width: 30px;
    height: 30px;
  }
}

.basket__total-price {
  width: 95px;
}
.basket__total-price p {
  font-weight: 600;
  line-height: 115%;
  color: #4F1E00;
  font-family: "SeoulHangangCBL";
  font-size: 24px;
}
@media (max-width: 1400px) {
  .basket__total-price p {
    font-size: 22px;
  }
}
@media (max-width: 1050px) {
  .basket__total-price p {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .basket__total-price p {
    font-size: 18px;
    font-family: "SeoulHangangCB";
  }
}
@media (max-width: 500px) {
  .basket__total-price p {
    font-size: 24px;
    font-family: "SeoulHangangCBL";
  }
}
@media (max-width: 1400px) {
  .basket__total-price {
    width: 87px;
  }
}
@media (max-width: 1050px) {
  .basket__total-price {
    width: 77px;
  }
}
@media (max-width: 900px) {
  .basket__total-price {
    width: 70px;
  }
}
@media (max-width: 700px) {
  .basket__total-price {
    order: -1;
    width: 100%;
    margin-bottom: 24px;
  }
}

.basket__item-delete {
  background-color: transparent;
  width: 21px;
  height: auto;
  cursor: pointer;
}
.basket__item-delete img {
  width: 21px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1050px) {
  .basket__item-delete {
    width: 18px;
  }
}
@media (max-width: 900px) {
  .basket__item-delete {
    width: 16px;
  }
}
@media (max-width: 500px) {
  .basket__item-delete {
    width: 21px;
  }
}

.order__details-wrapper {
  margin-top: 140px;
}
@media (max-width: 1100px) {
  .order__details-wrapper {
    margin-top: 110px;
  }
}
@media (max-width: 700px) {
  .order__details-wrapper {
    margin-top: 80px;
  }
}
@media (max-width: 500px) {
  .order__details-wrapper {
    margin-top: 45px;
  }
}

.order__details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1150px) {
  .order__details {
    justify-content: unset;
  }
}
@media (max-width: 700px) {
  .order__details {
    flex-direction: column-reverse;
  }
}

.to__pay-box {
  width: 390px;
}
@media (max-width: 1150px) {
  .to__pay-box {
    width: 300px;
    margin-right: 45px;
  }
}
@media (max-width: 900px) {
  .to__pay-box {
    width: 250px;
    margin-right: 20px;
  }
}
@media (max-width: 500px) {
  .to__pay-box {
    width: 290px;
    margin: 0 auto;
  }
}

.to__pay-box-title {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCBL";
  color: #4F1E00;
}
@media (max-width: 1400px) {
  .to__pay-box-title {
    font-size: 22px;
  }
}
@media (max-width: 1150px) {
  .to__pay-box-title {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .to__pay-box-title {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .to__pay-box-title {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .to__pay-box-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.to__pay-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.to__pay-item p {
  font-size: 16px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
  width: -moz-fit-content;
  width: fit-content;
  color: #4F1E00;
}
.to__pay-item.to__pay-item-total {
  padding-top: 17px;
  margin-top: 56px;
  position: relative;
}
.to__pay-item.to__pay-item-total::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 7px;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/to-pay-itemline.webp");
}
.to__pay-item.to__pay-item-total p {
  font-family: "SeoulHangangCBL";
}
@media (max-width: 900px) {
  .to__pay-item.to__pay-item-total {
    margin-top: 35px;
  }
}

.to__pay-btn {
  width: 100%;
  text-align: center;
  font-size: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 35px;
}
@media (max-width: 1150px) {
  .to__pay-btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 900px) {
  .to__pay-btn {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .to__pay-btn {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .to__pay-btn {
    font-size: 20px;
  }
}

.order__details-info {
  font-size: 24px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCBL";
  color: #4F1E00;
  width: 668px;
}
@media (max-width: 1400px) {
  .order__details-info {
    font-size: 22px;
  }
}
@media (max-width: 1150px) {
  .order__details-info {
    font-size: 20px;
    width: 500px;
  }
}
@media (max-width: 900px) {
  .order__details-info {
    font-size: 18px;
    width: 400px;
  }
}
@media (max-width: 700px) {
  .order__details-info {
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .order__details-info {
    font-size: 15px;
    font-family: "SeoulHangangCondensed-Light";
    margin-bottom: 12px;
  }
}

.products__offers-wrapper {
  margin-top: 140px;
  margin-bottom: 122px;
  position: relative;
}
@media (max-width: 1400px) {
  .products__offers-wrapper {
    margin-bottom: 95px;
  }
}
@media (max-width: 1100px) {
  .products__offers-wrapper {
    margin-bottom: 80px;
  }
}
@media (max-width: 950px) {
  .products__offers-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 800px) {
  .products__offers-wrapper {
    margin-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .products__offers-wrapper {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .products__offers-wrapper h2 {
    padding: 0 15px;
  }
}

@media (max-width: 700px) {
  .products__offers-wrapper {
    margin-top: 80px;
  }
}


.products__offers-slider-container {
  position: relative;
}
@media (max-width: 500px) {
  .products__offers-slider-container {
    padding: 0 0 0 15px;
  }
}

.products__offers-img {
  display: flex;
  flex-direction: column;
}
.products__offers-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 15px;
  border-radius: 25px;
  border: 1px solid #6D2F3E;
  margin-bottom: 23px;
}
@media (max-width: 900px) {
  .products__offers-img img {
    padding: 6px;
    border-radius: 15px;
  }
}

.products__offers-info {
  display: flex;
  flex-direction: column;
}
.products__offers-info p {
  font-size: 24px;
  font-weight: 400;
  line-height: 115%;
  color: #4F1E00;
  font-family: "SeoulHangangCB";
}
.products__offers-info p.products__offers-name {
  font-family: "SeoulHangangCBL";
  margin-bottom: 7px;
}
.products__offers-info p.products__offers-weight {
  margin-top: auto;
  margin-bottom: 7px;
}
@media (max-width: 1400px) {
  .products__offers-info p {
    font-size: 22px;
  }
}
@media (max-width: 1100px) {
  .products__offers-info p {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .products__offers-info p {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .products__offers-info p {
    font-size: 16px;
  }
}

.products__offers-slider-container .swiper-button-prev:after, .products__offers-slider-container .swiper-container-rtl .swiper-button-next:after {
  content: "";
}

.products__offers-slider-container .swiper-button-next:after, .products__offers-slider-container .swiper-container-rtl .swiper-button-prev:after {
  content: "";
}

.products__offers-slider-container .swiper-button-prev, .products__offers-slider-container .swiper-container-rtl .swiper-button-next {
  width: 70px;
  height: 70px;
  background-image: url("../images/icons/arrowleft.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  background-color: transparent;
  transition: all 0.5s;
  left: -120px;
  top: 34%;
  transform: translateY(-50%);
  margin-top: unset;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid #6D2F3E;
}
@media (max-width: 1500px) {
  .products__offers-slider-container .swiper-button-prev, .products__offers-slider-container .swiper-container-rtl .swiper-button-next {
    width: 50px;
    height: 50px;
    background-size: 9px;
    left: -60px;
  }
}
@media (max-width: 1350px) {
  .products__offers-slider-container .swiper-button-prev, .products__offers-slider-container .swiper-container-rtl .swiper-button-next {
    width: 30px;
    height: 30px;
    background-size: 6px;
    left: -35px;
    top: 38%;
  }
}
@media (max-width: 1300px) {
  .products__offers-slider-container .swiper-button-prev, .products__offers-slider-container .swiper-container-rtl .swiper-button-next {
    display: none;
  }
}

.products__offers-slider-container .swiper-button-next, .products__offers-slider-container .swiper-container-rtl .swiper-button-prev {
  width: 70px;
  height: 70px;
  background-image: url("../images/icons/arrowright.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  margin-top: unset;
  transition: all 0.5s;
  right: -120px;
  top: 34%;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #6D2F3E;
}
@media (max-width: 1500px) {
  .products__offers-slider-container .swiper-button-next, .products__offers-slider-container .swiper-container-rtl .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-size: 9px;
    right: -60px;
  }
}
@media (max-width: 1350px) {
  .products__offers-slider-container .swiper-button-next, .products__offers-slider-container .swiper-container-rtl .swiper-button-prev {
    width: 30px;
    height: 30px;
    background-size: 6px;
    right: -35px;
    top: 38%;
  }
}
@media (max-width: 1300px) {
  .products__offers-slider-container .swiper-button-next, .products__offers-slider-container .swiper-container-rtl .swiper-button-prev {
    display: none;
  }
}

.products__offers-slider-container .swiper-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  bottom: -40px;
}
@media (max-width: 1300px) {
  .products__offers-slider-container .swiper-pagination {
    display: flex;
  }
}
.products__offers-slider-container .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background-color: #E5DEC9 !important;
  border: 1px solid #6D2F3E;
  opacity: 1 !important;
}
.products__offers-slider-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #6D2F3E !important;
}

/*страница доставка*/
.delivery-page__inner-title {
  width: 800px;
  height: auto;
}
@media(max-width: 1600px) {
    .delivery-page__inner-title {
      width: 750px;
    }
}
@media(max-width: 1230px) {
    .delivery-page__inner-title {
      width: 600px;
    }
}
@media(max-width: 1100px) {
    .delivery-page__inner-title {
      width: 500px;
    }
}
@media(max-width: 950px) {
    .delivery-page__inner-title {
      width: 400px;
    }
}
@media(max-width: 800px) {
    .delivery-page__inner-title {
      width: 300px;
    }
}
@media(max-width: 500px) {
    .delivery-page__inner-title {
      width: 270px;
    }
}
.delivery-page__inner-title img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.delivery-page__inner-title h1 {
  font-size: 85px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCBL";
  color: #E7DEC8;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
}
@media (max-width: 1600px) {
  .delivery-page__inner-title h1 {
    font-size: 75px;
  }
}
@media (max-width: 1230px) {
  .delivery-page__inner-title h1 {
    font-size: 65px;
  }
}
@media (max-width: 1100px) {
  .delivery-page__inner-title h1 {
    font-size: 60px;
  }
}
@media (max-width: 950px) {
  .delivery-page__inner-title h1 {
    font-size: 55px;
  }
}
@media (max-width: 800px) {
  .delivery-page__inner-title h1 {
    font-size: 50px;
    padding: 0 15px;
  }
}
@media (max-width: 700px) {
  .delivery-page__inner-title h1 {
    font-size: 45px;
  }
}
@media (max-width: 600px) {
  .delivery-page__inner-title h1 {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  .delivery-page__inner-title h1 {
    font-size: 35px;
  }
}

.delivery__wrapper {
  padding-bottom: 140px;
  position: relative;
}
.delivery__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: -157px;
  width: 100%;
  height: 1200px;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/aboutpagebg.webp");
  z-index: -1;
  display: none;
}
@media (max-width: 500px) {
  .delivery__wrapper::before {
    display: block;
  }
  .delivery__wrapper .container {
      padding: 0;
  }
}
@media (max-width: 400px) {
  .delivery__wrapper::before {
    height: 1500px;
  }
}
@media (max-width: 1230px) {
  .delivery__wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 800px) {
  .delivery__wrapper {
    padding-bottom: 70px;
  }
}
@media (max-width: 500px) {
  .delivery__wrapper {
    padding-bottom: 40px;
  }
}

.delivery {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .delivery {
    flex-direction: column;
  }
}

.delivery__prod-title {
  font-family: "SeoulHangangCBL";
  color: #8C232D;
  text-transform: uppercase;
  margin-bottom: 45px;
}
@media (max-width: 1230px) {
  .delivery__prod-title {
    margin-bottom: 35px;
  }
}
@media (max-width: 600px) {
  .delivery__prod-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .delivery__prod-title {
    color: #6D2F3E;
    padding: 0 15px;
  }
}

.delivery__nav {
  width: 260px;
}
.delivery__nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.delivery__nav ul a {
  display: flex;
  align-items: center;
  color: #8C232D;
  font-weight: 400;
  font-size: 24px;
  line-height: 115%;
  font-family: "SeoulHangangCBL";
}
.delivery__nav ul a img {
  width: 50px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 25px;
}
@media (max-width: 1230px) {
  .delivery__nav ul a img {
    width: 35px;
    margin-right: 10px;
  }
}
@media (max-width: 950px) {
  .delivery__nav ul a img {
    width: 25px;
    margin-right: 5px;
  }
}
@media (max-width: 700px) {
  .delivery__nav ul a img {
    width: 20px;
  }
}
@media (max-width: 1230px) {
  .delivery__nav ul a {
    font-size: 20px;
  }
}
@media (max-width: 950px) {
  .delivery__nav ul a {
    font-size: 17px;
  }
}
@media (max-width: 700px) {
  .delivery__nav ul a {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .delivery__nav ul {
    display: none;
  }
}
.delivery__nav li + li {
  margin-top: 30px;
}
@media (max-width: 1230px) {
  .delivery__nav li + li {
    margin-top: 20px;
  }
}
@media (max-width: 700px) {
  .delivery__nav li + li {
    margin-top: 15px;
  }
}
@media (max-width: 1230px) {
  .delivery__nav {
    width: 200px;
  }
}
@media (max-width: 950px) {
  .delivery__nav {
    width: 160px;
  }
}
@media (max-width: 700px) {
  .delivery__nav {
    width: 150px;
  }
}
@media (max-width: 500px) {
  .delivery__nav {
    width: 100%;
    position: sticky;
    top: 70.13px;
    z-index: 89;
  }
}

.delivery__products-box {
  width: 74%;
}
@media (max-width: 1230px) {
  .delivery__products-box {
    width: 80%;
  }
}
@media (max-width: 1100px) {
  .delivery__products-box {
    width: 76%;
  }
}
@media (max-width: 950px) {
  .delivery__products-box {
    width: 79%;
  }
}
@media (max-width: 850px) {
  .delivery__products-box {
    width: 76%;
  }
}
@media (max-width: 750px) {
  .delivery__products-box {
    width: 73%;
  }
}
@media (max-width: 600px) {
  .delivery__products-box {
    width: 68%;
  }
}
@media (max-width: 500px) {
  .delivery__products-box {
    width: 100%;
    padding: 0 15px;
  }
}

.delivery__products {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: -41px -22.5px;
}
@media (max-width: 1250px) {
  .delivery__products {
    margin: -30px -15px;
  }
}
@media (max-width: 950px) {
  .delivery__products {
    margin: -20px -7.5px;
  }
}
@media (max-width: 450px) {
  .delivery__products {
    margin: 0;
  }
}

.delivery__products-item {
  width: calc(33.33% - 45px);
  margin: 41px 22.5px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1250px) {
  .delivery__products-item {
    width: calc(33.33% - 30px);
    margin: 30px 15px;
  }
}
@media (max-width: 950px) {
  .delivery__products-item {
    width: calc(33.33% - 15px);
    margin: 20px 7.5px;
  }
}
@media (max-width: 800px) {
  .delivery__products-item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 450px) {
  .delivery__products-item {
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }
}

.delivery__products-img {
  width: 100%;
  height: auto;
  border-radius: 10.5px;
  border: 1px solid #6D2F3E;
  margin-bottom: 30px;
}
.delivery__products-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10.5px;
  transition: all 0.5s;
  transform: scale(0.95);
  min-height: 396px;
}
.delivery__products-img:hover img {
  transform: scale(1);
}
@media (max-width: 600px) {
  .delivery__products-img {
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .delivery__products-img {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
@media (max-width: 400px) {
  .delivery__products-img {
    height: auto;
  }
}
/* @media (max-width: 380px) {
  .delivery__products-img {
    height: 230px;
  }
}
@media (max-width: 350px) {
  .delivery__products-img {
    height: 210px;
  }
} */

.delivery__products-text {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.delivery__products-title {
    /* margin-bottom: 30px; */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media (max-width: 1230px) {
  .delivery__products-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 1100px) {
  .delivery__products-title {
    margin-bottom: 15px;
  }
}

@media (max-width: 950px) {
  .delivery__products-title {
    margin-bottom: 10px;
  }
}

@media (max-width: 500px) {
  .delivery__products-title {
    margin-bottom: 17px;
  }
}

.delivery__products-name {
  font-size: 32px;
  font-weight: 400;
  line-height: 115%;
  font-family: "SeoulHangangCBL";
  color: #6D2F3E;
  margin-bottom: 30px;
  margin-right: 5px;
  width: fit-content;
}
@media (max-width: 1230px) {
  .delivery__products-name {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1100px) {
  .delivery__products-name {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media (max-width: 950px) {
  .delivery__products-name {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .delivery__products-name {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .delivery__products-name {
    font-size: 17px;
    margin-bottom: 17px;
  }
}
@media (max-width: 450px) {
  .delivery__products-name {
    font-size: 20px;
  }
}

.delivery__products-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 80px;
    height: auto;
    position: relative;
}

@media (max-width: 1100px) {
    .delivery__products-icons {
        width: 60px;
    }
}

@media (max-width: 600px) {
    .delivery__products-icons {
        width: 50px;
    }
}

.delivery__products-icons img {
    width: 40px;
    height: auto;
    object-fit: cover;
}

@media(max-width: 1100px) {
    .delivery__products-icons img {
        width: 30px;
    }
}

@media(max-width: 600px) {
    .delivery__products-icons img {
        width: 25px;
    }
}

.delivery__products-icons-text {
    position: absolute;
    right: 0;
    top: 45px;
    z-index: 5;
    background-color: #fff;
    border: 1px solid #6D2F3E;
    padding: 9px;
    width: 250px;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
}

@media(max-width: 1100px) {
    .delivery__products-icons-text {
        width: 200px;
        top: 35px;
    }
}

@media(max-width: 850px) {
    .delivery__products-icons-text {
        width: 150px;
    }
}

@media(max-width: 800px) {
    .delivery__products-icons-text {
        width: 200px;
    }
}

@media(max-width: 600px) {
    .delivery__products-icons-text {
        width: 150px;
        top: 30px;
    }
}

@media(max-width: 500px) {
    .delivery__products-icons-text {
        width: 290px;
    }
}

@media(min-width: 1001px) {
    .delivery__products-icons img:hover ~ .delivery__products-icons-text {
        opacity: 1;
        visibility: visible;
    }
}

@media(max-width: 1100px) {
    .delivery__products-icons-text.delivactive {
        opacity: 1;
        visibility: visible;
    }
}

.delivery__products-icons-text p {
    color: #4F1E00;
    font-family: "SeoulHangangCondensed-Light";
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

@media(max-width: 850px) {
    .delivery__products-icons-text p {
        font-size: 13px;
    }
}

.droparrow {
    position: absolute;
    right: 25px;
    width: 12px;
    height: 10px;
    background-color: #fff;
    z-index: 16;
    top: -4px;
}

.droparrow::before {
    content: '';
    width: 10px;
    height: 1px;
    transform: rotate(45deg);
    background-color: #6D2F3E;
    z-index: 16;
    position: absolute;
    right: -2.5px;
}

.droparrow::after {
    content: '';
    width: 10px;
    height: 1px;
    transform: rotate(-45deg);
    background-color: #6D2F3E;
    z-index: 16;
    position: absolute;
    left: -2.5px;
}

.delivery__products-info {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.delivery__products-weight {
  font-size: 24px;
  font-weight: 400;
  line-height: 115%;
  font-family: "SeoulHangangCondensed-Light";
  color: #4F1E00;
}
@media (max-width: 1230px) {
  .delivery__products-weight {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .delivery__products-weight {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .delivery__products-weight {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .delivery__products-weight {
    font-size: 19px;
  }
}

.delivery__products-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 115%;
  font-family: "SeoulHangangCB";
  color: #4F1E00;
  margin-top: 15px;
  min-height: 80px;
}
@media (max-width: 1100px) {
  .delivery__products-desc {
    min-height: 95px;
  }
}
@media (max-width: 850px) {
  .delivery__products-desc {
    font-size: 15px;
    margin-top: 10px;
    min-height: 105px;
  }
}
@media (max-width: 800px) {
  .delivery__products-desc {
    min-height: 85px;
  }
}
@media (max-width: 600px) {
  .delivery__products-desc {
    font-size: 14px;
    margin-top: 5px;
    min-height: 95px;
  }
}
@media (max-width: 500px) {
  .delivery__products-desc {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .delivery__products-desc {
    min-height: unset;
  }
}

.delivery__products-btn {
  margin-top: 15px;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 1230px) {
  .delivery__products-btn {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .delivery__products-btn {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .delivery__products-btn {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .delivery__products-btn {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .delivery__products-btn {
    margin: 15px auto 0 auto;
    width: 200px;
  }
}

.delivery__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}
@media (max-width: 950px) {
  .delivery__btns {
    margin-top: 20px;
  }
}

.delivery__products-price {
  font-size: 36px;
  font-weight: 400;
  line-height: 115%;
  font-family: "SeoulHangangCBL";
  color: #6D2F3E;
}
@media (max-width: 1230px) {
  .delivery__products-price {
    font-size: 25px;
  }
}
@media (max-width: 1100px) {
  .delivery__products-price {
    font-size: 23px;
  }
}
@media (max-width: 950px) {
  .delivery__products-price {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .delivery__products-price {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .delivery__products-price {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .delivery__products-price {
    font-size: 24px;
  }
}

.delivery-quantity__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.delivery-quantity__btn {
  outline: none;
  padding: 0;
  color: #4F1E00;
  background-color: transparent;
  font-size: 24px;
  line-height: normal;
  font-weight: 400;
  font-family: "SeoulHangangCBL";
  border-radius: 50%;
  border: 1px solid #4F1E00;
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1230px) {
  .delivery-quantity__btn {
    font-size: 20px;
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 950px) {
  .delivery-quantity__btn {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .delivery-quantity__btn {
    font-size: 16px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 500px) {
  .delivery-quantity__btn {
    font-size: 20px;
    width: 25px;
    height: 25px;
  }
}

.delivery-quantity__value {
  display: block;
  color: #4F1E00;
  font-weight: 400;
  line-height: 115%;
  font-size: 24px;
  font-family: "SeoulHangangCBL";
  background-color: transparent;
  border: unset;
  outline: none;
  width: 50px;
  text-align: center;
  margin: 0 5px;
}
@media (max-width: 1230px) {
  .delivery-quantity__value {
    font-size: 20px;
    width: 30px;
  }
}
@media (max-width: 950px) {
  .delivery-quantity__value {
    font-size: 18px;
    width: 25px;
  }
}
@media (max-width: 600px) {
  .delivery-quantity__value {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .delivery-quantity__value {
    font-size: 20px;
    width: 30px;
  }
}

.delivery__bg-left {
  position: absolute;
  top: -318px;
  width: 24.7%;
  height: auto;
  left: 6%;
  z-index: -1;
}
.delivery__bg-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 500px) {
  .delivery__bg-left {
    display: none;
  }
}

.delivery__bg-center {
  position: absolute;
  top: -318px;
  width: 24.7%;
  height: auto;
  right: 29.3%;
  z-index: -1;
}
.delivery__bg-center img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 500px) {
  .delivery__bg-center {
    display: none;
  }
}

.delivery__bg-right {
  position: absolute;
  bottom: 0;
  width: 24.7%;
  height: auto;
  right: 88px;
  right: 4.5%;
  z-index: -1;
}
.delivery__bg-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 500px) {
  .delivery__bg-right {
    display: none;
  }
}

.delivery__slider-container {
  display: none;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .delivery__slider-container {
    display: block;
    background-color: #e6d6c4;
    margin-bottom: 30px;
    padding: 10px 0;
  }
}

.delivery__slider .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
  width: 200px;
}
.delivery__slider a {
  text-align: center;
  display: block;
  color: #E7DEC8;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  font-family: "SeoulHangangCBL";
  padding: 7px 15px;
  background-color: #6D2F3E;
  -webkit-clip-path: url(#myClip);
          clip-path: url(#myClip);
}

/*footer*/
footer {
  background-image: url("../images/pagesbg/footerbg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0 100px 0;
  position: relative;
  box-shadow: 0px -10px 20px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), rgba(109, 47, 62, 0.95);
  z-index: -1;
}
footer a, footer p:not(.footer__logo) {
  font-size: 20px;
  color: #E9DEC8;
  line-height: 125%;
  font-weight: 400;
  font-family: "SeoulHangangCondensed-Light";
}
@media (max-width: 1100px) {
  footer a, footer p:not(.footer__logo) {
    font-size: 18px;
  }
}
@media (max-width: 950px) {
  footer a, footer p:not(.footer__logo) {
    font-size: 17px;
  }
}
@media (max-width: 800px) {
  footer a, footer p:not(.footer__logo) {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  footer a, footer p:not(.footer__logo) {
    font-size: 18px;
  }
}
@media (max-width: 550px) {
  footer a, footer p:not(.footer__logo) {
    font-size: 16px;
  }
}
@media (max-width: 1500px) {
  footer {
    padding: 60px 0;
  }
}
@media (max-width: 1100px) {
  footer {
    padding: 40px 0;
  }
}
@media (max-width: 800px) {
  footer {
    padding: 30px 0;
  }
}
@media (max-width: 550px) {
  footer {
    padding: 10px 0 30px 0;
  }
}

.footer__cnt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .footer__cnt {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 550px) {
  .footer__cnt {
    flex-direction: column;
  }
}

.footer__title {
  display: none;
}
@media (max-width: 550px) {
  .footer__title {
    display: block;
    margin-bottom: 50px;
  }
}

.footer__logo {
  display: block;
  width: 188px;
  height: 70px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1100px) {
  .footer__logo {
    height: auto;
    width: 150px;
  }
}
@media (max-width: 800px) {
  .footer__logo {
    width: 120px;
  }
}
@media (max-width: 700px) {
  .footer__logo {
    margin: 0 auto 20px auto;
  }
}
@media (max-width: 550px) {
  .footer__logo {
    display: none;
  }
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 370px;
}
.footer__menu li {
  width: 50%;
}
@media (max-width: 700px) {
  .footer__menu li {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 550px) {
  .footer__menu li:nth-child(2) {
    order: 6;
    margin-top: 20px;
  }
}
@media (max-width: 550px) {
  .footer__menu li:nth-child(4) {
    order: 7;
  }
}
@media (max-width: 700px) {
  .footer__menu li + li {
    margin-left: 20px;
  }
}
@media (max-width: 550px) {
  .footer__menu li + li {
    margin-left: 0;
    margin-top: 5px;
  }
}
.footer__menu a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s;
}
@media (max-width: 1100px) {
  .footer__menu {
    width: 300px;
  }
}
@media (max-width: 950px) {
  .footer__menu {
    width: 260px;
  }
}
@media (max-width: 800px) {
  .footer__menu {
    width: 220px;
  }
}
@media (max-width: 700px) {
  .footer__menu {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .footer__menu {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .footer__schedule {
    text-align: center;
  }
}
@media (max-width: 550px) {
  .footer__schedule {
    display: none;
  }
}

@media (max-width: 700px) {
  .footer__info {
    margin-left: 50px;
    text-align: center;
  }
}
@media (max-width: 550px) {
  .footer__info {
    text-align: left;
    margin-left: 0;
  }
}
@media (max-width: 550px) {
  .footer__info li + li {
    margin-top: 5px;
  }
}
@media (max-width: 550px) {
  .footer__info li:nth-child(1) {
    display: none;
  }
}

.footer__bottom {
  margin-top: 30px;
}
.footer__bottom .creative {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.footer__bottom .creative img {
  width: 21px;
  height: auto;
  margin-right: 18px;
}
@media (max-width: 700px) {
  .footer__bottom .creative {
    margin: 0 auto;
  }
}
@media (max-width: 550px) {
  .footer__bottom .creative {
    margin: 0;
  }
}
@media (max-width: 550px) {
  .footer__bottom {
    margin-top: 50px;
  }
}

/*popup*/
.popup__form-box {
  max-width: 847px;
  width: 100%;
  padding: 80px;
  background-image: url("../images/pagesbg/popupformbg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}
.popup__form-box::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/popupformrightbg.svg");
  width: 364px;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1100px) {
  .popup__form-box::before {
    width: 330px;
  }
}
@media (max-width: 750px) {
  .popup__form-box::before {
    width: 295px;
  }
}
@media (max-width: 500px) {
  .popup__form-box::before {
    width: 45%;
    background-position: left;
  }
}
.popup__form-box p {
  font-size: 36px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCBL";
  color: #6D2F3E;
  text-align: center;
}
.popup__form-box p a {
  outline: none !important;
}
@media (max-width: 500px) {
  .popup__form-box p a {
    display: block;
  }
}
@media (max-width: 1100px) {
  .popup__form-box p {
    font-size: 30px;
  }
}
@media (max-width: 750px) {
  .popup__form-box p {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .popup__form-box p {
    font-size: 19px;
  }
}
.popup__form-box .popup__form-middle-title {
  margin: 28px 0;
}
@media (max-width: 1100px) {
  .popup__form-box .popup__form-middle-title {
    margin: 20px 0;
  }
}
@media (max-width: 750px) {
  .popup__form-box .popup__form-middle-title {
    margin: 15px 0;
  }
}
@media (max-width: 500px) {
  .popup__form-box .popup__form-middle-title {
    margin: 12px 0;
  }
}
@media (max-width: 1100px) {
  .popup__form-box {
    max-width: 750px;
  }
}
@media (max-width: 750px) {
  .popup__form-box {
    max-width: 610px;
  }
}
@media (max-width: 500px) {
  .popup__form-box {
    max-width: 100%;
    padding: 40px 32px;
    border-radius: 18px;
  }
}

.popup__form form {
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.popup__form form input {
  display: block;
  width: 50%;
  height: auto;
  outline: none !important;
  border: none;
  text-align: center;
  padding: 18.5px 40px;
  font-size: 20px;
  line-height: 115%;
  font-weight: 400;
  font-family: "SeoulHangangCBL";
  color: #4F1E00;
  background-color: transparent;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/pagesbg/popupinputsvg.svg");
  width: calc(50% - 12px);
  margin: 10px 6px;
}
.form__input-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.popup__form form input::-moz-placeholder {
  color: #4F1E00;
}
.popup__form form input::placeholder {
  color: #4F1E00;
}
@media (max-width: 750px) {
  .popup__form form input {
    padding: 12.5px 20px;
  }
}
@media (max-width: 500px) {
  .popup__form form input {
    padding: 12.5px;
  }
}
@media (max-width: 750px) {
  .popup__form form {
    width: 250px;
  }
}
@media (max-width: 500px) {
  .popup__form form {
    width: 200px;
  }
}
.popup__form .popup__form-btn {
  width: 100%;
  margin-top: 12px;
  padding: 18.5px 40px;
  cursor: pointer;
  font-size: 20px;
}
@media (max-width: 750px) {
  .popup__form .popup__form-btn {
    padding: 12.5px 20px;
  }
}
@media (max-width: 500px) {
  .popup__form .popup__form-btn {
    padding: 12.5px;
  }
}

.popup__product-box {
  max-width: 1486px;
  width: 70%;
  padding: 80px;
  background-image: url("../images/pagesbg/popupprodbg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 40px;
  /* overflow: hidden; */
}
.popup__product-box::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../images/pagesbg/popupformrightbg.svg");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  width: 370px;
  height: 100%;
  z-index: -1;
  border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
}
@media (max-width: 1000px) {
  .popup__product-box::before {
    width: 270px;
  }
}
@media (max-width: 500px) {
  .popup__product-box::before {
    width: 200px;
  }
}
@media (max-width: 1400px) {
  .popup__product-box {
    max-width: 70%;
    padding: 60px;
    border-radius: 30px;
  }
}
@media (max-width: 1000px) {
  .popup__product-box {
    padding: 45px;
    border-radius: 25px;
  }
}
@media (max-width: 500px) {
  .popup__product-box {
    border-radius: 18px;
    padding: 25px 37px;
  }
}

.popup__product {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 800px) {
  .popup__product {
    flex-direction: column;
  }
}

.popup__product-img {
  width: 39.2%;
  height: auto;
  border: 1px solid #6D2F3E;
  border-radius: 8px;
  padding: 18px;
}
.popup__product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
@media (max-width: 1000px) {
  .popup__product-img {
    padding: 10px;
  }
}
@media (max-width: 800px) {
  .popup__product-img {
    width: 300px;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 500px) {
  .popup__product-img {
    width: auto;
    height: 230px;
    margin: 0 auto;
    margin-bottom: 18px;
  }
}

.popup__product-info {
  width: 54.8%;
}
.popup__product-info h2 {
  color: #6D2F3E;
  margin-bottom: 28px;
  width: 400px;
}
@media (max-width: 1400px) {
  .popup__product-info h2 {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .popup__product-info h2 {
    font-size: 19px;
    margin-bottom: 12px;
  }
}
.popup__product-info .popup__product-desc {
  margin-bottom: 12px;
  color: #4F1E00;
  font-weight: 400;
  line-height: 115%;
  font-size: 24px;
  font-family: "SeoulHangangCBL";
}
@media (max-width: 1400px) {
  .popup__product-info .popup__product-desc {
    font-size: 20px;
  }
}
@media (max-width: 1000px) {
  .popup__product-info .popup__product-desc {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .popup__product-info .popup__product-desc {
    font-size: 14px;
  }
}
.popup__product-info .popup__product-weight {
  color: #4F1E00;
  font-weight: 400;
  line-height: 115%;
  font-size: 25px;
  font-family: "SeoulHangangCB";
  margin-bottom: 68px;
}
@media (max-width: 1400px) {
  .popup__product-info .popup__product-weight {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1200px) {
  .popup__product-info .popup__product-weight {
    margin-bottom: 20px;
  }
}
@media (max-width: 1000px) {
  .popup__product-info .popup__product-weight {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .popup__product-info .popup__product-weight {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
.popup__product-info .popup__product-price {
  font-size: 45px;
  font-weight: 400;
  line-height: 115%;
  font-family: "SeoulHangangCB";
  color: #6D2F3E;
  margin-bottom: 24px;
}
@media (max-width: 1400px) {
  .popup__product-info .popup__product-price {
    font-size: 35px;
  }
}
@media (max-width: 1200px) {
  .popup__product-info .popup__product-price {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1000px) {
  .popup__product-info .popup__product-price {
    font-size: 25px;
  }
}
@media (max-width: 500px) {
  .popup__product-info .popup__product-price {
    font-size: 24px;
    margin-bottom: 18px;
    font-family: "SeoulHangangCBL";
    color: #4F1E00;
  }
}
.popup__product-info .popup__product-btn {
  padding: 14px 110px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .popup__product-info .popup__product-btn {
    padding: 12px 80px;
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .popup__product-info .popup__product-btn {
    padding: 10px 60px;
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  .popup__product-info .popup__product-btn {
    padding: 14px 50px;
    font-size: 20px;
    margin: 0 auto;
  }
}
@media (max-width: 1000px) {
  .popup__product-info {
    width: 58%;
  }
}
@media (max-width: 800px) {
  .popup__product-info {
    width: 100%;
  }
}

.error {
    text-align: center;
    padding-top: 166px;
    padding-bottom: 95px
}

.error__title {
    color: #582632;
    text-shadow: 0px 25.532px 25.532px rgba(0, 0, 0, 0.25);
    font-family: "SeoulHangangCBL";
    font-size: 230px;
    font-weight: 400;
    line-height: normal;
}

.error__sub-title {
    color: #582632;
    text-shadow: 0px 5.889px 5.889px rgba(0, 0, 0, 0.25);
    font-family: "SeoulHangangCBL";
    font-size: 53px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 32.33px;
}

.error__desc {
    color: #582632;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 115.46%;
    margin-top: 56px;
}

@media(max-width: 1400px) {
    .error__title {
        font-size: 180px;
    }
    .error__sub-title {
        font-size: 45px;
    }
    .error__desc {
        font-size: 38px;
    }
}

@media(max-width: 1200px) {
    .error__title {
        font-size: 150px;
    }
    .error__sub-title {
        font-size: 38px;
    }
    .error__desc {
        font-size: 28px;
    }
}

@media(max-width: 1000px) {
    .error {
        padding-top: 100px;
        padding-bottom: 75px
    }
    .error__title {
        font-size: 120px;
    }
    .error__sub-title {
        font-size: 30px;
        letter-spacing: 15px;
    }
    .error__desc {
        font-size: 22px;
    }
}

@media(max-width: 700px) {
    .error {
        padding-top: 80px;
        padding-bottom: 50px
    }
    .error__title {
        font-size: 90px;
    }
    .error__sub-title {
        font-size: 25px;
        letter-spacing: 15px;
    }
    .error__desc {
        font-size: 18px;
        margin-top: 35px;
    }
}

@media(max-width: 500px) {
    .error {
        padding-top: 60px;
        padding-bottom: 30px
    }
    .error__title {
        font-size: 80px;
    }
    .error__sub-title {
        font-size: 20px;
        letter-spacing: 15px;
        letter-spacing: 8px;
    }
    .error__desc {
        font-size: 15px;
        margin-top: 15px;
    }
}

.hall__text.hall__description {
    margin-bottom: 50px;
}

.scroll-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    display: none;
}

.scroll-btn img {
    width: 80px;
    height: 80px;
}

.scroll-btn.show{
    display:block;
}

.to__pay-box.right {
    width: 64%;
}
.warning__wrap {
    display: flex;
    width: 100%;
    height: auto;
    outline: none !important;
    border: none;
    padding: 26.5px 40px;
    font-size: 20px;
    line-height: 115%;
    font-weight: 400;
    font-family: "SeoulHangangCBL";
    color: #4F1E00;
    background-color: transparent;
    background-size: 99% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/pagesbg/ramkacart.png);
    margin: 10px 6px;
    flex-direction: column;
    align-items: flex-start;
}
.warning__wrap .order__details-info {
    font-weight: 600;
    margin-bottom: 25px;
}

.warning__wrap ul {
    list-style: disc;
}

.contacts_mail {
    display: flex !important;
    align-items: center;
}

.contacts_mail p {
    margin-left: 5px;
}

.contacts .to__pay-btn {
    font-size: 30px;
    margin-top: 20px;
}

.form__input-wrap textarea {
    width: 100%;
    height: 250px;
    background: transparent;
    border: 0.5px solid #6D2F3E;
    border-radius: 50px;
    padding: 23px;
}

@media(max-width: 1100px) {
    .contacts .to__pay-btn {
        font-size: 22px;
    }
}

.address__city {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.address__city .delivery-method-item {
    margin-top: 0;
}

.address__city .delivery-method-item  + .delivery-method-item {
    margin-left: 10px;
}

@media(max-width: 750px){
    .form__input-wrap {
        width: 100%;
        flex-direction: column;
    }
    .popup__form form input {
        width: 100%;
    }
    .popup__form form {
        width: 100%;
    }
}

@media(max-width: 1180px){
    .order__details-wrapper {
        margin-top: 80px;
    }
    .to__pay-box.right {
        margin-bottom: 40px;
        width: 70%;
    }
    .order__details {
        flex-direction: column-reverse;
    }
}

@media(max-width: 1060px){
    .to__pay-box.right {
        width: 79%;
    }
}

@media(max-width: 950px){
    .to__pay-box.right {
        width: 89%;
    }
}
@media(max-width: 840px){
    .to__pay-box.right {
        width: 100%;
    }
}

@media(max-width: 751px){
    .warning__wrap {
        padding: 27px 20px 27px 35px;
    }
    .warning__wrap li {
        font-size: 16px;
    }
    .warning__wrap .order__details-info {
        margin-bottom: 15px;
    }
}
@media(max-width: 670px) {
    .warning__wrap {
        background-image: unset;
    }
}

div#popup__success {
    height: 400px;
    text-align: center;
    padding: 100px;
    background-image: url(../images/pagesbg/popupformbg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.areaForLoader {
  background: #e1d0bc;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: -80px;
  right:0;
  bottom:0;
  z-index: 9999;
  opacity: 0.9;
}

.table-response div#popup__success  {
        border: 1px solid #6D2F3E;
    border-radius: 21px;

}




/*# sourceMappingURL=style.css.map */