:root {
  --fs-14: 14px;
  --fs-12: 12px;
}

.wrapper-container {
  max-width: 1440px;
  padding: 0 16px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* HEADER */
.header {
  padding: 24px 0;
  z-index: 5;
}
.header__top-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
.header__group {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .header__group {
    gap: 16px;
  }
}
.header__logo {
  min-width: 100px;
  max-width: 124px;
  height: 47px;
  width: 100%;
}
.header__bottom {
  background: white;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  position: relative;
}
.header__bottom > .container {
  position: static;
}
.header__contact-group {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .header__contact-group {
    gap: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .header__contact-group {
    display: none;
  }
}
.header__menu-type {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
.header__menu-type ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header__menu-type li {
  padding: 8px 12px;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .header__menu-type li {
    margin: 0;
  }
}
.header__menu-type li:hover, .header__menu-type li.active {
  opacity: 0.6;
}
.header__menu-type a {
  color: var(--b);
  font-size: var(--fs-14);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .header__menu-type a {
    font-size: var(--fs-16);
  }
}
.header__icons {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .header__icons {
    margin-right: 1%;
  }
}
.header__icon-item {
  margin: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header__icon-item {
    margin: 0;
  }
}
.header__icon-item a {
  display: flex;
  padding: 8px 12px;
  align-items: center;
  text-decoration: none;
}
.header__icon-item .header__icon-text {
  font-size: var(--fs-14);
  font-weight: 600;
  white-space: nowrap;
  color: var(--b);
  line-height: 100%;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .header__icon-item .header__icon-text {
    font-size: var(--fs-14);
  }
}
.header__icon-left-img, .header__icon-left-img {
  width: 16px;
  height: 16px;
}
.header__icon-left-img img, .header__icon-left-img img {
  width: 16px;
  height: 16px;
  min-width: 16px;
}
.header__icon-left-img {
  margin-right: 4px;
}
.header__icon-right-img {
  margin-left: 12px;
}
.header__phone {
  display: flex;
  flex-direction: column;
  margin-left: 0px;
}
.header__phone a {
  font-size: var(--fs-24);
  color: var(--b);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 4px;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .header__phone a {
    font-size: var(--fs-24);
  }
}
.header__phone p {
  margin: 0;
  color: rgba(28, 28, 27, 0.7);
  font-size: var(--fs-12);
  line-height: 120%;
  white-space: nowrap;
}
.header__main-button .button {
  min-width: 194px;
}
.header__main-button .button > * {
  font-size: var(--fs-16);
}
.header__menu {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__menu {
    display: none;
  }
}
.header__menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  width: 100%;
}
.header__menu a {
  text-decoration: none;
}
.header__menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  pointer-events: auto;
  z-index: 25;
}
.header__menu-links {
  width: 100%;
  text-transform: none;
}
.header__menu-links li {
  padding: 8px 12px;
  margin: 0;
}
.header__menu-links li.active a {
  color: var(--y);
}
.header__menu-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  color: var(--b);
  height: auto;
}
.header__menu-links a > * {
  font-size: var(--fs-14);
}
.header__menu-links a::after {
  content: none;
}
.header__menu-sublinks {
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  z-index: 30;
}
.header__menu-sublinks > ul {
  background: var(--light-grey2);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 32px;
}
.header__menu-sublinks a {
  color: var(--b);
  letter-spacing: 0;
  font-size: var(--fs-14);
  display: inline-block;
  max-width: 496px;
  line-height: 1.2;
  transition: all ease 0.2s;
}
.header__menu-sublinks a:hover {
  opacity: 0.8;
}
.header__menu-sublinks .group a {
  letter-spacing: 0;
  font-weight: 700;
  font-size: var(--fs-14);
  line-height: 120%;
}
.header__menu-sublinks > ul > li {
  display: none;
  width: 100%;
}
.header__menu-sublinks > ul > li.active {
  display: block;
}
.header__menu-sublink {
  padding: 16px;
  display: flex;
}
.header__menu-sublink-container {
  display: flex;
}
.header__menu-sublink-links {
  display: flex;
  flex-grow: 1;
}
.header__menu-sublink-row {
  flex: 1;
}
.header__menu-sublink-row ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header__menu-sublink-row li {
  margin-bottom: 0px;
  padding: 8px 12px;
}
.header__menu-sublink-commercial {
  background: #fff;
  border-radius: 12px;
  width: 496px;
}
.header__menu-sublink-commercial-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.header__menu-sublink-commercial-img img {
  max-width: 496px;
  width: 100%;
  max-height: 234px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__menu-sublink-commercial-imgtext {
  position: relative;
  left: 0;
  bottom: 0;
  padding: 0px 24px;
  color: var(--b);
  width: 100%;
  background-color: transparent;
}
.header__menu-sublink-commercial-imgtext b,
.header__menu-sublink-commercial-imgtext strong {
  font-size: var(--fs-18);
}
.header__menu-sublink-commercial-imgtext p {
  margin: 0.5em 0;
}
.header__menu-sublink-commercial-text {
  font-size: var(--fs-18);
  font-weight: bold;
}
.header__menu-sublink-commercial-button {
  padding: 24px 24px;
}
.header__menu-sublink-commercial-button .button {
  display: inline-flex;
  width: 100%;
  border-radius: 12px;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
}
.header__menu-sublink-commercial-button .button > span {
  font-size: var(--fs-14);
}
.header__mobile-button {
  width: 24px;
  height: 24px;
  background: #ffffff;
  box-shadow: none;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  flex-direction: column;
  cursor: pointer;
  border: none;
  padding: 0;
  padding-top: 0px;
  display: none;
}
.header__mobile-button span {
  height: 2px;
  width: 26px;
  background: #000;
  margin-bottom: 6px;
  position: relative;
  border-radius: 50px;
  transition: all ease 0.2s;
}
.header__mobile-button.active span:nth-of-type(2) {
  opacity: 0;
}
.header__mobile-button.active span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 8px;
}
.header__mobile-button.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: -8px;
}
@media screen and (max-width: 1024px) {
  .header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: none;
    background: #fff;
    z-index: 50;
    padding: 16px 0;
  }
  .header__menu-sublink-commercial {
    width: 100%;
    max-width: 340px;
  }
  .header__menu-sublink-commercial-img img {
    max-width: 340px;
    width: 100%;
  }
  .header__mobile-button {
    display: flex;
  }
  .header__logo {
    width: 85px;
    height: 32px;
    min-width: auto;
  }
  .header__top {
    background: white;
  }
  .header__bottom, .header__menu-type, .header__icons {
    display: none;
  }
  .header__phone {
    margin-left: 0;
  }
  .header__phone a {
    margin-bottom: 4px;
    margin-top: 0 !important;
    text-decoration: none;
    font-size: var(--fs-18);
  }
  .header__phone p {
    display: block;
    font-size: var(--fs-12);
  }
}
@media screen and (max-width: 370px) {
  .header__mobile-button {
    margin-left: 15px;
  }
  .header__phone a {
    font-size: var(--fs-14);
  }
}

