:root {
  --font-family: "Roboto", sans-serif;
  --content-width: 1408px;
  --content-fluid-width: 1920px;
  --container-offset: 16px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --container-fluid-width: calc(var(--content-fluid-width) + (var(--container-offset) * 2));
  --accent-color: #ffc720;
  --accent-hover-color: #E2A900;
  --bg-color: #f7f7f7;
  --black-color: #000;
  --grey-color: #8c8c8c;
  --txt-color: #333745;
  --light-color: #BABABA;
  --white-color: #fff;
  --hover-link-color: #D0AE69;
  --divider-width: 3px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  height: 100%;
  min-width: 375px;
  font-size: 16px;
  line-height: 1;
}

.site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #000;
  min-height: 100%;
  background-color: #fff;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.container-fluid {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-fluid-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.section-offset {
  padding: 120px 0;
}

h1 {
  margin: 0;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--txt-color);
}

h2 {
  margin: 0;
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
}

h3 {
  margin: 0;
  font-weight: 400;
  font-size: 21px;
  line-height: 1;
}

h4 {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}

.logo {
  margin-right: auto;
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  gap: 8px;
}
.contact__name {
  color: #d0ae69;
}
.contact__number {
  font-weight: 600;
  font-size: 16px;
  color: var(--black-color);
}

.header__top {
  background-color: var(--bg-color);
}
.header__top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--txt-color);
  padding: 17px 0 18px;
  gap: 30px;
}
.header__bottom nav {
  border-top: 1px solid var(--txt-color);
  border-bottom: 2px solid var(--txt-color);
}
.header__bottom-title {
  display: none;
  height: 118px;
  font-weight: 700;
  font-size: 24px;
  color: #333745;
}

.burger {
  position: relative;
  display: none;
  width: 32px;
  height: 32px;
}
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-image: url("../images/burger.svg");
}

.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 22px 0 20px;
  gap: 0 60px;
}
.nav ul li:last-child {
  margin-left: auto;
}
.nav ul li a {
  font-weight: 700;
  font-size: 16px;
  color: #333745;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.nav ul li a:hover {
  color: #D0AE69;
}

