@import url(https://fonts.googleapis.com/css?family=Montserrat:regular,500,700,800&display=swap);

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #333;
  line-height: 1;
  font-family: "Montserrat";
  font-size: 1.5rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-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;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  max-width: 1300px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

@media (max-width: 991px) {
    [class*=__container] {
      padding: 0 1.7rem;
    }
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: relative;
  z-index: 10;
  width: 100%;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    animation: slideDown 0.3s ease;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    will-change: transform, box-shadow;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

body.has-fixed-header {
    padding-top: 125px;
}

.header-another .header {
  /*background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#FFF)), lightgray 50%/cover no-repeat;
  background: linear-gradient(180deg, #EFEFEF 0%, #FFF 100%), lightgray 50%/cover no-repeat;*/
  background: white;
}

.header__container {
  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;
  color: black;
  font-size: 1.125rem;
  font-weight: 700;
}

.page .block-video {
    margin-top: 0;
}

.header-another .header__container {
  color: #333;
}

.header__logo {
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;*/
  max-width: 300px;
}

.header__logo span {
  max-width: 95px;
}

@media (max-width: 439.98px) {
    .header__contact {
        display: none !important;
        font-size: 12px;
    }
}

.header-another .header__logo svg circle {
  fill: #A6A6A6;
}

.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.header__phone {
  font-weight: 500;
}

.header__phone span {
  font-weight: 700;
}

.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  font-size: 1.125rem;
}

.header__call {
  width: 214px;
  padding: 24px 0;
  background-color: rgb(255 220 163 / 80%);
  font-weight: 500;
  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-radius: 5px;
  font-size: 18px;
}

.work-page__info_custom .header__call {
    max-width: 400px;
    margin: 0 auto;
}

.header__menu {
  width: 214px;
  padding: 24px 0;
  background-color: #fff;
  font-weight: 500;
  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;
}

.icon-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}

.menu {
  position: relative;
}

.menu__icon svg path:last-child {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-active .menu__icon svg path:last-child {
  fill: #333;
}

.menu__body {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: -100%;
  width: 428px;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__body.menu-active {
  opacity: 1;
  visibility: visible;
}

.menu__list {
  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: 42px;
  padding-top: 53px;
  gap: 15px;
}

.menu__item {
  padding: 7.5px 0;
}

.menu__item p {
  display: inline-block;
  -webkit-transform: translate(10px, 2px);
      -ms-transform: translate(10px, 2px);
          transform: translate(10px, 2px);
}

.menu__item span {
  cursor: pointer;
}

.menu__link {
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.menu__link:hover,
.menu__link._spoller-active {
  color: #938265;
  padding-left: 10px;
}



.menu__link._spoller-active svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.menu__link._spoller-active svg path {
  fill: #333;
}

.menu__link svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__link span {
  display: inline !important;
}

.menu__all {
  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;
  padding-top: 50px;
  padding-bottom: 30px;
  gap: 1px;
}

.sublist__menu {
  padding-top: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 40px;
}

.sublist__link {
  padding: 7.5px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sublist__link:hover {
  color: #938265;
}

.footer {
  background-color: rgba(187, 169, 139, 0.8);
  position: relative;
}

.footer__container {
  padding-top: 95px;
  padding-bottom: 90px;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 65px;
}

.footer__logo {
  width: 300px;
  margin-top: -10px;
  padding-bottom: 48px;
}

.footer__services ul {
  padding-top: 24px;
}

.footer__services ul li {
  font-size: 20px;
  font-weight: 500;
}

.footer__services ul li:not(:last-child) {
  padding-bottom: 20px;
}

.footer__text {
  font-weight: 700;
}

.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__phone {
  padding-bottom: 20px;
}

.footer__mail {
  margin-bottom: 45px;
}

.footer__bottom {
  font-size: 16px;
  font-weight: 500;
  padding-top: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__bottom a:nth-child(3) {
  text-align: right;
}

.footer__bottom span {
  text-decoration: underline;
}

.footer__up {
  /* position: absolute;
  bottom: 15%;
  right: 18px; */
    position: fixed;
    right: 20px;
    bottom: 90px;
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    transition: all .3s;
    z-index: 4;
}

.footer__up.footer__up-active{
    opacity: 1;
    visibility: visible;
    width: 108px;
    height: 108px;
}
@media(max-width: 991.98px){
    .footer__up{
        position: absolute;
        bottom: 15%;
        right: 18px;
    }
}
.footer__up::before {
  content: "";
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background-color: rgba(187, 169, 139, 0.8);
  -webkit-filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.1));
  position: absolute;
  bottom: 33px;
  right: -16px;
  cursor: pointer;
}

.footer__up svg {
  content: "";
  position: absolute;
  bottom: 67px;
  right: 20px;
  cursor: pointer;
}

.vertical {
  margin-top: 84px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #FCEBCC;
  font-size: 1.25rem;
}

.services .vertical {
  color: #BBA98B;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.button {
  max-width: 410px;
  width: 100%;
  padding: 24px 0;
  background-color: #FADAA3;
  font-weight: 700;
  font-size: 1.125rem;
  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;
}

.button.footer__button {
  background-color: #BBA98B;
}

.title {
  font-weight: 400; /* был 700 */
  /*color: #938265;*/
  color: black;
  margin-bottom: 50px;
  font-size: 2.5rem;
  line-height: 105%;
}

.title-text {
  margin-bottom: 30px;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 2rem;
}

@media (max-width: 767.98px) {
    .title {
      font-size: 1.7rem;
    }
    .title-text {
        font-size: 1.5rem;
    }
}

.services-page__item:hover .title-text {
  color: #938265;
  text-decoration: underline;
}

.work-page__text .title-text {
  color: #938265;
}

.no-webp .main{
  background: url(../img/bg-main.jpg) center/cover no-repeat; }

.main {
  border-radius: 0px 0px 40px 40px;
  padding-top: 50px;
  position: relative;
}

.main__container {
  padding-top: 287px;
  padding-bottom: 269px;
  position: relative;
  z-index: 3;
}

.main__title {
  font-weight: 700;
  color: #fff;
  max-width: 1060px;
}

@supports (font-size: clamp( 1.875rem , 1.2792553191rem  +  2.9787234043vw , 4.5rem )) {
  .main__title {
    font-size: clamp( 1.875rem , 1.2792553191rem  +  2.9787234043vw , 4.5rem );
  }
}

@supports not (font-size: clamp( 1.875rem , 1.2792553191rem  +  2.9787234043vw , 4.5rem )) {
  .main__title {
    font-size: calc(1.875rem + 2.625 * (100vw - 20rem) / 88.125);
  }
}

.advantages__container {
  margin-top: -206px;
}

.advantages__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.advantages__item {
  width: 100%;
  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: 50px 0 62px;
}

.advantages__item:nth-child(1) {
  background-color: #FCE4BB;
}

.advantages__item:nth-child(2) {
  background-color: #FADAA3;
}

.advantages__item:nth-child(3) {
  background-color: #FCEBCC;
}

.advantages__item:nth-child(4) {
  background-color: #BBA98B;
  color: #fff;
}

.advantages__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
}

.advantages__number {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  position: absolute;
  top: 30px;
  left: 30px;
}

.advantages__text {
  max-width: 325px;
  font-weight: 700;
  padding-left: 30px;
  line-height: 130%;
  position: absolute;
  top: 60%;
}

@supports (font-size: clamp( 1.1875rem , 1.1165780142rem  +  0.3546099291vw , 1.5rem )) {
  .advantages__text {
    font-size: clamp( 1.1875rem , 1.1165780142rem  +  0.3546099291vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 1.1875rem , 1.1165780142rem  +  0.3546099291vw , 1.5rem )) {
  .advantages__text {
    font-size: calc(1.1875rem + 0.3125 * (100vw - 20rem) / 88.125);
  }
}

.services {
    position: relative;
    margin-top: -250px;
}

@media (max-width: 1281px) {
    .services {
        margin-top: 0;
    }
}

.services__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 108px;
  background-color: white;
  padding: 50px 10px;
  align-items: center;
}

.services__slider {
  max-width: 1030px;
}

.services__block .button {
  width: 410px;
}

.services__slide {
  -webkit-column-gap: 102px;
     -moz-column-gap: 102px;
          column-gap: 102px;
  display: -ms-grid;
  display: grid;
    grid-template-areas: "img text";
    align-items: center;
}

.services__img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: img;
}

.services__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  color: #938265;
}

