@charset "UTF-8";
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-moz-selection {
  color: #fff;
  background: #000;
}

::selection {
  color: #fff;
  background: #000;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
@media (pointer: coarse) {
  ::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

::-webkit-scrollbar-track {
  background-color: #eee;
}

::-webkit-scrollbar-thumb {
  background-color: #000;
}

@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: #000 #eee;
  }
}
::-webkit-input-placeholder {
  color: #d9d9d9;
  opacity: 1;
}
::-webkit-input-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::-moz-placeholder,
::placeholder {
  color: #d9d9d9;
  opacity: 1;
}

:focus::-webkit-input-placeholder {
  color: transparent !important;
}

:focus::-webkit-input-placeholder,
:focus:-ms-input-placeholder,
:focus::-ms-input-placeholder,
:focus::-moz-placeholder,
:focus::placeholder {
  color: transparent !important;
}

a,
input,
textarea,
select,
button {
  font-family: inherit;
  color: inherit;
}

textarea {
  resize: none;
}

a {
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

a,
input[type=button],
input[type=submit],
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

[disabled] {
  cursor: not-allowed;
}

picture,
video,
img,
svg {
  display: block;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.br {
  display: block;
}

.rotate180 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  font-optical-sizing: auto;
  font-family: "Inter", sans-serif;
  min-width: 320px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
}
.app > div {
  position: relative;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 50px;
}
@media (min-width: 768px) {
  .app > div {
    padding-top: 100px;
  }
}
.app > div + div {
  padding: 0;
  background: #fff;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1008px;
  }
}

.page-404 {
  padding: 45px 0;
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
}
.page-404__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 400;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  text-transform: uppercase;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .page-404__title {
    font-size: 42px;
  }
}
.page-404 p {
  margin: 0;
}
.page-404 p a {
  text-decoration: underline;
  color: #666;
}
.page-404 p a:hover {
  color: #000;
}
.page-404 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: 4px;
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
.page-404 ul a {
  text-decoration: underline;
  color: #666;
}
.page-404 ul a:hover {
  color: #000;
}

.error {
  -webkit-box-shadow: 0 0 3px red;
          box-shadow: 0 0 3px red;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: #000;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .container {
  max-width: none;
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .header__row {
    height: 100px;
  }
}
.header__logo {
  width: 24px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .header__logo {
    width: 48px;
  }
}
.header__logo svg {
  width: 100%;
  aspect-ratio: 24/31;
}
.header__burger {
  width: 26px;
  height: 50px;
  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;
  padding: 0;
  border: none;
  background: none;
}
@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__burger svg:first-child {
  display: block;
  width: 26px;
}
.header__burger svg:last-child {
  display: none;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  height: 22px;
}
.header__nav {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  background: #000;
  color: #fff;
  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;
  overflow-y: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .header__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 50px;
    width: auto;
    height: auto;
    opacity: 1;
    position: static;
  }
}
.header__nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  padding: 20px;
  font-weight: 700;
  border-bottom: 1px solid #363636;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 768px) {
  .header__nav a {
    height: 50px;
    padding: 0;
    border: none;
  }
}
.header__nav a:hover, .header__nav a.active {
  color: #666;
}

.burger-actived {
  overflow: hidden;
}
@media (min-width: 768px) {
  .burger-actived {
    overflow: visible;
  }
}
.burger-actived .header__burger svg:first-child {
  display: none;
}
.burger-actived .header__burger svg:last-child {
  display: block;
}
.burger-actived .header__nav {
  opacity: 1;
  height: calc(100% - 50px);
  border-top: 1px solid #363636;
}
@media (min-width: 768px) {
  .burger-actived .header__nav {
    height: auto;
    border: none;
  }
}