.breadcrumbs {
  margin: 16px 0 71px;
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 14px;
  color: var(--grey-color);
  gap: 10px;
}
.breadcrumbs ul li {
  position: relative;
  margin-right: 16px;
}
.breadcrumbs ul li::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 3px;
  width: 6px;
  height: 10px;
  background-image: url("../images/breadcrumbs-decor.svg");
}
.breadcrumbs ul li:last-child::after {
  display: none;
}
.breadcrumbs ul li a {
  color: inherit;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.breadcrumbs ul li a:hover {
  color: var(--hover-link-color);
}
.breadcrumbs ul li span {
  color: var(--txt-color);
}

img-comparison-slider {
  --divider-width: 3px;
  --divider-color: #fff;
}
img-comparison-slider .handle svg {
  display: none;
}

.hero {
  margin-top: 72px;
  margin-bottom: 94px;
}
.hero__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 565px auto 315px;
  grid-template-columns: 565px auto 315px;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  gap: 20px;
}
.hero__item p {
  line-height: 1.4;
}
.hero__item:first-child {
  -ms-grid-row-align: self-start;
  align-self: self-start;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
.hero__item:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.hero__item:nth-child(3) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.hero__item:nth-child(3) p {
  margin-bottom: 20px;
}
.hero__item:nth-child(4) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.hero__title {
  margin-bottom: 20px;
}
.hero__link {
  display: inline-block;
  border-radius: 10px;
  padding: 20px 50px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white-color);
  background-color: var(--txt-color);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.hero__link:hover {
  background-color: var(--black-color);
}

.steps__title {
  margin-bottom: 50px;
  text-align: center;
}
.steps__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 34px;
}
.steps__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 417px;
  gap: 18px;
}
.steps__item:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 219px;
  width: 95px;
  height: 116px;
  background-image: url("../images/steps-icon-1.svg");
  background-repeat: no-repeat;
}
.steps__item:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 219px;
  width: 95px;
  height: 116px;
  background-image: url("../images/steps-icon-2.svg");
  background-repeat: no-repeat;
}
.steps__item:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 219px;
  width: 95px;
  height: 116px;
  background-image: url("../images/steps-icon-3.svg");
  background-repeat: no-repeat;
}
.steps__img {
  overflow: hidden;
  margin-bottom: 65px;
  border-radius: 10px;
}
.steps__text {
  font-size: 14px;
  line-height: 20px;
}
.steps__item-link {
  margin-top: auto;
}
.steps__item-link span {
  color: var(--txt-color);
}
.steps__item-link span:first-child {
  margin-right: 10px;
  border-radius: 90px;
  padding: 10px;
  background: #92ec84;
}
.steps__link {
  margin-top: auto;
  font-weight: 500;
  font-size: 15px;
  text-decoration: underline;
  color: #3750b4;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.cost-checkbox__field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
.cost-checkbox__content {
  display: block;
  border-radius: 10px;
  padding: 8px;
  min-width: 149px;
  font-size: 14px;
  text-align: center;
  color: var(--txt-color);
  background-color: #dcf9d7;
  cursor: pointer;
}
.cost-checkbox__content-1 {
  cursor: pointer;
}
.cost-checkbox__content-2 {
  display: block;
  cursor: pointer;
}

.cost-checkbox__field:checked ~ .cost-checkbox__content {
  background-color: #92ec84;
}

.cost-checkbox__field:checked ~ .cost-checkbox__content-1 {
  -webkit-filter: brightness(70%);
  filter: brightness(70%);
}

.cost-checkbox__field:checked ~ .cost-checkbox__content-2 {
  background-color: #92ec84;
}

.cost {
  margin-bottom: 74px;
  padding: 46px 0 57px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cost__title {
  margin-bottom: 49px;
  text-align: center;
  color: var(--white-color);
}
.cost__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 20px;
}
.cost__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 10px 34px 33px;
  width: 50%;
  background-color: var(--bg-color);
}
.cost__left-box {
  position: relative;
}
.cost__left-title {
  margin-bottom: 20px;
  color: var(--txt-color);
}
.cost__left-btns #paintingorder-customer_format {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.cost__left-btn {
  border-radius: 10px;
  padding: 10px;
  min-width: 149px;
  font-size: 14px;
  color: var(--txt-color);
  background-color: #dcf9d7;
}
.cost__left-btn--active {
  background-color: #92ec84;
}
.cost__left-link {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: underline;
  color: #3750b4;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  margin-bottom: 10px;
}
.cost__left-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  background-image: url("../images/decor-plus.svg");
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cost .input-container {
  position: absolute;
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s, height 0.3s;
  transition: opacity 0.3s, height 0.3s;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.cost .input-container__label {
  border-radius: 10px;
  overflow: hidden;
  background-color: #92ec84;
}
.cost .input-container__label span {
  padding: 8px;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}
.cost .input-container__label input {
  font-size: 14px;
  border-radius: 10px;
  background-color: var(--white-color);
  border: 1px solid #92ec84;
  max-width: 50px;
  padding: 2px 5px;
}
.cost .input-container.visible {
  opacity: 1;
  height: auto;
}
.cost__slider {
  margin-bottom: 37px;
  max-width: 550px;
}
.cost__slider .swiper-slide {
  padding: 7px;
  max-width: 129px;
  background-color: var(--white-color);
}
.cost__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 187px;
  max-width: 117px;
}
.cost__item-img {
  margin-bottom: 10px;
}
.cost__item-title {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--txt-color);
}
.cost__item-price {
  margin-top: auto;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #9399aa;
}
.cost__btn-next {
  position: absolute;
  right: 0;
  top: 35%;
  cursor: pointer;
}
.cost__btn-prev {
  position: absolute;
  left: 0;
  top: 35%;
  cursor: pointer;
}
.cost__left-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cost__left-txt {
  margin-right: 24px;
  max-width: 132px;
  font-weight: 400;
  font-size: 14px;
  color: #333745;
}
.cost__left-txt div:last-child {
  margin-top: 4px;
  font-weight: 700;
}
.cost__left-label {
  margin-right: 10px;
}
.cost__left-input {
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  padding: 16px 22px;
  width: 242px;
  font-weight: 400;
  font-size: 14px;
  color: #333745;
  background: #fff;
}
.cost__left-input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #333745;
}
.cost__left-input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #333745;
}
.cost__left-input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #333745;
}
.cost__left-input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #333745;
}
.cost__left-input::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #333745;
}
.cost__left-button {
  border-radius: 10px;
  width: 49px;
  height: 50px;
  background: #333745;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cost__right {
  position: relative;
  z-index: 1;
  padding: 69px 41px 59px 34px;
  width: 50%;
  background-color: #feecc3;
}
.cost__right::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 63px;
  height: 935px;
  background-image: url("../images/cost-decor.svg");
}
.cost__right-title {
  margin-bottom: 12px;
  text-align: center;
  color: var(--txt-color);
}
.cost__right-box {
  position: relative;
}
.cost__right-filewrap {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  width: 323px;
  height: 100%;
  background-color: #dfc48d;
}
.cost__right-file {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.image-preview {
  margin-top: 15px;
  display: none;
}
.image-preview img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 5px;
}
.cost__right-file-button {
  border: 1px dashed #fafafa;
  border-radius: 10px;
  padding: 20px 30px;
  font-size: 14px;
  text-align: center;
  background-color: var(--accent-color);
  cursor: pointer;
}
.cost__right-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 54%;
  min-width: 296px;
  gap: 18px;
}
.cost__right-label textarea {
  min-height: 216px;
}
.cost__right-input {
  padding: 18px 20px 22px;
  width: 100%;
}
.cost__right-input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #8c8c8c;
}
.cost__right-input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #8c8c8c;
}
.cost__right-input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #8c8c8c;
}
.cost__right-input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #8c8c8c;
}
.cost__right-input::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #8c8c8c;
}
.cost__right-input--last {
  min-height: 216px;
  resize: none;
}
.cost__right-btn {
  display: inline-block;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  color: var(--white-color);
  background-color: var(--txt-color);
}
.cost .swiper-scrollbar {
  position: relative;
  display: none;
  margin-top: 20px;
  height: 1px;
  background: var(--grey-color);
}
.cost .swiper-scrollbar-drag {
  height: 4px;
  background: #000;
}