.services__text {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: text;
  line-height: 32px;
}

.services__list {
  margin-right: 70px;
}

.services__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.services__list ul li {
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.services__list ul li.active {
  color: #938265;
  padding-left: 40px;
  position: relative;
  cursor: default;
}

.services__list ul li.active::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #938265;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-disabled {
  cursor: default;
}

.swiper-button-disabled svg path {
  fill: #E6E6E6;
}

.materials__container {
  margin-top: 100px;
  margin-bottom: 50px;
}

.materials_page .materials__container {
  margin-top: 149px;
  margin-bottom: 100px;
  padding-top: 40px;
  border-top: 1px solid #FADAA3;
}

.materials__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.materials__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 24.1%;
          flex: 1 1 24.1%;
  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: 36px;
  padding-bottom: 36px;
  padding-top: 105px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.materials__item:not(.materials__item_all):hover {
  background-color: #FCEBCC;
}

.materials__item:not(.materials__item_all) {
  background-color: #FBFBFB;
}

.materials__item.materials__item_all {
  font-size: 1.125rem;
  color: #938265;
}

.materials__img {
  position: relative;
}

.materials__img::before {
  content: "";
  width: 100%;
  height: 100%;
  max-width: 214px;
  max-height: 214px;
  border-radius: 50%;
  background-color: rgba(187, 169, 139, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.materials__img::after {
  content: "";
  background: url(../img/link.svg) center/cover no-repeat;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.materials__item:hover:not(.materials__item_all) .materials__img::before,
.materials__item:hover:not(.materials__item_all) .materials__img::after {
  opacity: 1;
}

.materials__item_all .materials__img {
  -webkit-transform: translate(0, 30px);
      -ms-transform: translate(0, 30px);
          transform: translate(0, 30px);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.materials__item_all .materials__img::before {
  content: "";
  width: 102px;
  height: 102px;
  border: 2px solid #BBA98B;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 1;
  background: none;
}

.materials__img img {
  width: 100%;
  max-width: 200px;
}

.materials__text {
  font-weight: 700;
  padding: 0 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.materials__item:hover .materials__text {
  color: #938265;
  text-decoration-line: underline;
}

.work__container {
  padding-top: 50px;
  display: -ms-grid;
  display: grid;
  margin-bottom: 150px;
}

.header-another .work__container {
  margin-top: 20px;
  margin-bottom: 100px;
  padding-top: 40px;
  /*border-top: 1px solid #FADAA3;*/
}

.work__title_color {
  color: black;
  font-size: 2.5rem;
  margin-bottom: 44px;
}

@media (max-width: 767.98px) {
    .work__title {
        font-size: 1.7rem;
    }
}

.work__items, .staff__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
}

.staff__items {
    column-gap: 20px;
    row-gap: 40px;
}

.staff__item {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 calc(20% - 20px);
}

.work__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.work__item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*background: -webkit-gradient(linear, left top, left bottom, color-stop(47.4%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.68)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 47.4%, rgba(0, 0, 0, 0.68) 100%); */
  z-index: 2;
}

/*.work__item::after {
  content: "";
  background: url(../img/link.svg) center/cover no-repeat;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 10%;
  right: 10%;
}*/

.work__item:hover {
  -webkit-transform: scale(1.07);
      -ms-transform: scale(1.07);
          transform: scale(1.07);
  border: 10px solid white;
  max-width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.work__img {
  position: relative;
}

.staff__img {
    position: relative;
    flex: 1 1 100%;
}

.staff__img img {
    width: 190px;
    display: block;
    margin: 0 auto;    
}

.work__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1.2 / 1;
}

@media (max-width: 768px) {
    .work__img img {
        width: auto;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1.2 / 1;
    }
}

.work__text, .staff__text {
  position: absolute;
  z-index: 5;
  bottom: 10%;
  left: 10%;
  font-weight: 700;
  color: #FFF;
  max-width: 425px;
  line-height: 125%;
}

.staff__text {
    color: #000;
    text-align: center;
    position: static;
}

@supports (font-size: clamp( 1.375rem , 1.2331560284rem  +  0.7092198582vw , 2rem )) {
  .work__text {
    font-size: clamp( 0.8rem , 0.7rem  +  0.5vw , 2rem );
  }
}

@supports not (font-size: clamp( 1.375rem , 1.2331560284rem  +  0.7092198582vw , 2rem )) {
  .work__text {
    font-size: calc(1.375rem + 0.625 * (100vw - 20rem) / 88.125);
  }
}

.work__button {
  margin-top: 70px;
  -ms-grid-column-align: center;
      justify-self: center;
}

.services-page__container {
  margin-top: 149px;
  margin-bottom: 100px;
  padding-top: 40px;
  border-top: 1px solid #FADAA3;
}

.services-page__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.services-page__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 32%;
          flex: 1 1 32%;
  background-color: #FBFBFB;
  padding: 70px 50px 71px;
  min-width: 300px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.services-page__item span {
  position: absolute;
  top: 10%;
  right: 10%;
}

.services-page__item span svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.services-page__item:hover {
  background-color: #FCEBCC;
}

.services-page__item:hover span svg path {
  fill: #938265;
}

.services-page__img {
  padding-bottom: 67px;
}

.services-page__item:hover .services-page__img svg path {
  stroke: #938265;
}

.services-page__text {
  line-height: 32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.services-page__item:hover .services-page__text {
  color: #938265;
}

.breadcrumb {
  margin-bottom: 40px;
}

.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  color: #A6A6A6;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.breadcrumb ul li {
  position: relative;
}

.breadcrumb ul li:not(:first-child) {
  padding-left: 20px;
}

.breadcrumb ul li:not(:first-child)::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: -25px;
}

.breadcrumb_active {
  color: #938265;
  pointer-events: none;
}

.work-page__container {
  margin-top: 20px;
  margin-bottom: 100px;
  padding-top: 40px;
  /*border-top: 1px solid #FADAA3;*/
}

.work-page__sliders {
  max-width: 640px;
}
.work-page__info_custom .work-page__sliders {
    float: left;
    max-width: 660px;
    padding: 10px 60px 45px 0;
}

.work-page__slider {
  position: relative;
}

.work-page__slide {
  position: relative;
}

.work-page__slide img {
  width: 100%;
  max-width: 840px;
  /*max-height: 450px;*/
  height: auto;
  aspect-ratio: 1.2 / 1;
  -o-object-fit: cover;
     object-fit: cover;
}


/*.work-page__slide::before {
  content: "";
  background: url(../img/zoom.svg) center/cover no-repeat;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.work-page__slide::after {
  content: "";
  width: 214px;
  height: 214px;
  border-radius: 50%;
  background-color: rgba(187, 169, 139, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}*/

.work-page__slide:hover::before,
.work-page__slide:hover::after {
  opacity: 1;
  cursor: pointer;
}

.work-page__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.work-page__text {
  max-width: 834px;
  font-size: 1.25rem;
  line-height: 175%;
}

@media (max-width: 767.98px) {
    .work-page__text {
      max-width: 834px;
      font-size: 1rem;
      line-height: 160%;
    }
}

.work-page__info_custom .work-page__text {
    max-width: 100%;
    width: 100%;
}

.work-page__text span {
  font-weight: 700;
}

.work-page__description, .work-page__text.text-custom p:not(.title-text){
  padding-bottom: 5px;
  font-size: 1.25rem;
  line-height: 175%;
}

@media (max-width: 767.98px) {
    .work-page__description, .work-page__text.text-custom p:not(.title-text) {
      max-width: 834px;
      font-size: 1rem;
      line-height: 160%;
    }
}


.work-page__text.text-custom p:not(.title-text) {
    margin-bottom: 0;
}
.work-page__text.text-custom p span {
    font-weight: 400;
}

.work-page__slider-mini {
  max-width: 840px;
  padding-top: 20px;
}

.work-page__slide-mini img {
  width: 100%;
  max-width: 200px;
  height: 100%;
  max-height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}



.work-page__button-prev {
  left: 45px;
}

.work-page__button-prev::before {
  left: -40px;
}

.work-page__button-next {
  right: 45px;
}

.work-page__button-next::before {
  right: -40px;
}

.work-page__button-prev,
.work-page__button-next {
  position: absolute;
  top: 50%;
}

.work-page__button-prev svg,
.work-page__button-next svg {
  z-index: 2;
  position: relative;
}

/*.work-page__button-prev::before,
.work-page__button-next::before {
  content: "";
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
   gap: 20px;
}*/

.swiper-button-disabled.work-page__button-prev::before,
.swiper-button-disabled.work-page__button-next::before {
  display: none;
}

.work__container.border-none {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

@font-face {
  font-family: "lg";
  src: url(data:font/woff2;base64,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) format("woff2"), url(data:font/woff;base64,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) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 5000;
  outline: none;
  border: none;
}

.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}

.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}

.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}