.hero {
  z-index: 1;
  position: relative;
  overflow: hidden;
  background: #343738;
  color: #fff;
}
@media (min-width: 768px) {
  .hero {
    height: calc(100vh - 100px);
  }
}
@media (min-width: 768px) {
  .hero .swiper {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hero .swiper-wrapper {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hero__item {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 40/25;
  padding: 40px;
}
@media (min-width: 768px) {
  .hero__item {
    height: calc(100vh - 100px);
  }
}
.hero__item:before {
  content: "";
  background: #000;
  opacity: 0.25;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__item:after {
  content: "";
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowQ0Q1QjNBNUUxMTZFMjExOEQ4NUVFNTk1QzY3MjkzQyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4QUQ1NzU1QkZCNzQxMUUyOEY3RDhGNkRDQzQ4OEU3MiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo4QUQ1NzU1QUZCNzQxMUUyOEY3RDhGNkRDQzQ4OEU3MiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgV2luZG93cyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkE3MjJCM0M1REJGOUUyMTFCQjFBODA4QkJENThDMDJDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjBDRDVCM0E1RTExNkUyMTE4RDg1RUU1OTVDNjcyOTNDIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+h2pUmgAAABdJREFUeNpiZmBgaADiz8wgAoh9AQIMABXtArqsgit8AAAAAElFTkSuQmCC);
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__item > picture,
.hero__item > img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__item > .container {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  max-width: 1400px;
  padding: 0;
}
@media (min-width: 768px) {
  .hero__item > .container {
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 160px;
  }
}
.hero__item-title {
  margin: 0;
  font-size: 32px;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 576px) {
  .hero__item-title {
    font-size: 42px;
  }
}
@media (min-width: 768px) {
  .hero__item-title {
    font-size: 50px;
    line-height: 60px;
  }
}
.hero__item-text {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  margin-top: 6px;
}
@media (min-width: 576px) {
  .hero__item-text {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .hero__item-text {
    font-size: 26px;
    line-height: 32px;
  }
}
.hero__item-spheres {
  display: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  position: relative;
  padding-top: 10px;
  margin-top: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
}
@media (min-width: 768px) {
  .hero__item-spheres {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero__item-spheres:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  height: 1px;
  background: #fff;
}
.hero__item-spheres li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  position: relative;
}
.hero__item-spheres li:before {
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
}
.hero__item-spheres li:first-child:before {
  display: none;
}
.hero__item-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 0 12px;
  height: 34px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-weight: 700;
  min-width: 150px;
  margin-top: 24px;
}
@media (min-width: 576px) {
  .hero__item-button {
    height: 40px;
    font-size: 16px;
    min-width: 190px;
  }
}
@media (min-width: 768px) {
  .hero__item-button {
    width: 230px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 60px;
    height: 40px;
  }
}
.hero__item-button:hover {
  background: #fff;
  color: #000;
}
.hero__item-button svg {
  width: auto;
  height: 12px;
  aspect-ratio: 13/10;
}
.hero__prev, .hero__next {
  display: none;
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  background: #000;
  border: none;
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (min-width: 768px) {
  .hero__prev, .hero__next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero__prev:hover, .hero__next:hover {
  background: #fff;
  color: #000;
}
.hero__prev svg, .hero__next svg {
  width: 35%;
}
.hero__prev {
  left: 0;
}
.hero__next {
  right: 0;
}
.hero .swiper-pagination {
  position: absolute;
  z-index: 2;
  bottom: 64px;
  left: 0;
  width: 100%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
@media (min-width: 768px) {
  .hero .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    bottom: 128px;
  }
}
.hero .swiper-pagination-bullet {
  background: #fff;
  width: 8px;
  height: 8px;
  opacity: 1;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 !important;
}
@media (min-width: 768px) {
  .hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}
.hero .swiper-pagination-bullet:hover {
  background: #666;
}
.hero .swiper-pagination-bullet-active {
  background: #000;
}
.hero .swiper-pagination-bullet-active:hover {
  background: #000;
}
.hero__mouse {
  display: none;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 2;
  width: 43px;
  height: 66px;
  background: url(../images/mouse.png) no-repeat 50% 50%;
}
@media (min-width: 768px) {
  .hero__mouse {
    display: block;
  }
}
.hero__mouse:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/scroll_anim.gif) no-repeat 50% 50%;
}

.service {
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 2;
}
.service > .container {
  padding: 0;
  max-width: 1400px;
}
.service__items {
  display: grid;
}
@media (min-width: 768px) {
  .service__items {
    grid-template-columns: 1fr 1fr;
  }
}
.service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  position: relative;
  padding: 30px 20px;
}
@media (min-width: 992px) {
  .service__item {
    padding: 55px 20px;
    padding-left: 64px;
    min-height: 300px;
  }
}
.service__item:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  width: 101vw;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .service__item:before {
    left: auto;
    right: 0;
    width: 50vw;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.service__item:nth-child(even) {
  border-left: 1px solid #d9d9d9;
}
@media (min-width: 768px) {
  .service__item:nth-child(even):before {
    right: auto;
    left: 0;
  }
}
.service__item:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 1px;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  background: #d9d9d9;
}
.service__item:hover {
  color: #fff;
}
.service__item:hover:before {
  opacity: 1;
}
.service__item i {
  font-style: normal;
  text-transform: uppercase;
  font-size: 32px;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  position: relative;
  z-index: 3;
}
@media (min-width: 992px) {
  .service__item i {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .service__item:nth-child(odd) i {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .service__item:nth-child(odd) i {
    text-align: left;
  }
}
.service__item p {
  margin: 0;
  font-size: 14px;
  position: relative;
  z-index: 3;
  color: #666;
}
@media (min-width: 992px) {
  .service__item p {
    font-size: 16px;
    padding: 0 70px;
  }
}

.service-list {
  overflow: hidden;
}
.service-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  font-weight: 300;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  padding: 35px 0;
}
@media (min-width: 768px) {
  .service-list__item {
    padding: 50px 0;
    font-size: 20px;
    text-align: center;
  }
}
.service-list__item:after {
  content: "";
  position: absolute;
  width: calc(100vw - 12px);
  height: 1px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  background: #d9d9d9;
}
.service-list__title {
  line-height: 1.2;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: 32px;
  margin: 0;
  text-transform: uppercase;
  padding-bottom: 6px;
}
@media (min-width: 768px) {
  .service-list__title {
    font-size: 40px;
  }
}
.service-list__text {
  margin: 0;
}
.service-list__ul {
  display: grid;
  margin: 0;
  font-size: 14px;
  gap: 6px 12px;
}
@media (min-width: 768px) {
  .service-list__ul {
    font-size: 16px;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    border-top: 1px solid #d9d9d9;
    padding-top: 32px;
    margin-top: 14px;
  }
}
.service-list__ul-li:before {
  content: "—";
  display: inline;
  margin-right: 10px;
}
.service-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service-list__link a {
  color: #666;
  border-bottom: 1px solid;
}
.service-list__link a:hover {
  border-color: transparent;
}

.intranet {
  padding: 35px 0;
  font-weight: 300;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .intranet {
    padding: 50px 0;
  }
}
.intranet__toper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
@media (min-width: 768px) {
  .intranet__toper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.intranet__toper > img {
  width: 100%;
  max-width: 300px;
}
.intranet__toper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.intranet__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  margin-top: 60px;
}
.intranet__title {
  line-height: 1.2;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: 32px;
  margin: 0;
  text-transform: uppercase;
  padding-bottom: 6px;
}
@media (min-width: 768px) {
  .intranet__title {
    font-size: 40px;
  }
}
.intranet__text {
  margin: 0;
}
.intranet__list {
  display: grid;
  margin: 0;
  font-size: 14px;
  gap: 6px 12px;
}
@media (min-width: 768px) {
  .intranet__list {
    font-size: 16px;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    border-top: 1px solid #d9d9d9;
    padding-top: 32px;
    margin-top: 14px;
  }
}
.intranet__list-item:before {
  content: "—";
  display: inline;
  margin-right: 10px;
}
.intranet__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intranet__link a {
  color: #666;
  border-bottom: 1px solid;
}
.intranet__link a:hover {
  border-color: transparent;
}

.clients {
  background: #fff;
  position: relative;
  z-index: 2;
}
.clients__title {
  margin: 0;
  font-size: 40px;
  padding: 60px 0;
  font-weight: 400;
  line-height: 1;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  display: none;
}
@media (min-width: 768px) {
  .clients__title {
    display: block;
  }
}
.clients__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 500px) {
  .clients__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .clients__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .clients__items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.clients__items.squared {
  gap: 0;
}
.clients__item {
  width: 100%;
  aspect-ratio: 2/1;
  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;
}
.clients__item img {
  max-width: 60%;
  max-height: 50%;
}
@media (min-width: 992px) {
  .clients__item img {
    max-width: 80%;
    max-height: 70%;
  }
}
.clients__items.squared .clients__item {
  aspect-ratio: 1/1;
}
.clients__items.squared .clients__item img {
  max-width: none;
  max-height: none;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.reviews__items {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .reviews__items {
    gap: 40px;
  }
}
.reviews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
  position: relative;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .reviews__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 40px 0;
  }
}
.reviews__item:before {
  content: "";
  position: absolute;
  width: calc(100vw - 12px);
  height: 1px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  background: #d9d9d9;
}
.reviews__item:first-child:before {
  display: none;
}
.reviews__item-left {
  width: 230px;
  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;
}
.reviews__item-left img {
  max-width: 230px;
}
@media (min-width: 768px) {
  .reviews__item-left img {
    position: sticky;
    top: 120px;
  }
}
.reviews__item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: #666;
}
@media (min-width: 768px) {
  .reviews__item-right {
    width: calc(100% - 230px);
    padding-left: 40px;
  }
}
.reviews__item-right p {
  width: 100%;
  margin: 0;
}
.reviews__item-right p a {
  text-decoration: underline;
}
.reviews__item-right p a:hover {
  color: #000;
}
.reviews__item-pdf {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews__item-pdf > span {
  width: 32px;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid;
  color: #d9d9d9;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  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;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 3px;
}
.reviews__item-pdf:hover > span {
  color: #f00;
}
.reviews__item-pdf > i {
  max-width: calc(100% - 32px);
  padding-left: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.reviews__item-pdf:hover > i {
  color: #000;
}

.blog__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.blog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #d9d9d9;
  padding: 35px 0;
}
@media (min-width: 768px) {
  .blog__item {
    padding: 50px 0;
  }
}
.blog__item .wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .blog__item .wrapper {
    grid-template-columns: 1fr 3fr;
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1008px;
  }
}
.blog__item time {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-weight: 300;
}
.blog__item h3 {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #4c4c4c;
}
.blog__item h3 a {
  color: #919191;
  text-decoration: underline;
}
.blog__item h3 a:hover {
  text-decoration: none;
}
.blog .back_to_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  height: 50px;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  border-top: 1px solid #d9d9d9;
}
.blog .back_to_list:hover {
  color: #fff;
  background: #000;
}
.blog .back_to_list .arrow {
  border: 1px solid;
  border-right: none;
  border-bottom: none;
  width: 8px;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 4px;
}

.company-slogan {
  padding: 35px 0;
}
@media (min-width: 768px) {
  .company-slogan {
    padding: 50px 0;
  }
}
.company-slogan p {
  margin: 0;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .company-slogan p {
    font-size: 22px;
  }
}
.company-slogan p a {
  color: #666;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.company-slogan p a:hover {
  text-decoration: none;
}

.company-why {
  background: #000;
  color: #fff;
  padding: 45px 0;
  font-size: 14px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .company-why {
    padding: 50px 0;
    font-size: 16px;
  }
}
.company-why .container {
  padding-left: 24px;
  padding-right: 24px;
}
.company-why__title {
  margin: 0;
  margin-bottom: 4px;
}
.company-why__body {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
@media (min-width: 768px) {
  .company-why__body {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.company-why__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.company-why__list-item {
  position: relative;
  padding-left: 26px;
}
.company-why__list-item:before {
  content: "—";
  position: absolute;
  top: 0;
  left: 0;
}

.company-stats {
  padding: 35px 0;
}
@media (min-width: 768px) {
  .company-stats {
    padding: 50px 0;
  }
}
.company-stats__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
@media (min-width: 768px) {
  .company-stats__body {
    gap: 50px;
  }
}
.company-stats__body + .company-stats__body {
  margin-top: 35px;
}
@media (min-width: 768px) {
  .company-stats__body + .company-stats__body {
    margin-top: 50px;
  }
}
.company-stats__title {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
}
.company-stats__items {
  display: grid;
  gap: 32px 16px;
}
@media (min-width: 400px) {
  .company-stats__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 600px) {
  .company-stats__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .company-stats__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.company-stats__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #666;
}
.company-stats__item img {
  width: 100%;
  height: 90px;
  aspect-ratio: 24/9;
  -o-object-fit: contain;
     object-fit: contain;
}
.company-stats__item i {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-style: normal;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.company-stats__item b {
  font-size: 100px;
  line-height: 1;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  color: #b2b2b2;
  font-weight: 700;
  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;
  text-align: center;
  width: 100%;
}
.company-stats__item b:after {
  content: "";
  width: 20px;
  height: 1px;
  background: #000;
  margin-top: 20px;
  margin-bottom: 10px;
}
.company-stats a.company-stats__item:hover {
  color: #000;
}

.company-projects {
  padding: 70px 0;
  background: #000;
  color: #fff;
}
.company-projects__title {
  font-size: 30px;
  text-transform: uppercase;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .company-projects__title {
    font-size: 40px;
  }
}

.company-team {
  padding: 35px 0;
}
@media (min-width: 768px) {
  .company-team {
    padding: 50px 0;
  }
}
.company-team__title {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
.company-team__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .company-team__subtitle {
    margin-bottom: 50px;
  }
}
.company-team__subtitle span {
  color: #fff;
  background: #000;
  padding: 5px 10px;
  font-size: 12px;
}
.company-team__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 0;
}
@media (min-width: 600px) {
  .company-team__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .company-team__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.company-team__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.company-team__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.company-team__item b {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
}
.company-team__item i {
  font-size: 12px;
  line-height: 1.2;
  color: #808080;
  text-align: center;
  font-style: normal;
}

.contacts {
  background: #fff;
  padding: 50px 0;
}
.contacts__body {
  display: grid;
}
@media (min-width: 768px) {
  .contacts__body {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .contacts__body {
    gap: 64px;
  }
}
.contacts__body-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contacts__body-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  position: fixed;
  z-index: 1;
  top: 50px;
  right: -100%;
  width: 100%;
  height: calc(100% - 50px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 50px 16px;
  overflow: hidden;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .contacts__body-right {
    position: static;
    overflow: visible;
    height: auto;
    padding: 0;
  }
}
.contacts__toggle-form {
  width: 50px;
  height: auto;
  aspect-ratio: 1;
  background: #000;
  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: none;
  padding: 0;
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  .contacts__toggle-form {
    display: none;
  }
}
.contacts__toggle-form img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.contacts__toggle-form img + img {
  display: none;
}
.contacts__label {
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}
.contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.contacts__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contacts__info-item .contacts__label {
  width: 100px;
  padding-right: 12px;
}
.contacts__info-item > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 100px);
  font-size: 15px;
  line-height: 1.4;
}
.contacts__info-item a {
  color: #666;
}
.contacts__info-item a:hover {
  color: #000;
}
.contacts__info-item button {
  padding: 0;
  border: none;
  background: none;
  color: #666;
  text-align: left;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
}
.contacts__info-item button:hover {
  color: #000;
}
.contacts__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .contacts__socials {
    margin-top: 32px;
  }
}
.contacts__socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contacts__socials a:hover {
  opacity: 0.75;
}
.contacts__socials svg {
  width: auto;
  height: 17px;
}
.contacts__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.contacts__form-item {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #908e93;
}
@media (min-width: 768px) {
  .contacts__form-item {
    grid-template-columns: 1fr 2fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 36px;
  }
}
.contacts__form-item > input,
.contacts__form-item > textarea {
  background: #fff;
  padding: 0;
  color: #000;
  border: 1px solid #d9d9d9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 12px;
}
.contacts__form-item > input:focus,
.contacts__form-item > textarea:focus {
  border-color: #000;
}
.contacts__form-item > input {
  padding: 0 8px;
  height: 36px;
  line-height: 1;
}
.contacts__form-item > textarea {
  padding: 8px;
  height: 108px;
  line-height: 1.4;
}
.contacts__form-bottom {
  display: grid;
  margin-top: 8px;
}
@media (min-width: 992px) {
  .contacts__form-bottom {
    grid-template-columns: 1fr 2fr;
  }
}
.contacts__form-bottom:before {
  content: "";
  display: none;
}
@media (min-width: 992px) {
  .contacts__form-bottom:before {
    display: block;
  }
}
.contacts__form-bottom > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  font-size: 14px;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .contacts__form-bottom > div {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contacts__form-bottom p {
  margin: 0;
}
.contacts__form-bottom p a {
  color: #666;
  text-decoration: underline;
}
.contacts__form-bottom p a:hover {
  color: #000;
}
.contacts__form-bottom button {
  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;
  height: 50px;
  border: 1px solid #d9d9d9;
  padding: 0 16px;
  background: none;
  font-size: 14px;
  line-height: 1;
}
.contacts__form-bottom button:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}
.contacts__form-bottom button span + span {
  display: none;
}
.contacts__form.sended .contacts__form-bottom button {
  color: #fff;
  background: #000;
  border-color: #000;
}
.contacts__form.sended .contacts__form-bottom button span {
  display: none;
}
.contacts__form.sended .contacts__form-bottom button span + span {
  display: block;
}
.contacts__choose-map {
  display: none;
  margin-top: 50px;
  margin-bottom: -88px;
}
@media (min-width: 768px) {
  .contacts__choose-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.contacts__choose-map button {
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  padding: 0;
  background: #fff;
  color: #000;
  border: none;
  padding: 0 16px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}
.contacts__choose-map button.active {
  color: #fff;
  background: #000;
}

.contacts-form-actived .contacts__toggle-form img {
  display: none;
}
.contacts-form-actived .contacts__toggle-form img + img {
  display: block;
}
.contacts-form-actived .contacts__toggle-form + .contacts__body-right {
  right: 0;
}
.contacts-form-actived .app > div + div {
  display: none;
}

.contacts-close-maps {
  width: 50px;
  height: auto;
  aspect-ratio: 1;
  background: #000;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 0;
  position: fixed;
  z-index: 4;
  top: 50px;
  right: 0;
}
.contacts-close-maps img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.map-msc-actived .contacts-close-maps,
.map-kgd-actived .contacts-close-maps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .map-msc-actived .contacts-close-maps,
  .map-kgd-actived .contacts-close-maps {
    display: none;
  }
}

.map {
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 50px;
  left: -100%;
  overflow: hidden;
  background: #faf7f0;
  z-index: 3;
}
@media (min-width: 768px) {
  .map {
    display: none;
    height: calc(100% - 100px);
    z-index: 1;
    top: 100px;
    left: 0;
  }
}
.map-marker {
  width: 100px;
  height: 110px;
  background: url(../images/map.svg) no-repeat 50%/contain;
  position: relative;
  top: -110px;
  left: -50px;
}

@media (min-width: 768px) {
  .map ~ div {
    margin-bottom: 100vh;
  }
}

@media (min-width: 768px) {
  .map ~ div + div {
    margin-bottom: 0;
  }
}

.map-msc-actived #map-msc,
.map-kgd-actived #map-kgd {
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.map-msc #map-msc,
.map-kgd #map-kgd {
  display: block;
}

.portfolio {
  display: grid;
}
@media (min-width: 576px) {
  .portfolio {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .portfolio {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .portfolio {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.portfolio-item {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.portfolio-item__preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: #000 url(../images/loader.gif) no-repeat 50% 50%;
}
.portfolio-item__preview > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}
.portfolio-item__preview > img.loaded {
  opacity: 1;
}
.portfolio-item__preview > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  text-align: center;
  font-weight: 300;
  line-height: 1.2;
  opacity: 0;
  background: rgba(255, 255, 255, 0.75);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.portfolio-item__preview:hover > span {
  opacity: 1;
}
.portfolio-item__preview b {
  font-weight: 700;
  font-size: 18px;
}
.portfolio-item__preview i {
  font-style: normal;
  font-size: 14px;
}
.portfolio-item__body {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 0;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .portfolio-item__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.portfolio-item.active .portfolio-item__body {
  height: 100%;
}
.portfolio-item__controls {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  position: fixed;
  z-index: 3;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  top: -140px;
  left: 0;
}
@media (min-width: 768px) {
  .portfolio-item__controls {
    width: calc(100% - 340px);
    height: 0;
  }
}
@media (min-width: 1600px) {
  .portfolio-item__controls {
    width: 1292px;
  }
}
.portfolio-item__controls-item {
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  padding: 0;
  background: #000;
  border: none;
  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;
}
.portfolio-item__controls-item img {
  width: 50%;
  height: auto;
  aspect-ratio: 1;
}
.portfolio-item__controls-item i {
  width: 50%;
  height: auto;
  aspect-ratio: 1;
  opacity: 0.75;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: no-repeat 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.03 18'%3E %3Cdefs%3E %3Cstyle%3E .c %7B fill-rule: evenodd; %7D %3C/style%3E %3C/defs%3E %3Cpath class='c' fill='%23ffffff' d='M1269,226v10a2.185,2.185,0,0,0,1.94,2.026c0.66-.015,1.02.016,1.02,0.016s0.03,0.655.03,0.951h-7.98c0-.157-0.03-0.984-0.03-0.984s0.53,0.025,1.07.014A2.172,2.172,0,0,0,1267,236c0.02-1.9,0-5.252,0-7-0.08-1.757-2.16-1.835-3-1.988V226h5Zm-1.5-4.993a1.5,1.5,0,1,1-.01,3,1.451,1.451,0,0,1-1.5-1.5A1.475,1.475,0,0,1,1267.5,221.007Z' transform='translate(-1263.97 -221)'/%3E %3C/svg%3E ");
}
.portfolio-item__controls.active .portfolio-item__controls-item i {
  opacity: 1;
}
@media (min-width: 768px) {
  .portfolio-item__controls-item + .portfolio-item__controls-item {
    display: none;
  }
}
.portfolio-item.active .portfolio-item__controls {
  top: 60px;
}
.portfolio-item__pics {
  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;
  overflow-y: auto;
  position: relative;
  height: calc(100% - 50px);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1;
  background: #000 url(../images/loader.gif) no-repeat 50% 50%;
}
@media (min-width: 768px) {
  .portfolio-item__pics {
    width: calc(100% - 340px);
  }
}
@media (min-width: 1600px) {
  .portfolio-item__pics {
    width: 1292px;
  }
}
.portfolio-item__pics img {
  width: 100%;
}
.portfolio-item__info {
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  z-index: 2;
  top: 0;
  right: -100%;
  width: 100%;
  height: calc(100% - 50px);
  background: #fff;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  padding: 40px;
  overflow: hidden;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .portfolio-item__info {
    width: 340px;
    position: static;
  }
}
@media (min-width: 1600px) {
  .portfolio-item__info {
    width: calc(100% - 1292px);
    max-width: 432px;
  }
}
.portfolio-item.active .portfolio-item__controls.active ~ .portfolio-item__info {
  right: 0;
}
.portfolio-item__close {
  padding: 0;
  background: #000;
  color: #fff;
  width: 100%;
  border: none;
  height: 50px;
  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;
  gap: 12px;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  z-index: 3;
  position: fixed;
  left: 0;
  bottom: -100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.portfolio-item__close:hover {
  background: #fff;
  color: #000;
}
.portfolio-item__close i {
  width: 12px;
  height: auto;
  aspect-ratio: 1;
  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;
}
.portfolio-item__close svg {
  width: auto;
  height: 12px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  aspect-ratio: 9/16;
}
.portfolio-item.active .portfolio-item__body .portfolio-item__close {
  bottom: 0;
}
.portfolio-item__title {
  margin: 0;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.portfolio-item__subtitle {
  margin: 0;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  color: #808080;
  font-weight: 300;
  margin-bottom: 24px;
}
.portfolio-item__text {
  margin: 0;
  margin-bottom: 16px;
}
.portfolio-item__text a {
  color: #808080;
  text-decoration: underline;
}
.portfolio-item__text a:hover {
  color: #000;
}
.portfolio-item__tags {
  color: #808080;
  padding-bottom: 24px;
  border-bottom: 2px solid #000;
}
.portfolio-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
}
.portfolio-item__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  color: #808080;
  word-break: break-all;
  position: relative;
  padding-left: 20px;
  min-height: 14px;
}
.portfolio-item__link a:hover {
  color: #000;
}
.portfolio-item__link a:before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  left: 0;
  background: no-repeat 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 612 612' style='enable-background:new 0 0 612 612;'%3E%3Cpath d='M577.995,96.631l-62.626-62.626c-45.34-45.34-119.11-45.34-164.452,0l-118.98,118.984 c-14.921,14.921-14.921,39.112,0.002,54.031c14.921,14.923,39.112,14.919,54.033,0L404.949,88.038 c15.544-15.55,40.842-15.548,56.386-0.002l62.626,62.626c15.546,15.548,15.546,40.842,0.002,56.388L404.983,326.03 c-14.921,14.919-14.921,39.11-0.002,54.033c7.462,7.458,17.237,11.189,27.017,11.187c9.776,0,19.555-3.731,27.015-11.187 l118.982-118.98C623.333,215.746,623.335,141.973,577.995,96.631z'/%3E%3Cpath d='M326.031,404.986L207.049,523.963c-15.546,15.548-40.842,15.546-56.388,0.002l-62.624-62.624 c-15.544-15.548-15.546-40.844,0-56.388l118.982-118.982c14.921-14.923,14.921-39.114-0.002-54.033 c-14.921-14.923-39.11-14.923-54.033,0L34.004,350.92c-45.338,45.336-45.338,119.106,0,164.45l62.624,62.628 C119.297,600.665,149.074,612,178.853,612c29.777,0,59.556-11.334,82.225-34.001L380.06,459.017 c14.921-14.919,14.921-39.11,0-54.031C365.141,390.063,340.952,390.067,326.031,404.986z'/%3E%3Cpath d='M189.154,422.844c7.462,7.462,17.237,11.189,27.017,11.189c9.777,0,19.555-3.731,27.015-11.189l179.661-179.659 c14.921-14.919,14.921-39.11,0.002-54.031c-14.921-14.923-39.11-14.919-54.033,0L189.156,368.813 C174.233,383.732,174.233,407.923,189.154,422.844z'/%3E%3C/svg%3E");
}

.portfolio-item-active {
  overflow: hidden;
}
.portfolio-item-active .app > div {
  padding: 0;
}
.portfolio-item-active .app > div + div {
  display: none;
}
.portfolio-item-active .header {
  top: -100px;
}

.pofolio-page {
  background: #000;
}
.pofolio-page .footer {
  color: #fff;
  border-color: #333;
  background: #000;
}
.pofolio-page .footer__arda {
  color: #666;
}
.pofolio-page .footer__policy {
  border-color: #333;
}
.pofolio-page .footer__policy:hover {
  color: #a7a7a7;
}

.footer {
  border-top: 1px solid #e5e5e5;
  color: #666;
  font-size: 12px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.footer__row {
  display: grid;
  height: 80px;
}
@media (min-width: 768px) {
  .footer__row {
    height: 120px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .footer__row {
    height: 140px;
  }
}
.footer__arda {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 24px;
  color: #272727;
}
@media (min-width: 768px) {
  .footer__arda {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__arda svg {
  max-width: 100%;
  max-height: 48px;
}
.footer__policy {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .footer__policy {
    border: 1px solid #e5e5e5;
    border-top: none;
    border-bottom: none;
    padding: 0 24px;
  }
}
.footer__policy:hover {
  color: #000;
}
.footer__policy svg {
  width: 20px;
  height: auto;
  aspect-ratio: 1;
}
.footer__policy span {
  width: 100%;
  text-align: center;
}
.footer__bitrix {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .footer__bitrix {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__bitrix i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50px;
  position: relative;
}
.footer__bitrix i:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: auto;
  aspect-ratio: 1;
  z-index: 1;
  border-radius: 999px;
  background: #fff;
}
.footer__bitrix i img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  position: relative;
  z-index: 2;
}
.footer__bitrix span {
  max-width: calc(100% - 50px);
  padding-left: 12px;
}