.price__title {
  margin-bottom: 73px;
  text-align: center;
}
.price__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 182px;
}
.price__left {
  max-width: 640px;
}
.price__left-title {
  margin-bottom: 33px;
}
.price__left-text {
  margin-bottom: 27px;
  max-width: 575px;
  font-size: 16px;
}
.price__left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 55px;
  gap: 23px;
}
.price__table {
  border: 1px solid var(--grey-color);
  min-width: 300px;
}
.price__table div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--grey-color);
}
.price__table div:first-child {
  height: 56px;
  color: var(--white-color);
  background-image: url("../images/tabl-bg.jpg");
  background-size: cover;
}
.price__table div span {
  padding: 18px 10px 17px 17px;
}
.price__table div span:first-child {
  padding-right: 17px;
}
.price__table div span:last-child {
  border-left: 1px solid var(--grey-color);
  min-width: 115px;
  text-align: center;
}
.price__left-promo {
  display: inline-block;
  max-width: 412px;
  font-weight: 700;
  font-size: 26px;
}
.price__right {
  margin-top: 82px;
  min-width: 734px;
}
.price__right-title {
  margin: 0;
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 24px;
  color: var(--hover-link-color);
}
.price__right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
  width: 100%;
}
.price__right-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  padding: 18px 18px 17px 26px;
  background: #feecc3;
}
.price__right-info::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 0;
  width: 48px;
  height: 105px;
  background-image: url("../images/price-wood-decor.svg");
}
.price__right-info span {
  max-width: 412px;
  font-weight: 400;
  font-size: 20px;
  color: #333745;
}
.price__right-decor {
  margin-right: 20px;
}

.types__title {
  margin-bottom: 51px;
  text-align: center;
}
.types__inner {
  position: relative;
  margin-bottom: 100px;
}
.types__slider-1 .swiper-slide {
  max-width: 337px;
}
.types__item .swiper-wrapper {
  padding: 0;
}
.types__item-box {
  position: relative;
  margin-bottom: 21px;
}
.types__item-title {
  margin-bottom: 18px;
}
.types__item-text {
  font-size: 14px;
  color: #333745;
}
.types__btn-prev {
  position: absolute;
  left: -110px;
  top: 32%;
  cursor: pointer;
}
.types__btn-next {
  position: absolute;
  right: -110px;
  top: 32%;
  cursor: pointer;
}
.types__button-prev {
  position: absolute;
  left: 0;
  top: 146px;
  z-index: 9999;
  cursor: pointer;
}
.types__button-next {
  position: absolute;
  right: 0;
  top: 146px;
  z-index: 100;
  cursor: pointer;
}
.types .swiper-horizontal > .swiper-pagination-bullets,
.types .swiper-pagination-bullets.swiper-pagination-horizontal,
.types .swiper-pagination-custom,
.types .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, -167px);
}
.types .swiper-pagination-bullet {
  border-radius: 0;
  width: 59px;
  height: 4px;
  background: #d8d8d8;
  opacity: 1;
}
.types .swiper-pagination-bullet-active {
  background: #000;
}

.banner {
  margin-bottom: 94px;
}
.banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url("../images/banner-wood.jpg");
}
.banner__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  padding-left: 113px;
  min-height: 192px;
  background-image: url("../images/banner-bg.png");
  background-repeat: no-repeat;
}
.banner__content::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 0;
  width: 46px;
  height: 194px;
  background-image: url("../images/banner-decor.svg");
  background-repeat: no-repeat;
}
.banner__content-title {
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 26px;
  color: var(--txt-color);
}
.banner__content-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  color: var(--txt-color);
  gap: 10px;
}
.banner__content-tel {
  font-weight: 700;
  color: var(--txt-color);
}
.banner__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 78px;
  gap: 24px;
}
.banner__info-text {
  max-width: 200px;
  font-weight: 400;
  font-size: 22px;
  color: var(--white-color);
}