.m-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 55;
  background: #fff;
}
.m-mobile .header__icons {
  display: flex;
  margin: 0;
}
.m-mobile .header__icon-item {
  margin: 0;
}
.m-mobile__top {
  padding: 0 0 24px;
  background-color: #fff;
  margin-top: 0px;
  padding-top: 0px;
}
.m-mobile__top .container {
  display: flex;
  z-index: 12;
  justify-content: space-between;
}
.m-mobile__type {
  cursor: pointer;
}
.m-mobile__type a,
.m-mobile__type span {
  color: var(--b);
  text-decoration: none;
  padding: 16px 0;
  display: inline-block;
  font-size: var(--fs-16);
  font-weight: 700;
}
.m-mobile__type-active {
  background: url(../images/icon/mini-arrow.svg) center right no-repeat;
}
.m-mobile__type-list {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
  display: block;
}
.m-mobile__middle {
  background: white;
  position: relative;
  z-index: 2;
}
.m-mobile__links a {
  text-decoration: none;
  color: var(--b);
  text-decoration: none;
  padding: 16px 0;
  display: inline-block;
  font-size: var(--fs-16);
  font-weight: 700;
}
.m-mobile__links .sub-menu a {
  text-decoration: none;
  color: var(--b);
  text-decoration: none;
  display: inline-block;
  font-size: var(--fs-16);
  font-weight: 400;
}
.m-mobile__links ul {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
}
.m-mobile__links ul > li:last-of-type {
  display: none;
}
@supports selector(:has(*)) {
  .m-mobile__links ul li:has(.m-mobile__sublinks) .m-mobile__main-link-arrow,
  .m-mobile__links ul li:has(.js-m-mobile__sublinks) .m-mobile__main-link-arrow {
    display: flex;
  }
}
.m-mobile__sublinks {
  display: none;
}
.m-mobile__main-link {
  display: flex;
}
.m-mobile__main-link img {
  margin-right: 7px;
}
.m-mobile__main-link a {
  text-transform: none;
  padding-right: 20px;
}
.m-mobile__main-link-arrow {
  display: none;
  flex-grow: 1;
  position: relative;
}
.m-mobile__main-link-arrow:after {
  content: "";
  position: absolute;
  height: 24px;
  width: 24px;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center center;
  background: url(../images/icon/arrow-down.svg) center center no-repeat;
  background-size: 24px 24px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform ease 0.3s;
}
.m-mobile__main-link.active .m-mobile__main-link-arrow:after {
  transform: translateY(-50%) rotate(180deg);
}
.m-mobile__bottom {
  background: white;
  padding-top: 24px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
}

