.decore-background {
  background-color: #ede8dd;
  position: relative;

  padding: 80px 0;
}

.decore-background::before {
  content: "";
  background-image: url("../img/decore/gold-decore.svg");
  background-repeat: no-repeat;
  background-size: 100%;

  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 1;
}

.decore-background::after {
  content: "";
  background-image: url("../img/decore/white-decore.svg");
  background-repeat: no-repeat;
  background-size: 100%;

  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 1;
}

.about-complex {
  background-color: #fff;

  padding: 65px 0;
}

.about-complex__title {
  margin-bottom: 20px;
}

.about-complex__body {
  display: flex;
  column-gap: 200px;
}

.about-complex__text {
  flex: 0 0 42%;
  /* 480/1320 */
}

.about-complex__content {}

.about-complex__button {
  margin-top: 50px;
}

/* //////////////// */

.price-block {
  background-color: #fff;
  padding: 80px 0;
}

.price-block__maintitle {
  margin-bottom: 20px;

  font-family: "RodchenkoCond";
  font-weight: 400;
  font-size: 40px;
  line-height: 165%;
  text-transform: uppercase;
  color: #aa8453;
}

.price-block__row {}

.price-block__row:not(:last-child) {
  margin-bottom: 50px;
}

.price-block__title {
  font-family: "EuclidFlex";
  font-weight: 300;
  font-size: 20px;
  line-height: 105%;
  text-transform: uppercase;
  color: #aa8453;
  padding: 12px 0;

  position: relative;
}

.price-block__title::after {
  content: "";
  background-color: #aa8453;
  width: 100%;
  max-width: 306px;
  height: 1px;
  display: block;
  bottom: 0;
  left: 0;
  position: absolute;
}

.price-block__info {
  margin-top: 10px;
}

.price-block__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 35px;
}

.price-block__items:not(:last-child) {
  margin-bottom: 25px;
}

.price-block__list {
  font-family: "EuclidFlex";
  font-weight: 300;
  font-size: 16px;
  line-height: 175%;
  color: #212529;

  padding: 0;
  margin: 0;

  max-width: 460px;
}

.price-block__list strong {
  font-family: "EuclidFlex";
  font-weight: 600;
  font-size: 18px;
  line-height: 175%;
  color: #212529;
}

.price-block__list>strong {
  margin-bottom: 10px;
  display: block;
}

.price-block__list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.price-block__list li span:last-child {
  font-weight: 700;
}

.price-block__marks {
  display: grid;
  gap: 10px;
  font-family: "EuclidFlex";
  font-weight: 300;
  font-size: 16px;
  line-height: 175%;
  color: #212529;
}

/* ///////////// */

.price-product-block {
  background-color: #fff;
  padding: 80px 0;
}

.price-product-block__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.price-product-block__item {
  font-family: "EuclidFlex";
  font-weight: 300;
  font-size: 16px;
  line-height: 175%;
  color: #212529;

  padding: 0;
  margin: 0;
  max-width: 540px;
}

.price-product-block__title {
  font-family: "RodchenkoCond";
  font-weight: 400;
  font-size: 40px;
  line-height: 165%;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 10px 0;
}

.price-product-block__item li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px dotted #e0d8c8;
  padding-bottom: 12px;
  font-size: 17px;
}

@media (min-width: 320px) and (max-width: 480px) {
  .price-product-block__item li {
    font-size: 16px;
  }
}

.price-product-block__item li img {
  width: 80px;
  overflow: hidden;
  image-rendering: pixelated;
}

@media (min-width: 320px) and (max-width: 480px) {
  .price-product-block__item li a {
    display: none
  }
}

.price-product-block__item li span:last-child {
  font-weight: 700;
  margin-left: auto;
}

/* ////////////// */
/* ////////////// */
/* ////////////// */

.navbar-menu {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  gap: 30px;

  width: 100%;
  padding: 0;
  margin: 0;
}

.nav-list {
  padding: 0;
  margin: 0;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.nav-link {
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo-wrapper {
  padding: 0;
}

.logo-wrapper img {
  max-width: 100%;
}

.logo__image_dark {
  display: none;
}

.navbar .container {
  max-width: 1480px;
}

/* ////////////// */
/* ////////////// */
/* ////////////// */

@media (max-width: 991px) {
  .decore-background {
    padding: 60px 0;
  }

  .about-complex__body {
    flex-direction: column;
    row-gap: 30px;
  }

  .about-complex__button {
    margin-top: 40px;
  }

  .price-block__items,
  .price-product-block__items {
    grid-template-columns: 1fr;
  }

  .price-block__list,
  .price-product-block__item {
    max-width: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-menu {
    grid-template-columns: 1fr;
  }

  .navbar:before,
  .navbar:after {
    display: none;
  }

  .logo__image_light {
    display: none;
  }

  .logo__image_dark {
    display: block;
  }

  .logo {
    max-width: 100px;
  }
}

@media (max-width: 776px) {
  .about-complex__button {
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }

  .about-complex,
  .price-block,
  .price-product-block {
    padding: 40px 0;
  }

  .price-block__items,
  .price-product-block__items {
    gap: 25px;
  }
}