.info {
  margin-bottom: 72px;
}
.info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
}
.info__item {
  max-width: 419px;
  color: var(--txt-color);
}
.info__item-img {
  margin-bottom: 19px;
  border: 5px solid #e8ce9a;
  border-radius: 10px;
}
.info__item-img img {
  border-radius: 5px;
  height: 280px;
}
.info__item-title {
  margin-bottom: 18px;
}
.info__item-slider {
  position: relative;
  margin-bottom: 19px;
  border: 5px solid #e8ce9a;
  border-radius: 10px;
}
.info__item-slider .swiper-slide img {
  border-radius: 5px;
  height: 280px;
}
.info__button-prev {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 100;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.info__button-next {
  position: absolute;
  right: 14px;
  top: 50%;
  z-index: 100;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.reviews {
  margin-bottom: 53px;
  padding: 56px 0 49px;
  background-size: cover;
  background-repeat: no-repeat;
}
.reviews__title {
  margin-bottom: 60px;
  text-align: center;
  color: var(--white-color);
}
.reviews__inner {
  position: relative;
}
.reviews__slider {
  width: 100%;
}
.reviews__slider .swiper-slide {
  max-width: 218px;
}
.reviews__item {
  position: relative;
  overflow: hidden;
  outline: unset !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.reviews__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.reviews__item:hover::after {
  background: rgba(0, 0, 0, 0.4);
}
.reviews__item:hover ~ .reviews__item-link {
  z-index: 3;
  opacity: 1;
}

.reviews__item-link:hover {
  z-index: 3;
  opacity: 1;
}

.reviews__item-img {
  
  width: 100%;
  border: 3px solid #bfbfbf;
  border-radius: 20px;
}
.reviews__item-link {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.reviews__btn-prev {
  position: absolute;
  left: -110px;
  bottom: 97px;
  cursor: pointer;
}
.reviews__btn-next {
  position: absolute;
  right: -110px;
  bottom: 97px;
  cursor: pointer;
}

.custom-pagination {
  display: none;
}

.works {
  margin-bottom: 50px;
}
.works__title {
  margin-bottom: 51px;
  text-align: center;
}
.works__inner {
  position: relative;
}
.works__slider .swiper-slide {
  max-width: 337px;
}
.works__item {
  overflow: hidden;
  border-radius: 20px;
}
.works__btn-prev {
  position: absolute;
  left: -110px;
  bottom: 138px;
  cursor: pointer;
}
.works__btn-next {
  position: absolute;
  right: -110px;
  bottom: 138px;
  cursor: pointer;
}

.catalog {
  margin-bottom: 100px;
}
.catalog__title {
  margin-bottom: 56px;
  text-align: center;
}
.catalog__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 54px;
  gap: 20px;
}
.catalog__text {
  margin-bottom: 20px;
  max-width: 692px;
}
.catalog__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  padding: 34px 130px 34px 34px;
  max-width: 670px;
  background: #feecc3;
  gap: 0 24px;
}
.catalog__info::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 0;
  width: 56px;
  height: 500px;
  background-image: url("../images/catalog-decor-2.svg");
}
.catalog__info-text {
  max-width: 407px;
}
.catalog__info-img {
  width: 70px;
  height: 70px;
}
.catalog__grid {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fill, minmax(218px, 1fr));
  gap: 20px;
}
.catalog__item-img {
  margin-bottom: 20px;
}
.catalog__item-link {
  font-size: 18px;
  color: var(--txt-color);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.catalog__item-link:hover {
  color: var(--hover-link-color);
}

.catalog-second {
  margin-bottom: 100px;
}
.catalog-second__title {
  margin-bottom: 56px;
  text-align: center;
}
.catalog-second__grid {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fill, minmax(218px, 1fr));
  gap: 20px;
}
.catalog-second__img {
  margin-bottom: 20px;
}
.catalog-second__link {
  font-size: 18px;
  color: var(--txt-color);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.catalog-second__link:hover {
  color: var(--hover-link-color);
}

.product {
  margin-bottom: 122px;
}
.product__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product__info {
  position: relative;
  padding-left: 50.5%;
  max-width: 100%;
}
.product__img {
  position: absolute;
  left: 0;
  top: 0;
}
.product__subtitle {
  margin-bottom: 6px;
  font-size: 44px;
  line-height: 1;
  color: var(--txt-color);
}
.product__title {
  margin-bottom: 75px;
  font-size: 54px;
  line-height: 1;
}
.product__table {
  position: relative;
  margin-bottom: 27px;
}
.product__table tr {
  position: relative;
}
.product__table tr::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 8px;
  height: 8px;
  background-color: var(--txt-color);
}
.product__table tr td {
  padding-bottom: 4px;
}
.product__table tr td:first-child {
  padding-left: 22px;
  font-weight: 400;
  font-size: 18px;
  color: #8c8c8c;
}
.product__table tr td:last-child {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #333745;
}
.product__price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  margin-bottom: 27px;
  gap: 12px;
}
.product__price-old {
  font-weight: 400;
  font-size: 18px;
  text-decoration: line-through;
  color: var(--grey-color);
}
.product__price {
  font-weight: 600;
  font-size: 36px;
  color: var(--txt-color);
}
.product__link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 50px;
  max-width: 272px;
  gap: 6px;
}
.product__link-basket {
  border-radius: 10px;
  padding: 18px 50px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #fff;
  background-color: var(--accent-color);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.product__link-basket:hover {
  background-color: var(--accent-hover-color);
}
.product__link-click {
  border-radius: 10px;
  padding: 18px 50px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #fff;
  background-color: var(--txt-color);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.product__link-click:hover {
  background-color: var(--black-color);
}
.product__size-box {
  margin-bottom: 50px;
  max-width: 542px;
}
.product__size-title {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 20px;
  color: var(--txt-color);
}
.product__size-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 12px 10px;
}
.product__size-btn {
  border: none;
  border-radius: 10px;
  padding: 0;
  padding: 9px 19px;
  font-weight: 400;
  font-size: 14px;
  color: var(--txt-color);
  background-color: transparent;
  background-color: var(--bg-color);
  cursor: pointer;
}
.product__size-btn--active {
  background-color: #92ec84;
}
.product__size-item {
  position: relative;
}
.product .input-container {
  position: absolute;
  -webkit-transition: opacity 0.3s, height 0.3s;
  transition: opacity 0.3s, height 0.3s;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 400px;
  left: 0;
  bottom: 7px;
}
.product .input-container__label {
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--accent-color);
  padding: 5px;
  margin-right: 5px;
}
.product .input-container__label span {
  padding: 8px;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}