.select-region {
  position: absolute;
  top: -10px;
  left: -70px;
  z-index: 100;
}
.select-region p {
  margin: 0;
  line-height: 16px;
  font-size: var(--fs-14);
}
.select-region b {
  line-height: 16px;
  font-size: var(--fs-14);
  display: inline-block;
  text-decoration: underline;
  cursor: pointer;
}
.select-region--mobile .select-region__wrapper {
  left: auto;
  right: 10px;
  transform: none;
}
.select-region--mobile .select-region__second {
  width: 250px;
}
.select-region--mobile .select-region__second ul {
  -moz-column-count: 2;
       column-count: 2;
}
.select-region__wrapper {
  display: none;
  position: absolute;
  top: 40px;
  transform: translateX(-20%);
  background: var(--w);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 16px;
  border-radius: 12px;
}
@media screen and (max-width: 1024px) {
  .select-region__wrapper {
    right: 0;
  }
}
@media (max-width: 666px) {
  .select-region__wrapper {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 380px) {
  .select-region__wrapper {
    right: -20px;
  }
}
.select-region__wrapper.active {
  display: block;
}
.select-region_square_arrow {
  top: -8px;
  right: 20px;
  background: var(--w);
  width: 16px;
  height: 16px;
  position: absolute;
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .select-region_square_arrow {
    top: 35px;
    right: -8px;
  }
}
.select-region__first {
  width: 225px;
}
.select-region__second {
  width: 500px;
}
@media screen and (max-width: 666px) {
  .select-region__second {
    width: 360px;
  }
}
@media screen and (max-width: 1024px) {
  .select-region__second {
    top: 52px;
    right: 0;
    transform: translateX(0%);
  }
}
@media screen and (max-width: 500px) {
  .select-region__second {
    padding: 15px 10px 20px 10px;
  }
}
@media screen and (max-width: 400px) {
  .select-region__second {
    width: 296px;
  }
  .select-region__second li {
    white-space: initial;
    margin-bottom: 12px;
  }
  .select-region__second li a {
    font-size: 9px;
    line-height: 10px;
  }
}
.select-region__second p {
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #1c1c1b;
  margin-bottom: 20px;
}
@media screen and (max-width: 666px) {
  .select-region__second p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 15px;
  }
}
.select-region__second ul {
  list-style-type: none;
  padding-left: 0;
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 26px;
       column-gap: 26px;
}
.select-region__second li {
  margin-bottom: 20px;
  white-space: nowrap;
}
.select-region__second li a {
  transition: 0.3s;
  font-size: 14px;
  line-height: 15px;
}
@media screen and (max-width: 666px) {
  .select-region__second li a {
    font-size: 11px;
    line-height: 12px;
  }
}
.select-region__second li a:hover {
  color: var(--y);
}
.select-region__second-close-button {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.select-region__second-close-button:after, .select-region__second-close-button:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #878787;
  transform: rotate(45deg);
  top: 10px;
  left: 0px;
}
.select-region__second-close-button:before {
  transform: rotate(-45deg);
  left: 0px;
}
.select-region_row_text {
  margin: 0 0 15px 0;
}
.select-region__buttons {
  display: flex;
  justify-content: space-between;
}
.select-region__buttons .select-region_button {
  cursor: pointer;
  color: var(--y);
  font-weight: bold;
  font-size: var(--fs-14);
  line-height: 16px;
  transition: 0.3s;
}
.select-region__buttons .select-region_button:hover {
  color: var(--b2);
}
@media screen and (max-width: 1024px) {
  .select-region {
    top: -74px;
    left: auto;
    right: 0;
  }
}

img {
  vertical-align: bottom;
  border: 0;
  max-width: 100%;
}

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

html.non-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

body.non-scroll {
  overflow: hidden;
}

/* HEADER FINISH */
/* COUNTER SECTION */
.flex-group {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .flex-group {
    flex-direction: column;
  }
}

.coutner-work {
  padding: 40px 0 120px;
}
@media screen and (max-width: 768px) {
  .coutner-work {
    padding: 66px 0 80px;
  }
}
.coutner-work-row {
  display: flex;
  gap: 8px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .coutner-work-row {
    width: 100%;
  }
}
@media screen and (max-width: 426px) {
  .coutner-work-row {
    flex-direction: row !important;
  }
}
.coutner-work__item {
  border-radius: 24px;
  background: var(--light-grey2);
  height: 198px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
@media screen and (max-width: 1024px) {
  .coutner-work__item {
    padding: 24px;
  }
}
@media screen and (max-width: 426px) {
  .coutner-work__item {
    margin: 0 !important;
  }
}
.coutner-work__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 90%;
  letter-spacing: -0.05em;
  color: var(--b);
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .coutner-work__title {
    font-size: var(--fs-24);
    line-height: 1;
  }
}
.coutner-work__text {
  max-width: 100%;
  line-height: 1.4;
  font-size: var(--fs-16);
  letter-spacing: -0.03em;
  color: var(--b);
}
@media screen and (max-width: 768px) {
  .coutner-work__text {
    font-size: var(--fs-14);
    line-height: 1.2;
  }
}

/* social widget*/
.social-widget {
  background: var(--b);
  border-radius: 32px;
  padding: 24px;
}
.social-widget-title {
  color: white;
}
.social-widget-title h2 {
  font-weight: 700;
  font-size: var(--fs-24);
  line-height: 100%;
  margin: 0;
}
.social-widget-title p {
  margin: 0;
  font-size: var(--fs-12);
  line-height: 1.2;
}
.social-widget ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}/*# sourceMappingURL=style-2.0.css.map */