@charset "UTF-8";
.global {
  padding: 250px 0 40px 0;
  overflow: hidden;
}
@media (max-width: 1250px) {
  .global {
    padding: 140px 0 40px 0;
  }
}
@media (max-width: 800px) {
  .global {
    padding: 190px 0 40px 0;
  }
}
@media (max-width: 650px) {
  .global {
    padding: 180px 0 40px 0;
  }
}
.global__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -10px;
}
@media (max-width: 1250px) {
  .global__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.global__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
  padding: 10px;
  position: relative;
  z-index: 2;
}
.global__column:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}
.global__item {
  height: 100%;
}
.global__cont {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.global__cont .global__btns {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 0 0 10px 0;
}
.global .portfolio-grid__item {
  overflow: hidden;
}
.global .portfolio-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 10px 220px;
  grid-template-columns: 400px 220px; /* Задаем фиксированные ширины колонок */
  -ms-grid-rows: 180px 10px 360px;
  grid-template-rows: 180px 360px; /* Задаем фиксированные высоты строк */
  gap: 10px; /* Промежутки между элементами */
}
.global .portfolio-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.global .portfolio-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.global .portfolio-grid > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.global .portfolio-grid > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media (max-width: 1250px) {
  .global .portfolio-grid {
    -ms-grid-columns: 1fr 220px;
    grid-template-columns: 1fr 220px; /* Задаем фиксированные ширины колонок */
  }
}
@media (max-width: 550px) {
  .global .portfolio-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.global .portfolio-grid-item__img {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.global .portfolio-grid__item.large {
  -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; /* Первое изображение занимает две строки */
  width: 400px;
  height: 550px;
}
@media (max-width: 1250px) {
  .global .portfolio-grid__item.large {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 550px) {
  .global .portfolio-grid__item.large {
    display: none;
  }
}
.global .portfolio-grid__item.small-1 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3; /* Второе изображение во второй колонке */
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2; /* Второе изображение в первой строке */
  width: 220px;
  height: 180px;
}
@media (max-width: 1250px) {
  .global .portfolio-grid__item.small-1 {
    width: 100%;
    height: 100%;
  }
}
.global .portfolio-grid__item.small-2 {
  -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; /* Третье изображение во второй строке */
  width: 220px;
  height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1250px) {
  .global .portfolio-grid__item.small-2 {
    width: 100%;
    height: 100%;
  }
}
.global .portfolio-grid__item.small-2 img {
  height: 260px;
}
.global .portfolio-grid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Изображение заполняет элемент, сохраняя пропорции */
}
.global__image-mob {
  display: none;
}
@media (max-width: 550px) {
  .global__image-mob {
    display: block;
    margin: 15px 0 0 0;
  }
  .global__image-mob img {
    height: 220px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 15px;
  }
}
.global__text {
  margin: 40px 0 0 0;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.5;
}
@media (max-width: 1250px) {
  .global__text {
    margin: 15px 0 0 0;
  }
}
@media (max-width: 991px) {
  .global__text {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .global__text {
    font-size: 15px;
  }
}
.global__desp {
  margin: 30px 0 0 0;
  max-width: 566px;
}
@media (max-width: 1250px) {
  .global__desp {
    margin: 15px 0 0 0;
  }
}
.global__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1250px) {
  .global__btns {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 560px) {
  .global__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.global__btn {
  height: 50px;
  width: 240px;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .global__btn {
    width: 100% !important;
  }
}
.global__btn:last-child a {
/*   border: 1.5px solid #424530;
  background: rgba(255, 255, 255, 0);
  color: #424530; */
  /* width: 310px; */
  width: fit-content;
/*   margin: 0 0 0 30px; */
}
@media (max-width: 560px) {
  .global__btn:last-child a {
    margin: 15px 0 0 0;
    width: 100% !important;
  }
}
.global__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.global .portfolio-grid-item__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.global__link {
  text-transform: uppercase;
  color: #FE9E14;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  font-weight: 600;
}
.global__link p {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  line-height: 100%;
}
.global__link svg {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-transform: translate(0, -5px);
          transform: translate(0, -5px);
}
.global__link:hover p {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
}
.global__link:hover svg {
  -webkit-transform: translate(30px, -5px) scale(0);
          transform: translate(30px, -5px) scale(0);
}
.bottom-global {
  padding: 120px 0 0 0;
}
@media (max-width: 900px) {
  .bottom-global {
    padding: 60px 0 0 0;
  }
}
.bottom-global__elems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -20px;
}
@media (max-width: 900px) {
  .bottom-global__elems {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.bottom-global__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  padding: 20px;
}
@media (max-width: 900px) {
  .bottom-global__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.bottom-global__item {
  position: relative;
}
.bottom-global__item::before {
  content: "";
  background-color: #424530;
  position: absolute;
  width: 100%;
  height: 1px;
  top: -25px;
  left: 0;
}
.bottom-global__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  font-family: "Cormorant Garamond";
  text-transform: uppercase;
}
.bottom-global__title p {
  font-size: 90px;
  font-size: 24px;
  line-height: 100%;
  margin: 0 0 0 8px;
}
@media (max-width: 550px) {
  .bottom-global__title p {
    font-size: 21px;
  }
}
.bottom-global__title .num-vavorit__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 215px;
}
@media (max-width: 1250px) {
  .bottom-global__title .num-vavorit__num {
    min-width: 140px;
  }
}
@media (max-width: 550px) {
  .bottom-global__title .num-vavorit__num {
    min-width: 135px;
  }
}
.bottom-global__title .num-vavorit__num p, .bottom-global__title .num-vavorit__num span {
  font-size: 90px;
  line-height: 50px;
}
@media (max-width: 1250px) {
  .bottom-global__title .num-vavorit__num p, .bottom-global__title .num-vavorit__num span {
    font-size: 50px;
    line-height: 40px;
  }
}
@media (max-width: 550px) {
  .bottom-global__title .num-vavorit__num p, .bottom-global__title .num-vavorit__num span {
    font-size: 55px;
    line-height: 45px;
  }
}
.bottom-global__desp {
  margin: 20px 0 0 0;
}
@media (max-width: 550px) {
  .bottom-global__desp {
    margin: 10px 0 0 0;
  }
}
.bottom-global__desp p {
  line-height: 130%;
}

.global-top-global {
  position: relative;
}

.global-top-global__svg {
  position: absolute;
  top: 45%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: -10%;
}
@media (max-width: 650px) {
  .global-top-global__svg {
    display: none;
  }
}

.global__top {
  position: relative;
  z-index: 2;
}
.global__top::before {
  content: "";
  background-color: rgba(224, 145, 50, 0.5019607843);
  position: absolute;
  width: 400px;
  height: 400px;
  top: 0%;
  left: 45%;
  border-radius: 50%;
  -webkit-filter: blur(45px);
          filter: blur(45px);
}

@media (max-width: 1250px) {
  .global__top::before {
    content: "";
    top: 30%;
    left: 65%;
  }
}
@media (max-width: 550px) {
  .global .portfolio-grid__item img {
    height: 140px !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .global .portfolio-grid {
    gap: 20px;
  }
  .global__link {
    margin: 30px 0 0 0;
  }
  .global__top::before {
    display: none;
  }
}
.portfolio-grid {
  margin: 15px 0 0 0;
}

.catalog {
  padding: 250px 0 40px 0;
  overflow: hidden;
}
@media (max-width: 1250px) {
  .catalog {
    padding: 120px 0 40px 0;
  }
}
@media (max-width: 800px) {
  .catalog {
    padding: 140px 0 40px 0;
  }
}
@media (max-width: 650px) {
  .catalog {
    padding: 150px 0 40px 0;
  }
}
.catalog__top {
  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;
}
.catalog__title {
  max-width: 850px;
}
.catalog__breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalog__content {
  padding: 30px 0 0 0;
  margin: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .catalog__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}
.catalog__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  padding: 20px;
}
.catalog__column:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
@media (max-width: 1200px) {
  .catalog__column {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.catalog__item {
  height: 100%;
}
.catalog__sidebar {
  background: #FBFBFB;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 15px;
  padding: 15px;
}
.breadcrumbs {
  font-size: 14px;
  color: #1B1B1B;
  white-space: nowrap;
}
.breadcrumbs__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 15px 0 0;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.breadcrumbs__link a svg {
  margin: 0 0 0 15px;
}
.breadcrumbs__link a:hover {
  color: #FC8808;
}
.sidebar-catalog__title {
  font-size: 20px;
  color: #1B1B1B;
  font-weight: 600;
}
.cont-catalog__top {
  background: #FBFBFB;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 15px;
  padding: 15px;
}
.cont-catalog__cats {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 15px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cont-catalog__cats::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #D0D0D0;
}
.cont-catalog__categorys {
  margin: -8px -12.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cont-catalog__category {
  padding: 8px 12.5px;
}
.cont-catalog__category a {
  display: block;
  background-color: #F4F4F4;
  padding: 8px 11px;
  border-radius: 7px;
  font-size: 14px;
  color: #1B1B1B;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.cont-catalog__category a:hover {
  -webkit-transform: translate(0, -5px);
          transform: translate(0, -5px);
}
.cont-catalog__click {
  font-size: 14px;
  color: #FC8808;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cont-catalog__click svg {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  margin: 0 0 0 8px;
}
.cont-catalog__middle {
  margin: 15px 0 0 0;
}
.cont-catalog__selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -10px;
}
.cont-catalog__select {
  padding: 10px;
}
.cont-catalog .cont-catalog__select-global {
  position: relative;
}
.cont-catalog__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
  padding: 30px 0 0 0;
}
.cont-catalog__column {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}
.cartochka {
  padding: 10px;
  background: #FBFBFB;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 20px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.cartochka:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.cartochka__image {
  padding: 5px;
}
.cartochka__image img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.cartochka__title {
  margin: 5px 0 0 0;
}
.cartochka__title h3 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #424530;
}
@media (max-width: 550px) {
  .cartochka__title h3 {
    font-size: 12px;
  }
}
.cartochka__xaracterstiks {
  margin: 12px 0 0 0;
}
.cartochka__xaracter {
  margin: 5px -9px;
  font-size: 13px;
  color: #2C2C2C;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 550px) {
  .cartochka__xaracter {
    font-size: 10px;
  }
}
@media (max-width: 450px) {
  .cartochka__xaracter {
    font-size: 9px;
    margin: 0px -5px;
  }
}
.cartochka__xaracter::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 10px;
  left: 0;
  background-color: #D0D0D0;
}
.cartochka__xaracter p {
  padding: 0 9px;
  z-index: 2;
  position: relative;
  background: #FBFBFB;
}
@media (max-width: 450px) {
  .cartochka__xaracter p {
    padding: 0 5px;
  }
}
.cartochka__btns {
  margin: 15px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cartochka__btn {
  margin: 0 6px 0 0;
}
.cartochka__btn:last-child {
  margin: 0;
}
.cartochka__btn a {
  background-color: #F4F4F4;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #424530;
  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;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.cartochka__btn a path {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.cartochka__btn a:hover {
  background: #FD8B0A;
  color: #fff;
}
.cartochka__btn a:hover path {
  stroke: #fff;
}
.cartochka__prise {
  background-color: #F4F4F4;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #424530;
}
.cartochka__btn-global a {
  border: 1.5px solid #424530;
  background: #FBFBFB;
  text-align: center;
  padding: 13px 25px;
  border-radius: 10px;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media (max-width: 550px) {
  .cartochka__btn-global a {
    padding: 10px 20px;
    font-size: 15px;
  }
}
.cartochka__btn-global a:hover {
  background: #FD8B0A;
  color: #fff;
}

/* CSS стили */
.filter__spoller {
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.filter__spoller > p {
  cursor: pointer;
  font-weight: bold;
  margin: 5px 0;
  padding: 0 0 0px 20px;
  position: relative;
  font-size: 16px;
  color: #333;
}

.filter__spoller > p::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 1.5px;
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0, -50%);
          transform: rotate(-45deg) translate(0, -50%);
  left: 0px;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 10px;
}

.filter__spoller > p::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1.5px;
  top: 50%;
  -webkit-transform: rotate(45deg) translate(0, -50%);
          transform: rotate(45deg) translate(0, -50%);
  left: 4px;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 10px;
}

.filter__spoller.closed > p::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.filter__spoller.closed > p::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.filter__spoller ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.filter__spoller li {
  padding: 3px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Стилизованные чекбоксы */
.filter__spoller input[type=checkbox] {
  display: none;
}

.filter__spoller input[type=checkbox] + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 16px;
  color: #1B1B1B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.filter__spoller input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 2px;
  border-radius: 5px;
}

.filter__spoller input[type=checkbox]:checked + label:before {
  background: #FC8808;
  border-color: #FC8808;
}

.filter__spoller input[type=checkbox]:checked + label:after {
  content: "✔";
  position: absolute;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
}

/* Стили для ползунков */
.slider__range-global {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.slider__range-global input[type=text] {
  width: 110px;
  padding: 15px 12px;
  border-radius: 10px;
  font-size: 16px;
  background: #FBFBFB;
  border: 1.5px solid #EBEBEB;
  color: #5F5F5F;
}
.slider__range-global input[type=text]::-webkit-input-placeholder {
  color: #5F5F5F;
}
.slider__range-global input[type=text]::-moz-placeholder {
  color: #5F5F5F;
}
.slider__range-global input[type=text]:-ms-input-placeholder {
  color: #5F5F5F;
}
.slider__range-global input[type=text]::-ms-input-placeholder {
  color: #5F5F5F;
}
.slider__range-global input[type=text]::placeholder {
  color: #5F5F5F;
}

.ui-slider {
  height: 4px;
  background: #e0e0e0;
  border: none;
  margin: 10px 0;
  width: 100%;
}

.ui-slider .ui-slider-range {
  background: #FC8808;
}

.ui-slider .ui-slider-handle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FC8808;
  border: none;
  cursor: pointer;
  top: -6px;
}

/* Стили для цветов */
.color__r {
  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;
  width: 100%;
}

.color__r {
  padding: 0 0 0 45px !important;
}

.color__r span {
  width: 15px;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-left: auto;
  position: absolute;
  top: 4px;
  left: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2941176471);
}

/* Стиль для "посмотреть все" */
.range-slider__prise-click p {
  color: #FC8808;
  cursor: pointer;
  margin-top: 5px;
  font-weight: normal;
  font-size: 14px;
}

/* Дополнительные стили */
.range-slider__prise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px 0;
}

.range-slider__prise input[type=checkbox] + label {
  margin-left: 0;
}

/* Стили для активного состояния спойлера */
.filter__spoller.active > p::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* Стили для закрытого состояния спойлера */
.filter__spoller.closed ul {
  display: none;
}

/* Стили для заголовков фильтров */
.filter__spoller > p {
  font-size: 16px;
  font-weight: 600;
  color: #1B1B1B;
}

/* Стили для значений фильтров */
.filter__spoller label {
  font-size: 16px;
  color: #333;
}

/* Стили для ползунков диапазона */
.slider__range-global {
  margin-bottom: 15px;
}

.ui-slider-horizontal .ui-slider-handle {
  margin-left: -8px;
}

/* Стили для подписей диапазона */
/* Дополнительные стили для улучшения внешнего вида */
.filter__spoller:last-child {
  border-bottom: none;
}

/* CSS стили */
.cont-catalog__selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.cont-catalog__select {
  position: relative;
}

.sorting-button {
  border: 1.5px solid #EBEBEB;
  background: #FBFBFB;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  min-width: 250px;
  width: 100%;
  position: relative;
}

.sorting-button::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1.5px;
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0, -50%);
          transform: rotate(-45deg) translate(0, -50%);
  right: 15px;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sorting-button::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 1.5px;
  top: 50%;
  -webkit-transform: rotate(45deg) translate(0, -50%);
          transform: rotate(45deg) translate(0, -50%);
  right: 22px;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sorting-button._active::before {
  content: "";
  -webkit-transform: rotate(-45deg) translate(0, -50%);
          transform: rotate(-45deg) translate(0, -50%);
  right: 19px;
}
.sorting-button._active::after {
  content: "";
  -webkit-transform: rotate(45deg) translate(0, -50%);
          transform: rotate(45deg) translate(0, -50%);
}