.product .input-container__label input {
  font-size: 14px;
  border-radius: 10px;
  background-color: var(--white-color);
  border: 1px solid var(--accent-color);
  max-width: 50px;
  padding: 2px 5px;
}
.product .tabs__nav {
  margin-bottom: 19px;
  border-bottom: 1px solid #D7D7D7;
  gap: 40px;
}
.product .tabs__nav-item {
  padding-bottom: 10px;
}
.product .tabs__nav-item:has(.tabs__nav-btn--active) {
  border-bottom: 3px solid var(--txt-color);
}
.product .tabs__nav-btn {
  font-weight: 400;
  font-size: 20px;
  color: #8c8c8c;
}
.product .tabs__nav-btn--active {
  color: var(--txt-color);
}
.product .tabs__nav-btn:focus {
  background-color: transparent;
}
.product__tabs-item p {
  font-weight: 400;
  font-size: 15px;
}
.product__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  background-color: var(--bg-color);
  gap: 16px;
}
.product__category-box {
  color: var(--txt-color);
}
.product__category-title {
  margin-bottom: 17px;
}
.product__category-text {
  font-size: 15px;
}
.product__delivery {
  color: var(--txt-color);
}
.product__delivery-text {
  margin-bottom: 21px;
  max-width: 623px;
}
.product__delivery-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 20px;
  padding: 34px 34px 28px;
  background-color: #feecc3;
  gap: 24px;
}
.product__delivery-info::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  width: 49px;
  height: 132px;
  background-image: url("../images/delivery-decor-wood.svg");
}
.product__delivery-info p {
  max-width: 407px;
}
.product__delivery-title {
  margin: 0;
  margin-bottom: 3px;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.4;
}
.product__delivery-subtitle {
  margin-bottom: 26px;
  max-width: 315px;
}

.social-link {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 39px;
  gap: 11px;
}
.social-link__box {
  max-width: 302px;
}
.social-link__box div {
  font-size: 18px;
}
.social-link__box div:first-child {
  margin-bottom: 7px;
  font-weight: 400;
  color: #8c8c8c;
}
.social-link__box div:last-child {
  position: relative;
  font-weight: 600;
  color: #2bd740;
}
.social-link__box div:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 300px;
  height: 1px;
  background-image: url("../images/social-line-decor.svg");
}

.contacts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 100px;
  gap: 20px;
}
.contacts__content {
  -ms-flex-preferred-size: 575px;
  flex-basis: 575px;
}
.contacts__title {
  margin: 0;
  margin-bottom: 46px;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--txt-color);
}
.contacts__decor {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 45px;
  border-radius: 20px;
  padding: 34px 34px 28px;
  background-color: #feecc3;
  gap: 32px;
}
.contacts__decor::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 0;
  width: 56px;
  height: 500px;
  background-image: url("../images/catalog-decor-2.svg");
}
.contacts__decor-time {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--txt-color);
}
.contacts__decor-time span {
  font-weight: 700;
  font-size: 18px;
}
.contacts__decor-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #6c6c6c;
}
.contacts__list {
  list-style: none;
  margin: 0;
  margin-bottom: 25px;
  padding: 0;
}
.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 17px;
  gap: 10px;
}
.contacts__item-name {
  font-weight: 400;
  font-size: 14px;
  color: #8c8c8c;
}
.contacts__item-link {
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  color: #333745;
}
.contacts__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.contacts__social-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contacts__social-label {
  margin-right: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #333745;
}
.contacts__social-link {
  margin-right: 10px;
}
.contacts__social-link:last-child {
  margin-right: 0;
}
.contacts__info {
  max-width: 700px;
}
.contacts__info-title {
  margin: 0;
  margin-bottom: 41px;
  font-weight: 400;
  font-size: 24px;
  color: #333745;
}
.contacts__info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 720px;
  flex-basis: 720px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.details {
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 31px 27px 15px;
  background-color: #f7f7f7;
}
.details__title {
  margin: 0;
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #333745;
}
.details__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
}
.details__address-box {
  max-width: 280px;
}
.details__address-box address {
  margin-bottom: 20px;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  line-height: 1.4;
  color: #333745;
}
.details__label {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #a68b4f;
}
.details__info-num {
  margin-bottom: 30px;
  min-height: 32px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #333745;
}