.lg-next:before {
  content: "\e095";
}

.lg-prev {
  left: 20px;
}

.lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.lg-media-overlap .lg-toolbar {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-maximize {
  font-size: 22px;
}

.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

.lg-sub-html a {
  color: inherit;
}

.lg-sub-html a:hover {
  text-decoration: underline;
}

.lg-media-overlap .lg-sub-html {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -webkit-transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}

.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-zoom-from-image {
  opacity: 1;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}

.lg-outer .lg-item {
  will-change: transform, opacity;
  display: none !important;
}

.no-webp .lg-outer .lg-item:not(.lg-start-end-progress){
  background: url(data:image/gif;base64,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) no-repeat scroll center center transparent; }

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}

.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}

.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out 0.15s;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-container {
  display: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}

.lg-inline .lg-backdrop {
  z-index: 1;
}

.lg-inline .lg-outer {
  z-index: 2;
}

.lg-inline .lg-maximize:after {
  content: "\e909";
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  transition: -webkit-transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
@media(max-width: 1440.98px) {
    .work-page__info_custom .work-page__sliders {
        max-width: 550px;
        padding: 30px 50px 35px 0;
    }
}
@media (max-width: 1300px) {
  .work-page__sliders {
    max-width: 100%;
  }

  .work-page__slide img {
    max-width: 100%;
  }

  .work-page__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }

  .work-page__text {
    max-width: 100%;
  }

  .work-page__slider-mini {
    max-width: 100%;
  }

  .work-page__slide-mini img {
    max-width: 100%;
  }
}