.sorting-options {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 115%;
  left: 0;
  background-color: #fff;
  border-top: 1.5px solid #FC8808;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1490196078);
  z-index: 10;
  width: 100%;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.sorting-options._active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sorting-options a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.sorting-options a:hover {
  background-color: #f5f5f5;
}

.cont-catalog__category {
  display: none; /* Скрыть все категории по умолчанию */
}

@media (min-width: 1450px) {
  .cont-catalog__category:nth-child(-n+5) {
    display: block; /* Показать первые 5 категорий */
  }
}
@media (max-width: 1450px) {
  .cont-catalog__category:nth-child(-n+4) {
    display: block; /* Показать первые 5 категорий */
  }
}
.cont-catalog__click {
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
}

.cont-catalog__click svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.ui-slider .ui-slider-range {
  height: 5px !important;
  top: 3px !important;
}

.ui-widget.ui-widget-content {
  border: none !important;
}

@media (max-width: 1200px) {
  .catalog__sidebar.sidebar-catalog {
    display: none;
  }
  .catalog__column {
    padding: 0;
  }
  .cont-catalog__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .cont-catalog__middle {
    margin: 0px 0 15px 0;
  }
  .cont-catalog__cats {
    padding: 0px 0 0 0;
    margin: 0 -20px 0 0;
  }
  .cont-catalog__categorys {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: auto;
  }
  .cont-catalog__category {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    white-space: nowrap;
  }
  div#show-more-btn {
    display: none;
  }
  .cont-catalog__top {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .cont-catalog__cats::before {
    display: none;
  }
  .cont-catalog__category a {
    background: #EBEBEB;
  }
  .catalog__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .catalog__title {
    margin: 15px 0 0 0;
  }
  .catalog__content {
    padding: 15px 0 0 0;
  }
}
@media (max-width: 1150px) {
  .cont-catalog__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33.333%;
            flex: 0 1 33.333%;
  }
}
@media (max-width: 800px) {
  .cont-catalog__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
  .cont-catalog__column {
    padding: 5px;
  }
  .cont-catalog__bottom {
    margin: -5px;
  }
  .cont-catalog__cartochka.cartochka {
    padding: 9.6px;
  }
  .cartochka__image {
    padding: 0px;
  }
  .cartochka__xaracterstiks {
    margin: 5px 0 0 0;
  }
  .cartochka__prise {
    font-size: 12px;
  }
  .cont-catalog__select:last-child {
    display: none;
  }
}
@media (max-width: 450px) {
  .cartochka__prise {
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .cont-catalog__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.cont-catalog-filters-btn {
  display: none;
  border: 1.31px solid #FC8808;
  background: #FBFBFB;
  padding: 7px 13px;
  border-radius: 9px;
  font-weight: 600;
  width: 115px;
}
.cont-catalog-filters-btn svg {
  margin: 0 5px 0 0px;
}

@media (max-width: 1200px) {
  .cont-catalog-filters-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cont-catalog__middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cont-catalog__categorys {
    margin: -6.5px;
  }
  .cont-catalog__category {
    padding: 6.5px;
  }
  .cont-catalog__bottom {
    padding: 15px 0 0 0;
  }
}
@media (max-width: 450px) {
  button.sorting-button {
    padding: 15px 40px 15px 15px;
    min-width: 170px;
  }
}
@media (max-width: 390px) {
  button.sorting-button {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  button.sorting-button {
    min-width: 155px;
    padding: 15px 30px 15px 15px;
    font-size: 11px;
  }
  .sorting-button::before {
    right: 2px;
  }
  .sorting-button::before {
    right: 10px;
  }
}
.filters__btn-global.btn {
  display: none;
}

@media (max-width: 1200px) {
  .catalog__content {
    position: relative;
  }
  .sidebar-catalog {
    position: absolute;
    top: 80px;
    right: -100%;
    display: block !important;
    width: 90%;
    -webkit-transform: translate(-5%, 0px);
            transform: translate(-5%, 0px);
    height: auto;
    z-index: 13;
    max-width: 455px;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .catalog__sidebar.sidebar-catalog.active {
    right: 0;
  }
  .filters__btn-global.btn {
    background: -webkit-gradient(linear, left top, left bottom, from(#FE9E14), to(#FC8808));
    background: linear-gradient(180deg, #FE9E14 0%, #FC8808 100%);
    padding: 13px;
    border-radius: 10px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    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;
    line-height: 100%;
  }
}
@media (max-width: 800px) {
  .cont-catalog__select:last-child {
    display: block;
  }
  .cont-catalog__selects {
    gap: 0;
  }
  .cont-catalog__selects {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: -5px;
  }
  .cont-catalog__select {
    padding: 5px;
  }
  .cont-catalog-filters-btn {
    width: 100%;
    max-width: 120px;
    height: 60px;
  }
  .cont-catalog__selects {
    margin: 0 10px 0 0;
  }
  .cont-catalog__middle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.filter-arrow {
  display: none;
}

@media (max-width: 1200px) {
  .sidebar-catalog {
    position: fixed;
    top: 0;
    z-index: 20;
    width: 100%;
    -webkit-transform: none;
            transform: none;
  }
  .filter-arrow {
    display: block;
  }
  .sidebar-catalog__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    font-family: "Cormorant Garamond";
    font-weight: 500;
  }
  .sidebar-catalog__title svg {
    margin: 0 10px 0 0;
  }
  .sidebar-catalog {
    height: 100%;
    overflow: auto;
  }
}
@media (max-width: 350px) {
  .cont-catalog__middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .cont-catalog__selects {
    width: 100%;
  }
  .cont-catalog-filters-btn {
    max-width: 100%;
    height: 46px;
    margin: 5px 0 0 0;
  }
}
.atelie {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .atelie {
    padding: 30px 0;
  }
}
.atelie__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 950px) {
  .atelie__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.atelie__title {
  max-width: 730px;
}
@media (max-width: 950px) {
  .atelie__title {
    max-width: 100%;
  }
}
.atelie__desp {
  max-width: 455px;
}
@media (max-width: 950px) {
  .atelie__desp {
    margin: 20px 0 0 0;
    max-width: 100%;
  }
}
.atelie__cont {
  margin: 40px 0 0 0;
}
.atelie__swiper {
  margin: 40px 0 0 0;
}
@media (max-width: 950px) {
  .atelie__swiper {
    margin: 20px 0 0 0;
  }
}
.atelie__btn a {
  display: block;
  padding: 35px 0;
  text-align: center;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media (max-width: 650px) {
  .atelie__btn a {
    padding: 25px 0;
    margin: 20px 0 0 0;
  }
}
.atelie__btn a:hover {
  background: #424530;
  color: #fff;
}
.atelie__btn a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #424530;
}
.atelie__btn a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #424530;
}

.slide-atelie {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.slide-atelie:hover {
  -webkit-transform: scale(0.98) rotate(1deg);
          transform: scale(0.98) rotate(1deg);
}
.slide-atelie__cont {
  padding: 15px;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
  background: #FBFBFB;
  border-radius: 15px;
}
.slide-atelie__image {
  border-radius: 10px;
  overflow: hidden;
}
.slide-atelie__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-atelie__title {
  margin: 15px 0 0 0;
}
@media (max-width: 410px) {
  .slide-atelie__title {
    margin: 10px 0 0 0;
  }
}
.slide-atelie__title h3 {
  font-size: 18px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .slide-atelie__title h3 {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .slide-atelie__title h3 {
    font-size: 14px;
  }
}
.slide-atelie__desp {
  margin: 7px 0 0 0;
}
@media (max-width: 500px) {
  .slide-atelie__desp {
    font-size: 12px;
  }
}
.slide-atelie__btn {
  margin: 20px 0 0 0;
}
@media (max-width: 400px) {
  .slide-atelie__btn {
    margin: 10px 0 0 0;
  }
}
.slide-atelie__btn a {
  border: 1.5px solid #424530;
  height: 50px;
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  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;
}
@media (max-width: 500px) {
  .slide-atelie__btn a {
    height: 40px;
  }
}
.slide-atelie__btn a:hover {
  background-color: #424530;
  color: #fff;
}

.atelie__swiper {
  padding: 25px;
}

.atelie__cont {
  margin: -25px;
}

.create {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .create {
    padding: 30px 0;
  }
}
.create__content-bacground {
  background-color: #3E4530;
  border-radius: 30px;
  padding: 50px;
}
@media (max-width: 650px) {
  .create__content-bacground {
    padding: 20px;
  }
}
.create__content {
  color: #FBFBFB;
}
.create__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -20px;
}
@media (max-width: 1250px) {
  .create__top {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.create__column {
  padding: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
@media (max-width: 1250px) {
  .create__column {
    padding: 0;
  }
  .create__column:last-child {
    padding: 30px 0 0 0;
  }
}
@media (max-width: 650px) {
  .create__column:last-child {
    padding: 20px 0 0 0;
  }
}
@media (max-width: 1250px) {
  .create__item {
    height: 100%;
  }
}
.create__image {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1250px) {
  .create__image {
    width: 100%;
  }
}
.create__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1250px) {
  .create__image img {
    max-height: 300px;
    width: 100%;
  }
}
.create__text {
  text-transform: uppercase;
  padding: 0 0 50px 0;
}
@media (max-width: 1250px) {
  .create__text {
    padding: 0 0 25px 0;
  }
}
.create__cont {
  position: relative;
}
.create__title h2 {
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .create__title h2 {
    font-size: 71px;
  }
}
.create__desp {
  margin: 30px 0 0 0;
}
.create__desp p {
  margin: 0 0 20px 0;
}
.create__desp p:last-child {
  margin: 0;
}
.create__btn {
  margin: 40px 0 0 0;
}
.create__btn a {
  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;
  width: 260px;
  height: 60px;
  text-transform: uppercase;
  border: 1px solid #FBFBFB;
  color: #FBFBFB;
  border-radius: 10px;
}
.create__btn-absolut.btn {
  position: absolute;
  bottom: -15%;
  right: 0;
}
.create__btn-absolut.btn a {
  background: -webkit-gradient(linear, left top, left bottom, from(#FE9E14), to(#FC8808));
  background: linear-gradient(180deg, #FE9E14 0%, #FC8808 100%);
  width: 180px !important;
  height: 180px !important;
  border-radius: 50%;
  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;
  border: 1.5px solid #656E53;
}
@media (max-width: 850px) {
  .create__btn-absolut.btn a {
    width: 140px !important;
    height: 140px !important;
    font-size: 14px;
  }
}
.bottom-create {
  padding: 70px 0 0 0;
}
.bottom-create__title h3 {
  text-transform: uppercase;
  font-weight: 600;
}
.bottom-create .bottom-create__elems-global {
  margin: 40px 0 0 0;
}
.bottom-create__elems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.bottom-create__elems::before {
  content: "";
  content: "";
  background: #FBFBFB;
  width: 100%;
  position: absolute;
  height: 1px;
  top: 0;
  left: 0;
}
.bottom-create__column {
  padding: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  position: relative;
}
.bottom-create__column::before {
  content: "";
  background: linear-gradient(80deg, #FBFBFB 35%, rgba(251, 251, 251, 0) 100%);
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  width: 1px;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.bottom-create__column:last-child::after {
  content: "";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  background: linear-gradient(80deg, #FBFBFB 35%, rgba(251, 251, 251, 0) 100%);
  width: 1px;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}
.bottom-create__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bottom-create__img {
  margin: 0 0 0 10px;
}
@media (max-width: 550px) {
  .bottom-create__img {
    min-width: 57px;
    width: 57px;
  }
}
.bottom-create__desp {
  margin: 22px 0 0 0;
}

@media (max-width: 1250px) {
  .create__btn-absolut.btn {
    bottom: -110px !important;
  }
}
@media (max-width: 1100px) {
  .bottom-create__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .bottom-create__column::before {
    content: "";
    background: #FBFBFB;
    width: 100%;
    position: absolute;
    height: 1px;
    top: 0;
    left: 0;
  }
  .bottom-create__column:last-child::after {
    content: "";
    background: #FBFBFB;
    width: 100%;
    position: absolute;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 850px) {
  .create__btn-absolut.btn {
    bottom: -75px !important;
  }
}
@media (max-width: 650px) {
  .create__top {
    padding: 0 0 120px 0;
  }
  .create__btn a {
    width: 100%;
  }
  .create__btn {
    margin: 20px 0 0 0;
  }
  .create__btn-absolut.btn {
    bottom: -170px !important;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
  .create__desp {
    margin: 20px 0 0 0;
  }
  .create__desp p {
    margin: 0 0 15px 0;
  }
}
@media (max-width: 500px) {
  .create__btn-absolut.btn {
    bottom: -170px !important;
  }
  .bottom-create__column {
    padding: 15px 0;
  }
  .bottom-create__elems-global {
    margin: 20px 0 0 0;
  }
}
@media (max-width: 480px) {
  .create__btn-absolut.btn {
    bottom: -170px !important;
  }
}
@media (max-width: 410px) {
  .create__btn-absolut.btn {
    bottom: -175px !important;
  }
}
@media (max-width: 350px) {
  .create__btn-absolut.btn {
    bottom: -165px !important;
  }
}
@media (max-width: 380px) {
  .bottom-create__title h3 {
    font-size: 14px;
  }
}
@media (max-width: 550px) {
  .bottom-create__title.title h3 {
    max-width: 210px;
  }
}
.portfolio {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .portfolio {
    padding: 30px 0;
  }
}

.portfolio__title {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}
.portfolio__title::before, .portfolio__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  height: 1px;
  background-color: #000;
}
@media (max-width: 700px) {
  .portfolio__title::before, .portfolio__title::after {
    width: 40px;
  }
}
.portfolio__title::before {
  left: 0px;
}
.portfolio__title::after {
  right: 0px;
}

.portfolio__grid {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  gap: 40px;
}
@media (max-width: 1100px) {
  .portfolio__grid {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .portfolio__grid {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (max-width: 700px) {
  .portfolio__grid {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (max-width: 450px) {
  .portfolio__grid {
    gap: 15px;
  }
}

.portfolio__item {
  position: relative;
  display: block;
}
.portfolio__item img {
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border: 8px solid #FBFBFB;
}
.portfolio__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.portfolio__item {
  padding: 15px 0 70px 0;
}
@media (max-width: 991px) {
  .portfolio__item {
    padding: 15px 0 40px 0;
  }
}
@media (max-width: 450px) {
  .portfolio__item {
    padding: 15px 0 30px 0;
  }
}

.portfolio__caption {
  text-transform: uppercase;
  margin: 20px 0 0 0;
  position: absolute;
  bottom: 25px;
  left: 0;
}
@media (max-width: 991px) {
  .portfolio__caption {
    bottom: 5px;
  }
}
@media (max-width: 768px) {
  .portfolio__caption {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .portfolio__caption {
    font-size: 12px;
    bottom: 0px;
  }
}

.portfolio__button {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.portfolio__button:hover {
  background-color: #333;
}

.curtains-blinds {
  overflow: hidden;
  padding: 40px 0;
}
@media (max-width: 991px) {
  .curtains-blinds {
    padding: 30px 0;
  }
}
.curtains-blinds__title {
  margin-bottom: 20px;
  text-align: left;
  max-width: 850px;
}
.curtains-blinds__description {
  margin-bottom: 40px;
  text-align: left;
  max-width: 850px;
}
@media (max-width: 650px) {
  .curtains-blinds__description {
    margin-bottom: 20px;
  }
}
.curtains-blinds__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1124px) {
  .curtains-blinds__grid {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .curtains-blinds__grid {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.curtains-blinds__link {
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: block;
}
.curtains-blinds__link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.curtains-blinds__item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
  border: 1px solid #D7B2A4;
  padding: 15px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 650px) {
  .curtains-blinds__item {
    padding: 7.5px;
  }
}
.curtains-blinds__image {
  border-radius: 10px;
  width: 100%;
  min-height: 150px;
  height: 150px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 650px) {
  .curtains-blinds__image {
    min-height: 75px;
    height: 75px;
  }
}
.curtains-blinds__content {
  padding: 15px 5px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 650px) {
  .curtains-blinds__content {
    padding: 10px 0 0 0;
  }
}
.curtains-blinds__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  font-size: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
@media (max-width: 650px) {
  .curtains-blinds__name {
    font-size: 10px;
  }
}
.curtains-blinds__price {
  font-weight: bold;
  color: #424530;
}
@media (max-width: 650px) {
  .curtains-blinds__price {
    font-size: 10px;
  }
}
.curtains-blinds__more-button {
  font-size: 15px;
  display: none;
  margin: 30px 0 0 0;
  padding: 20px 0px;
  font-weight: 600;
  color: #424530;
  border: none;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.curtains-blinds__more-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background-color: #424530;
}
.curtains-blinds__more-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #424530;
}
@media (max-width: 768px) {
  .curtains-blinds__more-button {
    display: block;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .curtains-blinds__link:nth-child(n+9) {
    display: none;
  }
}
.consultation {
  overflow: hidden;
  padding: 85px 0 120px 0;
}
@media (max-width: 991px) {
  .consultation {
    padding: 60px 0 120px 0;
  }
}
@media (max-width: 530px) {
  .consultation {
    padding: 40px 0 75px 0;
  }
}
@media (max-width: 991px) {
  .consultation__container {
    padding: 0;
  }
}
.consultation__content {
  background: #3E4530;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  position: relative;
}
@media (max-width: 1250px) {
  .consultation__content {
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .consultation__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.consultation__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .consultation__column {
    padding: 0;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.consultation__title h2 {
  color: #FBFBFB;
}
.consultation__description {
  margin: 30px 0 0 0;
  max-width: 550px;
  color: #FBFBFB;
  line-height: 130%;
}
@media (max-width: 650px) {
  .consultation__description {
    margin: 10px 0 0 0;
  }
}
.consultation__form-global {
  color: #FBFBFB;
}
.consultation__text {
  margin: 0 0 50px 0;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 1200px) {
  .consultation__text {
    margin: 20px 0 20px 0;
  }
}
.consultation__form {
  position: relative;
}
.consultation__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 600px) {
  .consultation__rows {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .consultation__row {
    width: 100%;
  }
}
.consultation__row:last-child {
  margin: 0 0 0 40px;
}
@media (max-width: 600px) {
  .consultation__row:last-child {
    margin: 20px 0 0 0px;
  }
}
.consultation__input {
  width: 290px;
}
@media (max-width: 1200px) {
  .consultation__input {
    width: 100%;
  }
}
.consultation__privacy {
  margin: 30px 0 0 0;
  font-size: 14px;
  max-width: 290px;
}
.consultation__submit {
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, left bottom, from(#FE9E14), to(#FC8808));
  background: linear-gradient(180deg, #FE9E14 0%, #FC8808 100%);
  border: 3px solid #E8CFB3;
  width: 180px;
  height: 180px;
  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;
  font-weight: 600;
  color: #FBFBFB;
  white-space: wrap;
  position: absolute;
  line-height: 120%;
  bottom: -120%;
  right: 0;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  cursor: pointer;
}
.consultation__submit:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
@media (max-width: 850px) {
  .consultation__submit {
    bottom: -105%;
  }
}
@media (max-width: 550px) {
  .consultation__submit {
    width: 140px;
    height: 140px;
  }
}
.consultation__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.consultation__content-global {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -1%;
  left: 0;
  overflow: hidden;
}

@media (max-width: 600px) {
  .consultation__submit {
    bottom: -65%;
  }
}
@media (max-width: 530px) {
  .consultation__content {
    padding: 20px 20px 90px 20px;
  }
  .consultation__submit {
    bottom: -75%;
  }
}
.itap {
  padding: 40px 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .itap {
    padding: 30px 0;
  }
}
.itap__content {
  -webkit-box-shadow: 0px -10px 20px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px -10px 20px 0px rgba(0, 0, 0, 0.1490196078);
  background: #FBFBFB;
  border-radius: 30px 30px 0 0;
}
.itap__title {
  padding: 50px 0 50px 60px;
}
.itap__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0px 0px;
}
.itap__top .num-itap__num {
  color: #E7E7E7;
}
.itap__top .itap__image {
  border-radius: 20px 0 0 0;
  overflow: hidden;
}
@media (max-width: 650px) {
  .itap__top .itap__image {
    border-radius: 20px 20px 0 0;
  }
}
.itap__column {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.itap__item {
  height: 100%;
}
.itap__nums {
  padding: 60px;
}
.itap__num {
  border: 1.5px solid #DFDFDF;
  padding: 30px 40px;
  border-radius: 20px;
  background-color: #F4F4F4;
  margin: 0 0 40px 0;
}
@media (max-width: 820px) {
  .itap__num {
    padding: 25px;
  }
}
.itap__num:last-child {
  margin: 0;
}
.itap__image {
  overflow: hidden;
  height: 100%;
}
.itap__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.itap__bottom {
  background: #3E4530;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.itap__bottom .num-itap__num {
  color: #4D563C;
}
.itap__bottom .itap__num {
  background: #3E4530;
  border: 1.5px solid #646C53;
}
.itap__bottom .num-itap__title h3 {
  color: #FBFBFB;
}
.itap__bottom .num-itap__desp {
  color: #FBFBFB;
}
@media (max-width: 650px) {
  .itap__bottom {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }
}
.itap .itap__svg {
  position: absolute;
  top: 0;
  right: 0;
}

.num-itap {
  position: relative;
}
.num-itap__title {
  position: relative;
  z-index: 2;
}
.num-itap__title h3 {
  line-height: 130%;
  font-size: 22px;
  font-weight: 600;
  color: #1B1B1B;
  text-transform: uppercase;
}
@media (max-width: 550px) {
  .num-itap__title h3 {
    font-size: 16px;
  }
}
.num-itap__desp {
  position: relative;
  z-index: 2;
  margin: 50px 0 0 0;
  color: #1B1B1B;
}
.num-itap__num {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0;
  font-size: 330px;
  font-family: "Cormorant Garamond";
}

@media (max-width: 1100px) {
  .itap__nums {
    padding: 30px;
  }
}
@media (max-width: 810px) {
  .num-itap__desp {
    margin: 20px 0 0 0;
  }
  .itap__title {
    padding: 30px 0 30px 30px;
  }
}
@media (max-width: 950px) {
  .num-itap__num {
    font-size: 280px;
  }
}
@media (max-width: 650px) {
  .itap__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .itap__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .itap__title {
    padding: 30px 0 0px 30px;
  }
  .itap__svg {
    display: none;
  }
  .itap__num {
    padding: 20px;
  }
  .itap__nums {
    padding: 20px;
  }
}
.zhoyrum {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .zhoyrum {
    padding: 30px 0;
  }
}
.zhoyrum__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -15px;
}
.zhoyrum__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 15px;
}
.zhoyrum__item {
  height: 100%;
}
.zhoyrum__images {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.zhoyrum__text {
  margin: 0 0 40px 0;
  color: #1B1B1B;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 650px) {
  .zhoyrum__text {
    margin: 0 0 20px 0;
  }
}
.zhoyrum__image-slider {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.zhoyrum__image-slider img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.zhoyrum__slide {
  width: 100% !important;
}
@media (min-width: 1250px) {
  .zhoyrum__title h2 {
    font-size: 48px;
  }
}
.zhoyrum__desp {
  margin: 20px 0 0 0;
}
@media (max-width: 650px) {
  .zhoyrum__desp {
    margin: 10px 0 0 0;
  }
}
.zhoyrum__desp p {
  margin: 0px 0 20px 0;
}
@media (max-width: 650px) {
  .zhoyrum__desp p {
    margin: 0px 0 10px 0;
  }
}
.zhoyrum__desp p:last-child {
  margin: 0;
}
.zhoyrum__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 0 0;
}
@media (max-width: 650px) {
  .zhoyrum__rows {
    margin: 20px 0 0 0;
  }
}
.zhoyrum__row {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  margin: 0 40px 0 0;
}
.zhoyrum__row input {
  width: 100%;
  background-color: #FBFBFB;
  color: #5F5F5F;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
}
.zhoyrum__row input::-webkit-input-placeholder {
  color: #5F5F5F;
}
.zhoyrum__row input::-moz-placeholder {
  color: #5F5F5F;
}
.zhoyrum__row input:-ms-input-placeholder {
  color: #5F5F5F;
}
.zhoyrum__row input::-ms-input-placeholder {
  color: #5F5F5F;
}
.zhoyrum__row input::placeholder {
  color: #5F5F5F;
}
.zhoyrum__row:last-child {
  margin: 0;
}
.zhoyrum__btns {
  margin: 30px 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.zhoyrum__text-s {
  font-size: 14px;
  max-width: 300px;
}
.zhoyrum__btn input {
  width: 300px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FE9E14), to(#FC8808));
  background: linear-gradient(180deg, #FE9E14 0%, #FC8808 100%);
}
.zhoyrum__img {
  border-radius: 20px;
  overflow: hidden;
}
.zhoyrum__img img {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.zhoyrum__img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.zhoyrum__pag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
  width: 125px;
  height: 60px;
  border-radius: 15px;
  background-color: #FBFBFB;
}
.zhoyrum__pag .swiper-button-next, .zhoyrum__pag .swiper-button-prev {
  width: 40px;
  height: 30px;
  top: 87%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  bottom: auto;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.zhoyrum__pag .swiper-button-next:hover, .zhoyrum__pag .swiper-button-prev:hover {
  -webkit-transform: scale(0.95) translate(0, -50%);
          transform: scale(0.95) translate(0, -50%);
}
.zhoyrum__pag .swiper-button-next svg, .zhoyrum__pag .swiper-button-prev svg {
  width: 40px;
  height: 40px;
}

@media (max-width: 1100px) {
  .zhoyrum__btn input {
    width: 230px;
  }
}
@media (max-width: 991px) {
  .zhoyrum__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .zhoyrum__text-s {
    max-width: 100%;
  }
  .zhoyrum__btn input {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .zhoyrum__rows {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .zhoyrum__row {
    margin: 0 0 20px 0;
  }
  .zhoyrum__btns {
    margin: 20px 0;
  }
}
@media (max-width: 650px) {
  .zhoyrum__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.zhoyrum__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews {
  background-color: #f5f5f5;
  padding: 40px 0;
}
@media (max-width: 991px) {
  .reviews {
    padding: 30px 0;
  }
}
.reviews__title {
  text-align: center;
}
.reviews__title::before {
  content: "";
  width: 100px;
}
.reviews__title::after {
  content: "";
  width: 100px;
}
@media (max-width: 650px) {
  .reviews__title::before {
    content: "";
    width: 80px;
  }
  .reviews__title::after {
    content: "";
    width: 80px;
  }
  .reviews__title h2 {
    max-width: 250px;
    margin: 0 auto;
  }
}
@media (max-width: 370px) {
  .reviews__title h2 {
    max-width: 200px;
    margin: 0 auto;
  }
}
.reviews__header {
  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;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .reviews__header {
    -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;
  }
}
.reviews__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 750px) {
  .reviews__tabs {
    margin-top: 20px;
  }
}
.reviews__tab {
  padding: 10px 20px;
  border: none;
  background-color: transparent;
  font-weight: bold;
  cursor: pointer;
  color: #666;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
}
@media (max-width: 550px) {
  .reviews__tab {
    font-size: 14px;
    padding: 10px 10px;
  }
}
@media (max-width: 370px) {
  .reviews__tab {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .reviews__tab {
    padding: 10px 5px;
  }
}
.reviews__tab::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #000000;
}
.reviews__tab:last-child::before {
  content: "";
  display: none;
}
.reviews__tab--active {
  color: #FC8808;
}
.reviews__score {
  font-size: 50px;
  font-weight: 500;
  color: #1B1B1B;
  font-family: "Cormorant Garamond";
}
.reviews__stars {
  color: #FC8808;
  font-size: 24px;
}
.reviews__count {
  font-size: 14px;
  color: #666;
  margin: 5px 0 0 0;
}
.reviews__slider {
  display: none;
  position: relative;
  overflow: hidden;
}
.reviews__slider--active {
  display: block;
}
.reviews__navigation {
  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;
  margin-top: 20px;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}
.reviews__nav {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.reviews__nav:hover {
  opacity: 0.7;
}
.reviews__pagination {
  text-align: center;
  margin-top: 45px;
  position: relative;
}
.reviews__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 5px;
  background-color: #1B1B1B;
  opacity: 0.5;
  margin: 0 5px;
}
.reviews__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #1B1B1B;
}

.review {
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.review__header {
  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;
  margin-bottom: 15px;
}
.review__header img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.review__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review__info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 15px;
}
.review__name {
  font-weight: bold;
  margin: 0;
}
.review__stars {
  color: #FC8808;
}
.review__source {
  width: 30px;
  height: 30px;
  background-color: #FC8808;
  border-radius: 50%;
  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;
  color: #fff;
  font-weight: bold;
}
.review__text {
  font-size: 14px;
  line-height: 1.5;
  color: #1B1B1B;
}

.reviews__rating-rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews__rating-row:last-child {
  margin: 0 0 0 15px;
}

.reviews__slide {
  height: auto;
}

.spec {
  overflow: hidden;
  padding: 40px 0;
}
@media (max-width: 991px) {
  .spec {
    padding: 30px 0;
  }
}
.spec .spec__title {
  max-width: 1100px;
}
@media (max-width: 850px) {
  .spec .spec__title::before {
    content: "";
    width: 50px;
  }
  .spec .spec__title::after {
    content: "";
    width: 50px;
  }
}
@media (max-width: 650px) {
  .spec .spec__title::before {
    content: "";
    display: none;
  }
  .spec .spec__title::after {
    content: "";
    display: none;
  }
}
.spec__content {
  position: relative;
  padding: 40px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 650px) {
  .spec__content {
    padding: 20px 0 0 0;
  }
}
.spec .spec__svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
}
.spec__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  padding: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 950px) {
  .spec__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media (max-width: 550px) {
  .spec__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.spec__image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  margin: 0 0 20px 0;
}
.spec__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.spec__image img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.faq {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .faq {
    padding: 30px 0;
  }
}
.faq__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .faq__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.faq__title {
  max-width: 640px;
}
.faq__desp-global {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq__desp-global .faq__text p {
  font-weight: 600;
  color: #1B1B1B;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .faq__desp-global .faq__text p {
    margin-top: 20px;
  }
}
.faq__desp-global .faq__desp p {
  color: #1B1B1B;
  max-width: 660px;
}
.faq__spollers .spollers__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
}
.faq__spollers .spollers__item:last-child {
  margin-bottom: 0;
}
.faq__spollers .spollers__item .spollers__num {
  font-size: 78px;
  font-weight: 700;
  font-family: "Cormorant Garamond";
  font-weight: 500;
  color: #d3d3d3;
  line-height: 110%;
  margin-right: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media (max-width: 850px) {
  .faq__spollers .spollers__item .spollers__num {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}
@media (max-width: 750px) {
  .faq__spollers .spollers__item .spollers__num {
    display: none;
  }
}
.faq__spollers .spollers__item .spollers__num._active {
  color: #f7931e;
}
.faq__spollers .spollers__item .spollers__cont {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.faq__spollers .spollers__item .spollers__cont .spollers__title {
  padding: 20px 45px 20px 20px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq__spollers .spollers__item .spollers__cont .spollers__title:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(0deg);
  transform: translate(0, -50%) rotate(0deg);
  right: 18px;
  background-color: #000;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-radius: 3px;
}
.faq__spollers .spollers__item .spollers__cont .spollers__title:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(-90deg);
  transform: translate(0, -50%) rotate(-90deg);
  right: 18px;
  background-color: #000;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-radius: 3px;
}
.faq__spollers .spollers__item .spollers__cont .spollers__title h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0px;
}
@media (max-width: 390px) {
  .faq__spollers .spollers__item .spollers__cont .spollers__title h3 {
    font-size: 16px;
  }
}
.faq__spollers .spollers__item .spollers__cont .spollers__desp p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.faq__spollers .spollers__item .spollers__desp.open p {
  max-height: 600px;
  opacity: 1;
  visibility: visible;
  padding: 0 20px 20px 20px;
}

.spollers__desp {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.spollers__desp.open {
  max-height: 1000px;
}

.spollers__item._active .spollers__title:before {
  content: "";
  -webkit-transform: translate(0, -50%) rotate(-45deg);
  transform: translate(0, -50%) rotate(-45deg) !important;
}

.spollers__item._active .spollers__title:after {
  content: "";
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg) !important;
}

@media (max-width: 650px) {
  .spollers__item._active .spollers__title {
    padding: 20px 45px 5px 20px !important;
  }
}

@media (max-width: 650px) {
  .faq__top {
    margin-bottom: 25px;
  }
}
.contacts {
  padding: 40px 0 60px 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .contacts {
    padding: 30px 0 40px 0;
  }
}
.contacts__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.contacts__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
}
.contacts__title h2 {
  max-width: 640px;
}
.contacts__desp {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}
.contacts__desp p {
  max-width: 510px;
}
.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -30px;
  padding: 40px 0 0 0;
}
.contacts__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
  padding: 30px;
}
.contacts__column:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}
.contacts__item {
  height: 100%;
}
.contacts__infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #3E4530;
  border-radius: 20px;
  padding: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contacts__info:last-child {
  margin: 0 0 0 40px;
}
.contacts__info a {
  border: 1.5px solid #FBFBFB;
  padding: 23px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FBFBFB;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__info a svg {
  width: 30px;
  height: 30px;
  min-width: 30px;
}
.contacts__info a p {
  margin: 0 0 0 20px;
}
.contacts__iframe {
  height: 100%;
}
.contacts__iframe iframe {
  width: 100%;
  -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 20px;
  height: 100%;
}

.form-contacts input {
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
  background: #FBFBFB;
  border-radius: 10px;
  color: #5F5F5F;
}
.form-contacts input::-webkit-input-placeholder {
  color: #5F5F5F;
}
.form-contacts input::-moz-placeholder {
  color: #5F5F5F;
}
.form-contacts input:-ms-input-placeholder {
  color: #5F5F5F;
}
.form-contacts input::-ms-input-placeholder {
  color: #5F5F5F;
}
.form-contacts input::placeholder {
  color: #5F5F5F;
}
.row-form-contacts__btn {
  cursor: pointer;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.row-form-contacts__btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.row-form-contacts__btn input {
  cursor: pointer;
  background: -webkit-gradient(linear, left top, left bottom, from(#FE9E14), to(#FC8808));
  background: linear-gradient(180deg, #FE9E14 0%, #FC8808 100%);
  color: #FBFBFB;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
}

.form-contacts__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -20px;
}
.form-contacts__rows:last-child {
  padding: 20px 0 0 0;
}

.form-contacts__row {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 20px;
}
.form-contacts__row input {
  width: 100%;
}

.row-form-contacts {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 20px;
}
.row-form-contacts .row-form-contacts__row input {
  width: 100%;
}
.row-form-contacts .row-form-contacts__text {
  padding: 40px 0;
}

.form-contacts__row {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 20px;
}
.form-contacts__row textarea {
  width: 100%;
  height: 100%;
  width: 329.5px;
  min-width: 329.5px;
  max-width: 329.5px;
  height: 247px;
  min-height: 247px;
  max-height: 247px;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1490196078);
  background: #FBFBFB;
  padding: 16px 30px;
  border-radius: 10px;
}
@media (max-width: 1400px) {
  .form-contacts__row textarea {
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
  }
}

.contacts__form.form-contacts {
  margin: 0 0 60px 0;
}

@media (max-width: 1200px) {
  .form-contacts__rows {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .row-form-contacts .form-contacts__row {
    padding: 30px 0 0 0;
  }
  .form-contacts__row {
    padding: 13px;
  }
  .form-contacts__rows {
    margin: -13px;
  }
  .form-contacts__row textarea {
    height: 180px;
  }
  .row-form-contacts {
    padding: 12px;
  }
  .row-form-contacts__btn {
    width: 100%;
  }
  .row-form-contacts__btn input {
    width: 100%;
  }
  .contacts__infos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__info:last-child {
    margin: 20px 0 0 0;
  }
  .contacts__form.form-contacts {
    margin: 0 0 30px 0;
  }
  .row-form-contacts .row-form-contacts__text {
    padding: 25px 0;
  }
}
@media (max-width: 1200px) {
  .contacts__column {
    padding: 20px;
  }
  .contacts__content {
    margin: -20px;
  }
  .contacts__infos {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .contacts__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__iframe {
    height: 350px;
  }
}
@media (max-width: 750px) {
  .contacts__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .contacts__desp {
    margin: 20px 0 0 0;
  }
  .contacts__content {
    padding: 25px 0 0 0;
  }
}
@media (max-width: 650px) {
  .atelie__swiper {
    padding: 0;
  }
}
@media (min-width: 1300px) {
  .global__title {
    padding: 25px 0 0 0;
  }
}
.atelie__swiper {
  margin: 40px -25px 0 -25px;
}

@media (max-width: 950px) {
  .atelie__swiper {
    margin: 20px -25px 0 -25px;
  }
}
@media (max-width: 650px) {
  .atelie__swiper {
    padding: 0;
  }
  .atelie__swiper {
    margin: 20px 0 0 0;
  }
}

.contacts__title {
  max-width: 535px;
}

.portfolio__grid {
  column-count: auto;
  display: flex
;
  margin: -20px;
  padding: 0 0 40px 0;
gap: 0px;
  flex-wrap: wrap;
}
a.portfolio__item {
  flex: 0 1 33.333%;
  padding: 20px;
  display: flex
  ;
      flex-direction: column;
      gap: 20px;
   
}
a.portfolio__item picture img{
  height: 300px;
}
@media (max-width: 1100px){
  .portfolio__grid{
    margin: -5px;
    padding: 0 0 20px 0;
  }
  a.portfolio__item{
    flex: 0 1 50%;
    padding: 5px;
  }
  a.portfolio__item picture img{
    height: 150px;
  }
}
@media (max-width: 650px){
  a.portfolio__item{
    flex: 1 1 100%;
    gap: 10px;
  }
}
a.portfolio__item picture {
  flex: 1 1 auto;
  display: block;
}

.portfolio__item:hover img {

  transform: none;
}

.portfolio__caption {
  position: relative;
  bottom: 0;
  margin: 0;
}

a.portfolio__item::before{
    content:'';
    display: none;
  }


div#site-slider-1 {
    overflow: hidden;
    padding: 30px;
    box-shadow: 0px 7px 10px 0px #00000026;
    background: #FBFBFB;
    border-radius: 30px;
}
div#site-slider-1 .atelie__pag {
  margin: 35px 0 0 0;
}
.gallery-cust__slide.swiper-slide {
  height: auto;
}
.gallery-cust__image {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.gallery-cust__image img:hover{
    transform: scale(1.1);
}
.gallery-cust__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease 0s;
}
@media (max-width: 650px){
  div#site-slider-1 {
    padding: 15px;
    border-radius: 20px;
}
div#site-slider-1 .atelie__pag {
  margin: 10px 0 0 0;
}


}
.gallery-cust__image img {
  min-height: 480px;
}
@media (max-width: 650px){
  .gallery-cust__image img {
    min-height: 320px;
}
}

.global .portfolio-grid__item .anime-scale {
    transform: translate(0, 20px) scale(0.5);
}