.footer {
  padding: 70px 0 40px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 22px;
}
.footer__item {
  max-width: 328px;
  color: var(--light-color);
}
.footer__item-title {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 18px;
  color: var(--white-color);
}
.footer__item-text {
  margin: 0;
  margin-bottom: 18px;
  line-height: 1.4;
}
.footer__item-text span {
  font-weight: 700;
  color: var(--white-color);
}
.footer__item-text a {
  font-weight: 600;
  font-size: 18px;
  text-decoration: underline;
  color: #5d77dd;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.footer__nav ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 21px;
}
.footer__nav ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  background-color: var(--hover-link-color);
}
.footer__nav ul li a {
  color: #d0d0d0;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.footer__nav ul li a:hover {
  color: var(--hover-link-color);
}
.footer__bottom p {
  margin: 0;
  font-weight: 600;
  color: var(--white-color);
}
.footer .contact {
  margin-bottom: 20px;
}
.footer .contact__number {
  color: var(--white-color);
}
.footer .form {
  margin-top: 27px;
}
.footer .form__label {
  display: inline-block;
  margin-bottom: 20px;
}
.footer .form__label span {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 15px;
  color: var(--grey-color);
}
.footer .form__label input {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 10px;
  width: 253px;
  height: 40px;
  background-color: var(--white-color);
}
.footer .form button {
  border-radius: 90px;
  padding: 20px 59px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white-color);
  background-color: var(--accent-color);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.footer .form button:hover {
  background-color: var(--accent-hover-color);
}