@media (max-width: 1280px) {
  .services .vertical {
    margin-top: 0;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    margin-bottom: 40px;
  }

  .services__container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-top: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .services__slider {
    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: 40px;
    max-width: 100%;
  }

  .services__block {
    width: 100%;
  }

  .services__block .button {
    margin: 0 auto;
  }

  .services__slide {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }

  .services__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .services__list ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 1280.98px) {
  .advantages__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .advantages__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }

  .advantages__icon svg {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1024.98px) {
  .footer__top {
    -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;
    text-align: center;
    gap: 27px;
  }

  .footer__bottom {
    -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;
    text-align: center;
    padding-top: 33px;
    padding-bottom: 1px;
    gap: 20px;
  }

  .footer__up {
    bottom: 0;
    right: calc(50% - 40px);
  }
}

@media (max-width: 991.98px) {
  .menu-active body {
    overflow: hidden;
    -ms-touch-action: none;
        touch-action: none;
  }

  .header__container {
    margin-top: 0;
  }

  .header__logo {
    width: 350px;
    z-index: 10;
    margin: 15px 0;
  }

  .header__logo span {
    display: none;
  }

  .menu-active .header__logo svg circle {
    fill: #A6A6A6;
  }

  .menu-active .header__phone {
    color: #333;
    z-index: 10;
  }

  .header__call {
    width: 296px;
    margin-top: 29px;
  }

  .header__menu {
    background-color: transparent;
    width: 70px;
  }

  .header__menu span {
    display: none;
  }

  .menu {
    position: static;
  }

  .menu__icon {
    z-index: 10;
    padding: 0 30px;
  }

  .menu-active .menu__icon svg path:last-child {
    fill: #A6A6A6;
  }

  .menu__body {
    width: 100vw;
    top: 0;
    left: 0;
    padding-top: 60px;
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    background-color: #fff;
    z-index: 2;
  }

@supports (min-height: clamp( 4.375rem , 4.0913120567rem  +  1.4184397163vw , 5.625rem )) {
    .menu__body::before {
      min-height: clamp( 4.375rem , 4.0913120567rem  +  1.4184397163vw , 5.625rem );
    }
}

@supports not (min-height: clamp( 4.375rem , 4.0913120567rem  +  1.4184397163vw , 5.625rem )) {
    .menu__body::before {
      min-height: calc(4.375rem + 1.25 * (100vw - 20rem) / 88.125);
    }
}

  .menu__shadow {
    border-radius: 8px;
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
    margin: 24px 10px 0;
  }

  .menu__list {
    padding-top: 30px;
    padding-left: 0px;
    text-align: center;
  }

    .menu__all .header__call._dynamic_adapt_ {
        display: none !important;
    }
    .menu__all .header__call._dynamic_adapt_#mob {
        display: block !important;
    }

  .vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  }

  .services-page__item .title-text {
    font-size: 1.5rem;
  }

  .title-text.services__title {
    margin-bottom: 0;
  }

  .main {
    border-radius: 0;
  }

  .main__container {
    padding-top: 90px;
    padding-bottom: 45px;
  }

  .advantages__container {
    margin-top: 0;
    padding: 0;
  }

  .services__slider {
    margin-bottom: 0;
  }

  .services__block .button {
    width: 100%;
    max-width: 242px;
  }

  .services__slide {
    row-gap: 30px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    display: -ms-grid;
    display: grid;
    padding-top: 5px;
    -ms-grid-columns: 100px 16px 1fr;
        grid-template: 100px/100px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
        grid-template-areas: "img title" "text text";
  }

  .services__img svg {
    width: 100px;
    height: 100px;
  }

  .services__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .services__text {
    font-size: 1.125rem;
  }

  .services__list {
    display: none;
  }

  .materials_page .materials__container {
    margin-top: 98px;
  }

  .materials__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 25%;
            flex: 1 1 25%;
    padding-bottom: 51px;
    padding-top: 43px;
    text-align: center;
  }

  .materials__text {
    font-size: 1.25rem;
  }

  .header-another .work__container {
    margin-top: 98px;
  }

  .services-page__container {
    margin-top: 98px;
  }

  .services-page__item {
    padding: 45px 30px;
  }

  .services-page__text {
    font-size: 1.125rem;
  }

  .work-page__container {
    margin-top: 98px;
  }

  .services__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .services__title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .services__text {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  
    .work-page__info_custom .work-page__sliders {
        max-width: 650px;
        padding: 0 0 50px;
        margin: 0 auto;
        float: none;
    }
}

@media (max-width: 767.98px) {
  .materials__img::before {
    max-width: 120px;
    max-height: 120px;
  }

  .materials__item_all .materials__img {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    height: 83px;
  }

  .materials__item_all .materials__img svg {
    width: 60px;
  }

  .materials__item_all .materials__img::before {
    width: 70px;
    height: 70px;
    top: 20%;
  }

  .materials__img img {
    max-width: 83px;
  }

  .work__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .work__text {
    left: 3%;
  }

  .work-page__button-prev svg,
  .work-page__button-next svg {
    width: 20px;
    height: 20px;
  }

  .work-page__button-prev::before,
  .work-page__button-next::before {
    width: 60px;
    height: 60px;
  }

  .work-page__button-prev svg {
    -webkit-transform: translate(-22px, 0px) rotate(180deg);
        -ms-transform: translate(-22px, 0px) rotate(180deg);
            transform: translate(-22px, 0px) rotate(180deg);
  }

  .work-page__button-next svg {
    -webkit-transform: translate(22px, 0px);
        -ms-transform: translate(22px, 0px);
            transform: translate(22px, 0px);
  }
  
  .staff__item {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 578.98px) {
  .materials__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
}

@media (max-width: 576.98px) {
  .advantages__icon {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .advantages__icon svg {
    width: 100px;
    height: 100px;
  }

  .advantages__text {
    top: 40%;
    padding-left: 9px;
  }
  .advantages__number {
    left: 9px;
  }
  
    .staff__item {
        flex: 0 0 100%;
    }
}

@media (max-width: 360.98px) {
  .header__call {
    width: 240px;
  }
  .advantages__text {
    font-size: 17px;
  }
}

.webp .main{ background: url(../img/bg-main.webp) center/cover no-repeat; }

.webp .lg-outer .lg-item:not(.lg-start-end-progress){ background: url(data:image/webp;base64,UklGRs4AAABXRUJQVlA4IMIAAACwBQCdASogACAAPpFCnEolo6KhqAgAsBIJaQAD5dDxrXM99232GfVDjLF0EQDwsC0CXKtWlgAA/vV76pcYbjjsL88+3qb/4UfhRX+dwASYANdOF+J5Nu61NxB7TUbHeCQeee2d4nX3M/8oPzSbTnBOl/xCNiQkRhkYBtGvv3/fXfn2CbNj/EPmnHMb/H7zFQx28TJK5yXYt1B6zlKYbIeBfYPo1h1tsfJDbPjNrzTs7O1elyh7eF4fdYd8hFly7AAAAA==) no-repeat scroll center center transparent; }

.work-page__text p {
  margin-bottom: 10px;
}
.work-page__text ul {
  margin-bottom: 20px;
}
.work-page__text ul {
  padding-left: 20px;
}
.work-page__text ul li {
  list-style: disc;
}
@media (min-width: 768px) {
  .work-page__sliders.new {
    max-width: 420px;
  }
}

.popup-fade {
  display: none;
}
.popup-fade:before {
  content: '';
  background: #000;
  position: fixed; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  opacity: 0.7;
  z-index: 9999;
}
.popup-open {
    background: #20a5da;
    color: #fff;
    padding: 10px 30px;
    display: block;
    text-align: center;
    text-transform: uppercase;
}
.popup {
  position: fixed;
  /* top: 20%; */
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  /* left: calc(50% - 300px) */;
  padding: 20px;
  width: 600px; 
  background: #fff;
  border: 1px solid orange;
  border-radius: 4px; 
  z-index: 99999;
  opacity: 1;
}
.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 40px;
    line-height: 60%;
    z-index: 5;
}
.popup h2 {
    margin-top: 0;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 1.1em;
    text-align: center;
}
form input, form textarea {
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1.5px solid gray;
    padding: 16px;
    margin-bottom: 14px;
    font-size: 16px;
}
.form button {
    width: 100%;
    text-align: center;
    padding: 25px 20px;
    background-color: rgba(187, 169, 139, 0.8);
    font-weight: 400;
    border-radius: 5px;
    font-size: 20px;
}
.work-page__text_display{
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
@media(max-width: 991.98px){
    .work-page__text_display{
        flex-direction: column;
    }
}
.form__policy {
    margin-top: 20px;
    margin-bottom: 20px;
}
.form__policy input {
    display: none;
}
.form__policy label {
    display: flex;
    font-size: 16px;
    line-height: 18px;
    color: gray;
    cursor: pointer;
    letter-spacing: -.03em;
}
.form__policy label span {
    border-radius: 3px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    position: relative;
    margin-right: 10px;
    border: 1px solid grey;
}
.form__policy label span:before {
    transition: .5s ease;
    transform: rotate(-45deg);
    content: "";
    width: 10px;
    height: 7px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    position: absolute;
    display: block;
    left: calc(50% - 5px);
    top: calc(50% - 5px);
    opacity: 0;
}
.form__policy input:checked+label span:before {
    opacity: 1;
}
.form__policy label strong {
    font-weight: 400;
}
.form__policy label a {
    transition: .5s ease;
    text-decoration: none;
    border-bottom: 1px dashed #FADAA3;
}
.form__policy label a:hover {
    color: #333;
    border-bottom: 1px solid transparent;
}
.work-page__slide.no-gallery::before, .work-page__slide.no-gallery::after {
    display: none;
}
.work-images__slider {
    position: relative;
}
.work-images__item img {
    width: 100%;
}
.advantages {
    position: relative;
    z-index: 2;
}

.main__title {
    position: relative;
    white-space: pre-wrap;
    overflow: hidden;
    width: 100%;
    height: 540px;
    line-height: 1.2em;
}

.main__title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 2px;
    background-color: #fff;
    animation: blink-caret 0.75s step-end infinite;
    height: 40px;
}

@keyframes blink-caret {
    from, to {
        background-color: #fff;
    }
    50% {
        background-color: #fff;
    }
}

.block-video {
    margin-top: 50px;
}
.block-video__video video {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    height: 90vh;
}

@media (max-width: 767.98px) {
    .block-video__video video {
        height: 80vh;
        max-height: 100%;
    }
    .block-video__video.about video {
        height: 35vh;
    }
}

@media(min-width: 1930px){
    .block-video__video video {
        max-height: 90vh;
    }
    .header__container {
        width: 100%;
        max-width: 100%;
    }
}
.work-page .block-video__video {
    margin-bottom: 50px;
}
@media(max-width: 650.98px) {
    .popup {
        width: 95%;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 50%;
    }
}
.page-items__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 90px;
    margin-bottom: 60px;
}
.page-items__item {
    flex: 1 1 calc(33.33% - 50px);
    max-width: calc(29.333% - 10px);
}
@media (max-width: 1300px) {
    .page-items__item {
        max-width: calc(28.333% - 10px);
    }
}
.page-items__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
}
.work__items.custom {
    margin-bottom: 50px;
}
.work__items.custom .work__item {
    flex: 1 1 calc(14.3% - 20px);
    max-width: calc(14.3% - 20px);
}
.work-page__text.text-custom .work__items.custom p:not(.title-text) {
    font-size: 1rem;
    line-height: 18px;
}
@media(max-width: 991.98px) {
    .page-items__item {
        flex: 1 1 calc(50% - 50px);
        max-width: 50%;
    }
    .work__items.custom .work__item {
        flex: 1 1 calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
}
@media(max-width: 767.98px) {
    .page-items__items {
        gap: 30px;
    }

    .work__items.custom .work__item {
        flex: 1 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}
@media(max-width: 578.98px) {
    .work__items.custom .work__item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

.work__items, .work-items {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 60px;
}

@media (max-width: 1100px) {
    .work__items, .work-items {
        grid-template-columns: repeat(2,1fr);
        gap: 60px;
    }
}


@media (max-width: 767.98px) {
    .work__items {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 50px;
    }
}

.work__container {
    max-width: 1300px !important;
}

	    .tabs-nav {
	        display: flex;
	        justify-content: center;
	        margin-top: 120px;
	        gap: 20px;
	        flex-wrap: wrap;
	    }
	    
	    .tab-button {
	        padding: 10px 20px;
	        background: #f5f5f5;
	        border: none;
	        cursor: pointer;
	        font-size: 16px;
	        transition: all 0.3s ease;
	        border-radius: 4px 4px 0 0;
	        line-height: 120%;
	    }
	    
	    @media (max-width: 767.98px) {
	        .tab-button {
	            padding: 5px 3px;
	            font-size: 14px;
	        }
	    }
	    
	    @media (max-width: 430px) {
	        .tab-button {
	            font-size: 12px;
	        }
	    }
	    @media (max-width: 380px) {
	        .tab-button {
	            font-size: 10px;
	        }
	    }
	    
	    .tab-button.active {
	        background: #BBA98B;
	        color: white;
	    }
	    
	    .tab-content {
	        display: none;
	    }
	    
	    .tab-content.active {
	        display: block;
	    }
	   
	   .work-page__text.about span {
	       font-weight: 400 !important; 
	   }
	   
.new-menu {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 25px;
}
.new-menu .menu__link {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500 !important;
}
.work-page__container {
  margin-top: 10px !important;
}
.header {
    padding: 20px !important;
}

.header__menu.menu.mobile-menu {
    display: none !important;
}

@media (max-width: 1140px) {
    .new-menu .menu__link {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .header__logo {
        max-width: 350px;
    }
}

@media (max-width: 991px) {
    .header__contact.new-header {
        display: none !important;
    }
    .header__menu.menu.mobile-menu {
        display: block !important;
    }
    .header {
        padding: 0 !important;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    }
}

.work-page__container.contact {
    max-width: 1300px !important;
}

.uslugi-items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 30px;
    gap: 20px;
}

.uslugi-item {
    flex: 1 0 calc(25% - 45px);
    min-width: 200px;
    text-align: left;
}

.uslugi-divider {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.uslugi-divider:last-child {
    display: none;
}

.uslugi-svg-container {
    margin: 0 auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.usluga-title {
    margin: 30px 0;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    font-size: 1.3rem;
}

.usluga-desc {
    display: block;
    font-size: 0.73em;
    color: #666;
    text-align: left;
    line-height: 165%;
}


@media (max-width: 991px) {
    .uslugi-row {
        flex-direction: column;
        margin-bottom: 0;
    }
    
    .uslugi-item {
        flex: 1 0 100%;
        width: 100%;
        margin-top: 20px;
        padding: 0 15px;
    }
    
    .uslugi-divider {
        display: none;
    }
    
    .uslugi-svg-container {
        height: 80px;
        float: left;
        padding: 0 20px 20px 0;
    }
    
    .usluga-title {
        margin: 10px 0 5px;
        font-size: 0.8em;
    }
    
    .usluga-desc {
        font-size: 0.65em;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .uslugi-item:last-child .usluga-desc {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

.foot-element {
    width: 100%;
}

.foot-element p, .foot-element a {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.foot-element p.name-footer {
    font-weight: 700;
    margin-bottom: 30px;
    text-align: right;
}

.foot-element p.text-footer {
    text-align: right;
    line-height: 160%;
}

@media (max-width: 1024px) {
    .foot-element p.name-footer {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .foot-element p.text-footer {
        text-align: center;
    }
    .footer__logo {
        text-align: center;
        padding-bottom: 8px;
    }
}

.footer__top {
    display: grid !important;
    grid-template-columns: repeat(3,1fr);
    gap: 105px;
}

.footer__bottom {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 104px;
}

@media (max-width: 1024px) {
    .footer__top {
        grid-template-columns: repeat(1,1fr);
        gap: 10px;
    }

    .footer__bottom {
        grid-template-columns: repeat(1,1fr);
        gap: 10px;
    }
    .footer__bottom a:nth-child(3) {
        text-align: center;
    }
}

.work-page__info.contacts {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.work-page__text.work-page__text_display.contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 30%;
}

.work-page__text.work-page__text_display.contacts .footer__phone {
    padding-bottom: 0;
    font-weight: 400;
}

.work-page__text.work-page__text_display.contacts .footer__mail {
    font-weight: 400;
}

.work-page__text.work-page__text_display.contacts .header__call {
    width: 100%;
    max-width: 280px;
}

.work-page__info.contacts .contacts-map {
    width: 70%;
}

@media (max-width: 1300px) {
    .work-page__text.work-page__text_display.contacts {
        width: 100%;
    }
    .work-page__info.contacts .contacts-map {
        width: 100%;
    }
}

.jobs-text p {
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 175% !important;
}

.jobs-text .group-company {
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .jobs-text p {
        font-size: 16px !important;
        line-height: 160% !important;
    }
}

.tabs-nav.uslugi {
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 30px;
}

.work-slider__container {
    position: relative;
    padding: 0 60px;
}

.work-slider {
    width: 100%;
    overflow: hidden;
}

.work-slider .swiper-wrapper {
    display: flex;
    box-sizing: border-box;
}

.work-slider .swiper-slide {
    flex-shrink: 0;
    width: calc(33.333% - 20px);
    margin-right: 20px;
    transition: all 0.3s ease;
}

.work-slider__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.work-slider__prev,
.work-slider__next {
    pointer-events: auto;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.work-slider__prev {
    transform: rotate(180deg);
}

/* Адаптивность */
@media (max-width: 1047px) {
    .work-slider .swiper-slide {
        width: calc(50% - 15px);
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .work-slider__container {
        padding: 0 40px;
    }
    
    .work-slider .swiper-slide {
        width: 100%;
        margin-right: 0;
    }
    
    .work-slider__prev,
    .work-slider__next {
        width: 30px;
        height: 30px;
    }
}

div.work {
    margin-top: 20px;
    margin-bottom: 50px;
    padding: 0 0.9375rem;
}

.slider-title {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.work-text {
    text-align: center;
    font-size: 14px !important;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
}

.work-text .work-city {
    font-weight: 400;
    margin-top: 10px;
    font-size: 16px !important;
}

.btn-more {
    margin-top: 30px;
    text-align: center;
}

.btn-more button, .btn-contact .button {
    margin: 0 auto;
    max-width: 210px;
    width: 100%;
    padding: 18px 0;
    background-color: rgba(187, 169, 139, 0.8);
    font-weight: 500;
    font-size: 18px;
    border-radius: 5px;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #BBA98B;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #555;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

.btn-more.contact button {
    margin: 0;
}

.work-text .work-city {
    text-transform: none;
}

@media (max-width: 767.98px) {
    .work-text h2 {
        margin-bottom: 0;
        font-size: 16px;
    }
}

.header__container {
    max-width: 100% !important;
    margin: 0 40px;
}

@media (max-width: 1110px) {
    .header__container {
        margin: 0;
    }
}

.none-mob {
    display: block;
}

.none-pc {
    display: none;
}

.uslugi-svg-container svg {
    width: 74px;
}

@media (max-width: 991px) {
    .none-mob {
        display: none;
    }

    .none-pc {
        display: block;
    }
    .uslugi-svg-container svg {
        width: 64px;
    }
}

.btn-contact .button {
    margin: 0;
}

.usluga-title svg {
    position: relative;
    top: 5px;
    margin-left: 5px;
}

.work-images-setka {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
}

.work-images-setka img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .work-images-setka img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .work-images-setka {
        gap: 20px;
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 500px) {
    .work-images-setka img {
        height: 150px;
    }
}


.work__img .work-text {
    /*position: absolute;*/
    bottom: 0; 
    left: 0;
    width: 100%;
    height: 90px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
    align-items: center;
    align-content: center;
}

.work__img .work-text p {
    font-size: 14px;
    line-height: 20px;
}

.work-text .title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 30px;
}

.work__img .work-text .work-city {
    font-size: 14px !important;
}

@media (max-width: 1023.98px) {
    .work__img .work-text p {
        font-size: 12px;
    }
    
    .work__img .work-text .work-city {
        font-size: 10px !important;
    }
    .work-text .title {
        font-weight: 600;
    }
    .work-text .work-city {
        font-size: 14px !important;
    }
}

.header__contact.new-header {
    margin-left: -84px;
}

.new-menu .menu__link.active {
    color: #938265 !important;
}

@media (max-width: 768px) {
    .work-text .title {
        font-size: 16px;
    }

    .work-page__slide .work__img img {
        max-height: 350px !important;
    }
    
}

.menu__shadow .menu__link {
    font-weight: 500;
    text-transform: uppercase;
}

	.inn-ogrn {
		padding-top: 15px;
		line-height: 20px;
	}
	.inn-ogrn a {
		font-size:13px;
	}
	.accept-cookie {
	    width: 100%;
	    text-align: center;
	    text-decoration: none !important;
	    display: inline-block;
	    background-color: rgb(57, 67, 78);
	    color: rgb(229, 229, 229);
	    padding: 15px !important;
	    border-radius: 4px !important;
	}
	.accept-cookie:hover {
	    color: rgb(229, 229, 229);
	}
	.terms {
	    position: fixed;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    width: 100%;
	    padding: 10px 0;
	    z-index: 10000;
	    background: #fff;
	    border-top: 2px solid rgb(35, 35, 35);
	    display: none;
	}
	.terms__container{
	    display: flex;
        align-items: center;
        gap: 30px;
        font-size: 22px;
	}
	.terms__text{
        flex: 1 1 80%;
        line-height: 1.5;
	}
	.terms__btn{
        flex: 1 1 20%;
	}
	@media (min-width:992px) {
	    .terms .row {
	        display: flex;
	        flex-wrap: wrap;
	        align-items: center;
	    }
	}
	@media (max-width:991.98px) {
	    .terms__container{
	        gap: 0px;
            flex-direction: column;
            font-size: 16px;
	    }
	    .cookie-text {
	        margin-bottom:10px;
	    }
	    .terms__btn{
            min-width: 300px;
    	}
	}
	.terms.show {
	    display: block;
	}
	@media (max-width:576px) {
		.inn-ogrn {
			text-align:center;
		}
	}
	
	/* Базовые стили для ПК (по умолчанию) */

/* Мобильная версия для iPad Pro */
@media only screen 
  and (max-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (pointer: coarse) 
  and (hover: none) {

  .header__container {
    padding: 10px;
    justify-content: space-between;
  }
  
  .header__logo {
    max-width: 250px;
    margin-bottom: 15px;
  }
  
  .header__contact {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .header__call,
  .header__menu {
    width: 100%;
    max-width: 300px;
    margin: 5px auto;
  }
  
  .header__button {
      gap: 20px;
  }
  
  .menu__body {
      right: 0;
      left: 0;
  }
  
  /* Адаптация преимуществ */
  .advantages__items {
    flex-direction: column;
  }
  
  .advantages__item {
    flex: 1 1 100%;
    padding: 30px 0;
  }
  
  /* Адаптация сервисов */
  .services__container {
    flex-direction: column;
    padding: 20px 10px;
  }
  
  .services__slide {
    grid-template-areas: 
      "img"
      "title"
      "text";
    gap: 15px;
    text-align: center;
  }
  
  /* Адаптация материалов */
  .materials__items {
    flex-direction: column;
  }
  
  .materials__item {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
  
  /* Адаптация работ */
  .work__items {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .staff__items {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .staff__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Адаптация футера */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Скрываем элементы, которые не нужны в мобильной версии */
  .new-menu {
    display: none;
  }
  
  .header__contact.new-header {
    display: none !important;
  }
  
  /* Показываем мобильное меню */
  .header__menu.menu.mobile-menu {
    display: block !important;
    width: auto;
  }
  
  /* Адаптация текстов */
  .title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
  
  .title-text {
    font-size: 1.5rem;
  }
  
  /* Адаптация контента страниц */
  .work-page__info {
    flex-direction: column;
    gap: 30px;
  }
  
  .work-page__text_display {
    flex-direction: column;
    gap: 20px;
  }
  
  .page-items__items {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .page-items__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Адаптация сетки изображений */
  .work-images-setka {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
    button.header__call {
        display: none !important;
    }
    button.header__call#mob {
        display: block !important;
    }
    .menu__all {
        padding-top: 0px;
    }
}

.header__button {
    align-items: center !important;
    gap: 10px !important;
}

.mob-center-header {
    display: none;
}
@media (max-width: 991px){
    .mob-center-header {
        display: flex;
        font-size: 12px !important;
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }
    .mob-center-header .header__call {
        display: block !important;
        width: 100%;
        padding: 5px;
        margin-top: 0px;
        font-size: 12px;
        width: 114px;
    }
    .header-mob-phone {
        width: 100px;
    }
    .header__container {
        padding: 0 1rem;
    }
    .header-phone.pc {
        display: none !important;
    }
}

/* Кнопка поиска в хедере */
.header__search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin: 0 10px;
    color: #333;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__search-toggle:hover {
    color: #007bff;
}

/* Оверлей поиска */
.search-overlay {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.search-overlay.active {
    right: 0;
}

/* Контейнер поиска */
.search-container {
    padding: 20px;
    position: relative;
    height: 100%;
}

/* Кнопка закрытия */
.search-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    z-index: 10001;
}

.search-close:hover {
    color: #333;
}

/* Форма поиска */
.search-form {
    margin-top: 40px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #007bff;
}

.search-submit {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #666;
}

.search-submit:hover {
    color: #007bff;
}

/* Результаты поиска */
.search-results-wrapper {
    margin-top: 20px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.search-results {
    padding: 10px 0;
}

.search-result-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-link {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.search-result-link:hover {
    background-color: #f8f9fa;
}

.search-result-title {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.search-result-desc {
    display: block;
    font-size: 14px;
    color: #666;
}

/* Адаптивность */
@media (max-width: 768px) {
    .search-overlay {
        width: 100%;
        right: -100%;
    }
    
    .header__search-toggle {
        margin: 0 5px;
    }
}

/* Затемнение фона */
.search-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

.search-backdrop.active {
    display: block;
}
.search-message {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.search-results {
    padding: 10px 0;
}

.search-result-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.search-result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.search-result-link {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.search-result-link:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.search-result-title {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: #2c3e50;
}

.search-result-desc {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.4;
}

/* Индикатор загрузки */
.search-loading {
    text-align: center;
    padding: 20px;
}

.search-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.work-page__text.work-page__text_display.contacts .footer__phone {
    width: max-content;
}
.work-page__text.work-page__text_display.contacts .footer__mail {
    width: max-content;
}

.contact-block {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

@media (max-width: 991px) {
    .contact-block {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }
}

.pc-menu-item {
    position: relative;
}

.pc-menu-arrow {
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s;
}

.pc-menu-item:hover .pc-menu-arrow {
    transform: rotate(180deg);
}

.pc-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(255 220 163 / 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 10px;
    list-style: none;
    border-radius: 5px;
}
.pc-submenu li a {
    font-size: 16px;
    font-weight: 400;
    margin-top:5px;
}

.pc-menu-item:hover > .pc-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pc-submenu__item {
    position: relative;
}

.pc-submenu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 16px;
}

.pc-submenu__link:hover {
    background: rgba(255, 240, 220, 0.5);
    color: #000;
    padding-left: 20px;
}

.pc-submenu__link.has-child::after {
    content: '+';
    margin-left: 10px;
    font-size: 16px;
}

.pc-submenu-level3 {
    position: absolute;
    top: 0;
    left: 100%;
    background: rgb(255 220 163 / 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px 0;
    list-style: none;
    border-radius: 0 5px 5px 5px;
    margin-left: 1px;
}

.pc-submenu .pc-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: rgb(255 220 163 / 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px 10px;
    list-style: none;
    border-radius: 5px;
    margin-left: 1px;
}

.pc-submenu .pc-submenu li a {
    font-size: 16px;
    font-weight: 400;
    margin-top:5px;
}

.pc-submenu__item:hover > .pc-submenu-level3 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.menu__link.has-child-mobile {
    position: relative;
    padding-right: 30px !important;
}

.menu__link.has-child-mobile::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.3s;
}

.menu__link.has-child-mobile.active::after {
    content: '−';
}

.mobile-submenu,
.mobile-submenu-lvl2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-submenu.active,
.mobile-submenu-lvl2.active {
    max-height: 2000px;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 1002;
    padding-top: 100px;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.menu__link.has-child-mobile {
    position: relative;
    padding-right: 30px;
}

.menu__link.has-child-mobile::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s;
}

.menu__link.has-child-mobile.active::after {
    content: '−';
}

.mobile-submenu,
.mobile-submenu-lvl2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
}

.mobile-submenu.active,
.mobile-submenu-lvl2.active {
    max-height: 2000px;
}

@media (min-width: 992px) {
    .menu__link.has-child-mobile::after {
        display: none;
    }
    
    .mobile-submenu,
    .mobile-submenu-lvl2 {
        display: none;
    }
}

@media (max-width: 1580px) {
    .new-menu {
        gap: 10px;
    }
    .new-menu .menu__link {
        font-size: 12px;
    }
}

.header__logo img {
    max-width: 100%;
    width: 100%;
}

@media (max-width: 1350px) {
    .header__button {
        font-size: 14px;
    }
    .header__call {
        width: auto;
        padding: 10px;
        font-size: 12px;
    }
    .header__logo img {
        max-width: 65%;
    }
}

.footer-menu {
    text-align: center;
}

.police-text {
    text-align: center;
}