@media (width <= 1450px) {
  .hero__grid {
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .hero__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero__item:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    margin-left: auto;
  }
  .hero__item:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  .hero__item:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .hero__item:nth-child(4) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  .hero__item:nth-child(4) img {
    max-width: 566px;
  }
  .hero__link {
    text-align: center;
  }
  .price__inner {
    display: block;
  }
  .price__left-box {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .price__left {
    max-width: 100%;
  }
  .price__left-title {
    text-align: center;
  }
  .price__left-text {
    margin: 0 auto 20px;
    text-align: center;
  }
  .price__right {
    margin-top: 30px;
    text-align: center;
  }
  .price__left-promo {
    display: block;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
  }
  .price__right-box {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .catalog__info::after {
    display: none;
  }
  .catalog__info {
    padding-right: 70px;
  }
  .cost__right-filewrap {
    width: 250px;
  }
}
@media (width <= 1350px) {
  .steps__inner {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 30px;
  }
  .cost__btn-next,
  .cost__btn-prev {
    display: none;
  }
  .footer__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 20px;
  }
  .footer__item {
    min-width: 341px;
  }
  .product__img img {
    max-width: 80%;
  }
}
@media (width <= 1200px) {
  .contacts__inner {
    display: block;
  }
  .contacts__info {
    display: none;
  }
  .cost__right-filewrap {
    position: relative;
    border-radius: 20px;
    padding: 32px 0;
    width: 100%;
  }
  .cost__right-form {
    padding-left: 0;
  }
}
@media (width <= 1110px) {
  .cost__right-box {
    display: block;
  }
  .cost__left-btns #paintingorder-customer_format {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cost__left-form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cost__left-button {
    display: none;
  }
  .cost__left-txt {
    margin-bottom: 10px;
  }
  .banner__inner {
    display: block;
  }
  .banner__content {
    background-image: none;
    background-color: #feecc3;
  }
  .banner__content-text {
    font-size: 16px;
  }
  .banner__info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0;
    padding: 20px 0;
  }
  .product__img img {
    max-width: 60%;
  }
  .catalog__grid {
    justify-items: center;
  }
  .contacts__inner {
    display: block;
  }
  .info__inner {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 20px;
  }
}
@media (width <= 910px) {
  .burger {
    z-index: 101;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .burger--active::after {
    background-image: url("../images/burger-x.svg");
  }
  .header__bottom {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    max-width: 100%;
    background-color: var(--white-color);
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header__bottom nav {
    border: none;
  }
  .header__bottom.menu--active {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .header__bottom-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 118px;
    background: #f7f7f7;
  }
  .header__bottom-title {
    display: block;
    margin-top: 90px;
  }
  .header__top-wrap {
    border-bottom: none;
  }
  .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px;
    gap: 10px;
  }
  .nav ul li:last-child {
    margin-left: 0;
  }
  .nav ul li a {
    display: inline-block;
    border: 1px solid #ffc720;
    border-radius: 90px;
    padding: 20px;
    width: 246px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #333745;
  }
  .contact__name, .contact__number {
    display: none;
  }
  .footer__top .contact__name, .footer__top .contact__number {
    display: block;
  }
  .price__right {
    min-width: 500px;
  }
  .price__right-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .banner__content {
    padding-left: 83px;
  }
  .product__info {
    padding-left: 10%;
  }
  .product__img {
    position: relative;
    margin-bottom: 21px;
  }
  .product__img img {
    max-width: 100%;
  }
  .catalog__inner {
    display: block;
  }
  .catalog__text {
    max-width: 100%;
  }
  .catalog__info {
    max-width: 100%;
  }
  .catalog__info-text {
    max-width: 100%;
  }
}
@media (width <= 740px) {
  .breadcrumbs {
    margin-bottom: 25px;
  }
  .hero {
    margin-top: 20px;
  }
  .hero__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero__title {
    text-align: center;
  }
  .hero__item:first-child {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-left: 0;
  }
  .hero__item:nth-child(2) {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .cost__inner {
    display: block;
  }
  .cost__left {
    width: 100%;
  }
  .cost__left-box {
    margin-bottom: 30px;
  }
  .cost__right {
    width: 100%;
  }
  .price__left-box {
    display: block;
  }
  .price__right-info {
    padding-right: 60px;
  }
  .footer__top {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  .footer__item {
    width: 100%;
  }
  .product__info {
    padding-left: 0;
  }
}
@media (width <= 510px) {
  .logo {
    width: 149px;
  }
  .hero {
    margin-bottom: 40px;
  }
  .hero__title {
    margin-bottom: 12px;
    font-size: 24px;
    text-align: left;
  }
  .hero__text {
    font-size: 13px;
  }
  h2,
  .product__subtitle {
    font-size: 24px;
  }
  .product__subtitle {
    margin-bottom: 10px;
  }
  .product__title {
    margin-bottom: 20px;
    font-size: 34px;
  }
  .steps__title {
    margin-bottom: 33px;
  }
  .steps__item-title {
    font-size: 20px;
  }
  .steps__text {
    font-size: 13px;
  }
  .steps__inner {
    margin-bottom: 41px;
  }
  .cost {
    margin-bottom: 30px;
    padding: 29px 0;
  }
  .cost .swiper-scrollbar {
    display: block;
  }
  .cost__title {
    margin-bottom: 26px;
  }
  .cost__left {
    padding: 22px 16px;
  }
  .cost__left-title {
    font-weight: 900;
    font-size: 18px;
    text-align: center;
    color: #333745;
  }
  .cost__left-link {
    display: inline-block;
  }
  .cost__left-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    font-size: 14px;
    gap: 11px;
  }
  .cost__left-txt div:last-child {
    margin-top: 0;
  }
  .cost__left-input {
    width: 258px;
  }
  .cost__left-label {
    margin-right: 0;
  }
  .cost__left-btns #paintingorder-customer_format {
    display: block;
  }
  .cost-checkbox__content {
    margin-bottom: 10px;
  }
  .cost__right {
    padding: 0 17px 33px;
    background-color: var(--bg-color);
  }
  .cost__right::after {
    display: none;
  }
  .cost__right-input {
    border: 1px solid #bfbfbf;
    border-radius: 10px;
    padding: 15px 16px;
    font-weight: 400;
    font-size: 14px;
    color: #333745;
    background-color: var(--white-color);
  }
  .cost__right-input::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #333745;
  }
  .cost__right-input::-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #333745;
  }
  .cost__right-input:-ms-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #333745;
  }
  .cost__right-input::-ms-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #333745;
  }
  .cost__right-input::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #333745;
  }
  .price__title {
    margin-bottom: 23px;
    text-align: left;
  }
  .price__left-title {
    margin-bottom: 19px;
    font-size: 20px;
    text-align: left;
  }
  .price__left-text {
    margin-bottom: 25px;
    font-size: 13px;
    text-align: left;
  }
  .price__table {
    margin-bottom: 20px;
  }
  .price__left-box {
    margin-bottom: 0;
  }
  .price__left-promo {
    font-size: 20px;
    text-align: left;
  }
  .price__right {
    margin-top: 32px;
    min-width: 350px;
  }
  .price__right-title {
    margin-bottom: 20px;
    font-size: 26px;
    text-align: left;
  }
  .price__right-box {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 17px;
    height: 170px;
  }
  .price__right-info span {
    font-size: 13px;
  }
  .price__inner {
    margin-bottom: 68px;
  }
  .types__title {
    margin-bottom: 30px;
  }
  .types__slider-1 .swiper-wrapper {
    padding: 0;
  }
  .types__slider-1 .swiper-slide {
    margin-bottom: 36px;
    max-width: 343px;
  }
  .types__slider-2 .swiper-slide {
    margin-bottom: 0;
  }
  .types__slider-2 .swiper-slide img {
    width: 343px;
    height: 343px;
  }
  .banner {
    margin-bottom: 0;
  }
  .banner .container {
    padding: 0;
  }
  .info {
    margin-top: 0;
  }
  .info__item {
    margin-bottom: 40px;
    max-width: 343px;
  }
  .info__item .swiper-slide {
    max-width: 343px;
  }
  .banner__content-title {
    font-size: 20px;
  }
  .banner__content-text {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .info__item-title {
    font-size: 36px;
  }
  .info__item-text {
    font-size: 13px;
  }
  .reviews {
    margin-bottom: 30px;
    padding: 29px 0 137px;
  }
  .reviews__slider .swiper-slide {
    max-width: 343px;
  }
  .reviews__slider .reviews__item img {
    width: 343px;
  }
  .works {
    margin-bottom: 30px;
  }
  .works__title {
    margin-bottom: 20px;
  }
  .works__slider .swiper-slide {
    max-width: 265px;
  }
  .custom-scrollbar {
    margin-top: 17px;
    height: 1px;
    background-color: #d3d3d3;
  }
  .custom-scrollbar .swiper-scrollbar-drag {
    height: 3px;
    background-color: var(--black-color);
  }
  .product__img {
    margin: 0 -16px 20px;
  }
  .social-link {
    margin-bottom: 23px;
  }
  .product__price-box {
    margin-bottom: 32px;
  }
  .product__link-box {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .product__tabs {
    margin: 0 -16px;
    padding: 16px 16px 38px;
    background-color: #f7f7f7;
  }
  .product .tabs__nav {
    display: block;
    border-bottom: none;
  }
  .product .tabs__nav-item {
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 10px;
    padding-bottom: 0;
    max-width: 100%;
  }
  .product .tabs__nav-btn {
    display: inline-block;
    border-radius: 10px;
    padding: 8px;
    width: 100%;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
  }
  .product .tabs__nav-btn--active {
    font-weight: 700;
    color: var(--white-color);
    background: var(--txt-color);
  }
  .product .tabs__nav-item:has(.tabs__nav-btn--active) {
    border-bottom: none;
    background-color: var(--txt-color);
  }
  .product {
    margin-bottom: 24px;
  }
  .banner__inner.black-bg-mobil {
    border: none;
    background: #1a1a1a;
  }
  .footer {
    border: none;
    padding-top: 25px;
    padding-bottom: 0;
  }
  .footer__top {
    display: block;
    margin-bottom: 0;
    max-width: 100%;
  }
  .footer__item {
    max-width: 100%;
  }
  .footer__item:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 45px;
  }
  .footer__item:first-child .footer__item-text {
    text-align: center;
  }
  .footer__item:nth-child(2) {
    padding: 0 9px 42px;
  }
  .footer__item:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: -16px;
    padding: 36px 26px;
    min-width: 510px;
    background: #1a1a1a;
  }
  .footer__item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: -16px;
    padding: 0 26px 36px;
    min-width: 510px;
    background: #1a1a1a;
  }
  .footer__item:last-child form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__item:last-child .form__input,
  .footer__item:last-child .form__btn {
    width: 319px;
  }
  .footer__bottom {
    margin: 0 -16px;
    background: #1a1a1a;
  }
  .footer__bottom p {
    padding-bottom: 41px;
    font-size: 16px;
    text-align: center;
  }
  .catalog__title,
  .catalog-second__title,
  .contacts__title {
    margin-bottom: 17px;
    font-size: 24px;
    text-align: left;
  }
  .catalog__text {
    font-size: 13px;
  }
  .catalog__info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 21px 22px;
    gap: 10px 0;
  }
  .catalog__info p {
    font-size: 13px;
  }
  .catalog__inner {
    margin-bottom: 27px;
  }
  .catalog__item,
  .catalog-second__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  .catalog__item-img,
  .catalog-second__img {
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 12px;
  }
  .catalog__item-img img,
  .catalog-second__img img {
    width: 343px;
  }
  .catalog__item-link,
  .catalog-second__link {
    font-size: 20px;
  }
  .contacts__decor {
    margin-bottom: 16px;
    padding: 12px 13px;
  }
  .contacts__decor-img {
    width: 43px;
  }
  .contacts__decor-box {
    font-size: 13px;
  }
  .contacts__decor-time {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.2;
  }
  .contacts__decor-time span {
    display: block;
    font-size: 16px;
  }
  .contacts__decor-text {
    font-size: 13px;
    line-height: 1.2;
  }
  .contacts__list {
    margin-bottom: 33px;
  }
  .details {
    padding: 24px 29px 0;
  }
  .details__inner {
    display: block;
  }
  .details__address-box address {
    margin-bottom: 22px;
    font-size: 14px;
  }
  .details__info-num {
    margin-bottom: 22px;
    font-size: 14px;
  }
  .contacts__social-box {
    display: block;
  }
  .contacts__social-label {
    margin-bottom: 12px;
  }
  .contacts__social {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .contacts__inner {
    margin-bottom: 46px;
  }
  .contacts__decor::after {
    right: 0;
  }
  .header__bottom-menu {
    display: block;
    height: 70px;
  }
  .header__bottom-title {
    margin-top: 0;
    margin-left: 26px;
    padding-top: 27px;
  }
  .header__top-wrap {
    padding: 13px 0 14px;
    gap: 10px;
  }
  .contact svg {
    width: 32px;
    height: 32px;
  }
  .product .input-container__label {
    padding: 0;
  }
}
@media (width <= 509px) {
  .types__slider-1 .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
  .types__btn-next,
  .types__btn-prev {
    display: none;
  }
  .types__button-next,
  .types__button-prev {
    display: none;
  }
  .types__slider-2 .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 0;
  }
}
@media (width <= 375px) {
  .reviews__btn-prev {
    left: 215px;
    bottom: -102px;
  }
  .reviews__btn-prev::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 58px;
    height: 58px;
    background-image: url("../images/arrow-prev-types.svg");
  }
  .reviews__btn-next {
    right: 0;
    bottom: -102px;
  }
  .reviews__btn-next::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 58px;
    height: 58px;
    background-image: url("../images/arrow-next-types.svg");
  }
  .custom-pagination {
    display: block;
    margin-top: 21px;
  }
  .custom-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 59px;
    height: 4px;
    background-color: #989898;
    opacity: 1;
  }
  .custom-pagination .swiper-pagination-bullet:nth-child(n+6) {
    display: none;
  }
  .custom-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
  }
}/*# sourceMappingURL=main.css.map */
