@charset "UTF-8";

@font-face {
  font-family: Manrope;
  font-display: swap;
  src: url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Manrope;
  font-display: swap;
  src: url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #000000;
  font-size: 18px;
  font-family: Manrope;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1632px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 150px 0;
}

.title {
  font-weight: 700;
  font-size: 54px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #ffffff;
  border-bottom: 1px solid #ECEEEC;
}

.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 226px;
  height: 70px;
  flex-shrink: 0;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__phone {
  display: flex;
  align-items: center;
  padding: 5px 10px 5px 5px;
  background: #02B0AF;
  border-radius: 50px;
}

.header__phone img {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  margin-right: 10px;
}

.header__phone span {
  color: #ffffff;
  font-weight: 700;
}

.header__nav {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: calc(100% + 1px);
  background: #ffffff;
  left: 0;
  width: 100%;
  height: calc(100vh - 126px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease-in-out;
}

.header__nav.active {
  opacity: 1;
  pointer-events: unset;
}

.header__nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 25px;
}

.header__nav ul li {
  list-style-type: none;
}

.header__nav ul li a {
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}

.header__nav ul li a:hover {
  color: #02B0AF;
}

.burger {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  cursor: pointer;
  display: grid;
  -ms-grid-columns: (5px)[3];
  grid-template-columns: repeat(3, 5px);
  justify-content: space-between;
  width: 25px;
  row-gap: 5px;
  -moz-column-gap: 5px;
       column-gap: 5px;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #000000;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #000000;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

footer {
  margin-top: auto;
  background-color: #ffffff;
  border-top: 1px solid #ECEEEC;
}

.f-logo {
  display: block;
  width: 245px;
  height: 75px;
  flex-shrink: 0;
}

.f-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer_bottom,
.footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_top {
  padding: 70px 0;
}

.footer_top .logo {
  flex-shrink: 0;
}

.foot_menu {
  display: flex;
  font-weight: 700;
  text-transform: uppercase;
}

.foot_menu a {
  transition: 0.2s ease-in-out;
}

.foot_menu a:hover {
  color: #02B0AF;
}

.foot_menu > li:not(:last-child) {
  margin-right: 50px;
}

.footer_bottom {
  padding: 10px 0 50px 0;
  color: #4A464A;
}

.created a:hover {
  text-decoration: underline;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.header-space {
  padding-top: 125px;
}

.hero {
  position: relative;
}

.hero__container {
  position: relative;
  height: calc(100vh - 125px);
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 590px;
}

.hero__content-title {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
}

.hero__content-text {
  margin-bottom: 50px;
  line-height: 180%;
}

.hero__content-link {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding: 15px 25px;
  background: #02B0AF;
  color: #ffffff;
  border-radius: 6px;
  transition: 0.25s ease-in-out;
}

.hero__content-link:hover {
  background: #088686;
}

.hero__images {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 66%;
  -webkit-clip-path: polygon(43% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(43% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero__images::before,
.hero__images::after {
  position: absolute;
  content: "";
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 9;
}

.hero__images::before {
  background: url("../img/img-path-1.png") center no-repeat;
  background-size: 100% 100%;
  width: 65%;
  height: 100%;
}

.hero__images::after {
  background: url("../img/img-path-2.png") bottom no-repeat;
  background-size: contain;
  width: 100%;
  height: 45%;
  top: auto;
  bottom: 0;
}

.hero__images .slick-track,
.hero__images .slick-list {
  height: 100%;
}

.hero__image {
  height: 100%;
}

.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__part {
  border-top: 1px solid #CECECE;
}

.hero__part-container {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
}

.hero__part-title {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 180%;
}

.hero__part-items {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.hero__part-item {
  width: 110px;
  height: 35px;
}

.hero__part-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero__arrows {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 1px solid #ECEEEC;
  z-index: 1;
  display: flex;
  background: linear-gradient(70.34deg, rgba(16, 12, 16, 0) 0%, rgba(16, 12, 16, 0.25) 100%);
}

.hero__arrow {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-in-out;
}

.hero__arrow:hover {
  background: #02B0AF;
}

.abt {
  position: relative;
  background: #F5F5F5;
}

.abt__container {
  position: relative;
  z-index: 1;
}

.abt__title {
  text-align: center;
  margin-bottom: 25px;
}

.abt__subtitle {
  max-width: 803px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  line-height: 180%;
  text-align: center;
}

.abt__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 245px;
  grid-gap: 30px;
}

.abt__first {
  display: flex;
  flex-direction: column;
  position: relative;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  background: #FFFFFF;
  padding: 50px;
}

.abt__first-title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
}

.abt__first-color {
  display: flex;
  margin-bottom: 30px;
}

.abt__first-color div {
  width: 90px;
  height: 5px;
}

.abt__first-color div:nth-child(1) {
  background: #100C10;
}

.abt__first-color div:nth-child(2) {
  background: #BDBABD;
}

.abt__first-color div:nth-child(3) {
  background: #02B0AF;
}

.abt__first-text {
  margin-top: auto;
  max-width: 60%;
  line-height: 180%;
}

.abt__first-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 40%;
  -webkit-clip-path: polygon(41% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(41% 0, 100% 0, 100% 100%, 0% 100%);
}

.abt__first-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.abt__first-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 80%;
  background: url(../img/decor-img-2.png) center no-repeat;
  background-size: 100% 100%;
}

.abt__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 50px;
  color: #ffffff;
}

.abt__item::before {
  position: absolute;
  content: "";
  width: 112px;
  height: 100px;
  top: 50px;
  right: 50px;
  background: url("../img/decor-img.png") center/contain no-repeat;
}

.abt__item.green {
  background: #02B0AF;
}

.abt__item.black {
  background: #003737;
}

.abt__item-title {
  font-weight: 700;
  font-size: 54px;
}

.abt__item-text {
  margin-top: auto;
  line-height: 180%;
}

.decor-bot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.decor-bot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.decor-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
}

.decor-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.decor-svg {
  position: absolute;
  top: 0;
  left: 50px;
  width: 142px;
  height: 262px;
}

.serv {
  position: relative;
  background: #003737;
}

.serv__container {
  position: relative;
  z-index: 1;
}

.serv__header {
  display: flex;
  align-items: flex-start;
  padding-left: 250px;
  margin-bottom: 100px;
}

.serv__title {
  color: #ffffff;
  margin-right: 205px;
}

.serv__subtitle {
  line-height: 180%;
  color: #ffffff;
}

.serv__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.serv__item {
  position: relative;
}

.serv__item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: url(../img/serv-decor.png) left bottom/contain no-repeat;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.serv__item:hover .serv__item-link {
  color: #02B0AF;
  transform: scale(1.02);
}

.serv__item-img {
  position: relative;
}

.serv__item-img::before {
  display: block;
  content: "";
}

.serv__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.serv__item-img::before {
  padding-top: 68%;
}

.serv__item-link {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding: 10px 25px;
  background: #FFFFFF;
  border-radius: 6px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  transition: 0.2s ease-in-out;
}

.serv__item-link img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.map {
  position: relative;
}

.map::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
  background: #003737;
}

.map__title {
  max-width: 555px;
  padding-left: 100px;
}

.map__block {
  display: flex;
  justify-content: flex-end;
}

.map__block-wrapper {
  position: relative;
}

.map__block-wrapper svg {
  max-width: 100%;
  height: auto;
}

.map__block-wrapper svg path {
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.map__block-wrapper svg path:hover {
  fill: #026766;
}

.map_info {
  position: absolute;
  width: 300px;
  border-radius: 5px;
}

.map_info__item {
  position: absolute;
  width: 257px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease-in-out;
}

.map_info__heading {
  padding: 12px 19px;
  border-bottom: 1px solid #C8C8C8;
}

.map_info__body {
  padding: 25px 19px;
}

.map_list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.map_list li a {
  display: block;
  position: relative;
  color: #BBBBBB;
  padding-right: 18px;
  font-size: 16px;
  transition: 0.2s ease-in-out;
}

.map_list li a::before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  background: url("../img/map-arr.png") center/contain no-repeat;
  width: 16px;
  height: 8px;
  transition: 0.2s ease-in-out;
}

.map_list li a:hover {
  color: #02B0AF;
}

.map_list li a:hover::before {
  opacity: 1;
}

.city {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  pointer-events: none;
}

.city.active {
  pointer-events: unset;
}

.city.active .map_info__item {
  opacity: 1;
  pointer-events: unset;
}

.city_num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  pointer-events: none;
}

.city_small {
  width: 16px;
  height: 16px;
  background: #507FC9;
  border-radius: 50%;
  border: 3px solid #fff;
  pointer-events: none;
}

.city_name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 10px);
  color: #ffffff;
  pointer-events: none;
}

.vko {
  top: 46%;
  left: 90%;
}

.pavlodar {
  top: 23%;
  left: 72%;
}

.sko {
  top: 6%;
  left: 54%;
}

.akmola {
  top: 21%;
  left: 57%;
}

.astana {
  top: 31%;
  left: 57%;
}

.kostanai {
  top: 22%;
  left: 41%;
}

.karaganda {
  top: 46%;
  left: 66%;
}

.almaty {
  top: 67%;
  left: 69%;
}

.almaty_city {
  top: 80%;
  left: 73%;
}

.zhambyl {
  top: 75%;
  left: 61%;
}

.uko {
  top: 70%;
  left: 53%;
}

.shymkent {
  top: 88%;
  left: 56%;
}

.kyzylorda {
  top: 68%;
  left: 40%;
}

.aktobe {
  top: 46%;
  left: 28%;
}

.zko {
  top: 37%;
  left: 10%;
}

.atiray {
  top: 52%;
  left: 16%;
}

.mangistay {
  top: 76%;
  left: 16%;
}

.ulitau {
  top: 54%;
  left: 49%;
}

.abai {
  top: 45%;
  left: 78%;
}

.jetisu {
  top: 66%;
  left: 78%;
}

.art__container {
  display: flex;
  flex-direction: column;
}

.art__title {
  text-align: center;
  margin-bottom: 100px;
}

.art__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 30px;
}

.news-colors {
  display: flex;
  margin-bottom: 20px;
}

.news-colors div {
  height: 3px;
  width: 20%;
}

.news-colors div:nth-child(1) {
  background: #100C10;
}

.news-colors div:nth-child(2) {
  background: #BDBABD;
}

.news-colors div:nth-child(3) {
  background: #02B0AF;
}

.news-elems {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.news-arr {
  width: 55px;
  height: 14px;
  flex-shrink: 0;
  transition: 0.2s ease-in-out;
}

.news-arr img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-arr:hover {
  transform: scale(1.02);
}

.news-img {
  position: relative;
  padding-top: 30px;
  padding-left: 30px;
}

.news-img:before {
  content: "";
  -webkit-clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
          clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
  width: calc(100% - 30px);
  height: 282px;
  background-color: #ECEEEC;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.news-img img {
  -webkit-clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
          clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
  width: 100%;
  height: 282px;
  width: 100%;
}

.news-title {
  font-weight: 700;
  font-size: 26px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #100C10;
  margin-bottom: 20px;
  display: block;
  line-height: 120%;
}

.news-desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: #4A464A;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news {
  border-left: 1px solid #ECEEEC;
  border-right: 1px solid #ECEEEC;
  padding: 0 50px;
}

.inst {
  position: relative;
  background: linear-gradient(0deg, rgba(16, 12, 16, 0.6), rgba(16, 12, 16, 0.6)), url("../img/inst.jpg") center/cover no-repeat;
}

.inst::before,
.inst::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
}

.inst::before {
  left: 0;
  background: url("../img/inst-l.png") left/auto no-repeat;
}

.inst::after {
  right: 0;
  background: url("../img/inst-r.png") right/auto no-repeat;
}

.inst__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.inst__tag {
  margin-bottom: 60px;
  color: #ECEEEC;
  padding: 10px 25px;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.5) 0%, rgba(217, 217, 217, 0) 100%);
  border-radius: 16px;
}

.inst__text {
  text-align: center;
  margin-bottom: 100px;
  font-weight: 700;
  font-size: 54px;
  max-width: 982px;
  line-height: 130%;
}

.inst__text a {
  text-decoration: underline;
  transition: 0.2s ease-in-out;
}

.inst__text a:hover {
  color: #02B0AF;
}

.inst__link {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding: 15px 25px;
  background: #02B0AF;
  border-radius: 6px;
  transition: 0.25s ease-in-out;
}

.inst__link:hover {
  background: #088686;
}

.rev {
  position: relative;
}

.rev::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
  background: #02B0AF;
}

.rev__container {
  display: flex;
}

.rev__header {
  display: flex;
  flex-direction: column;
  max-width: 446px;
  flex-shrink: 0;
  margin-left: 100px;
}

.rev__title {
  margin-bottom: 50px;
}

.rev__colors {
  display: flex;
  margin-bottom: 20px;
}

.rev__colors div {
  height: 3px;
  width: 20%;
}

.rev__colors div:nth-child(1) {
  background: #100C10;
}

.rev__colors div:nth-child(2) {
  background: #BDBABD;
}

.rev__colors div:nth-child(3) {
  background: #02B0AF;
}

.rev__img {
  margin-top: auto;
  width: 112px;
  height: 101px;
}

.rev__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.rev__block {
  width: 863px;
  flex-shrink: 0;
  margin-left: auto;
  background: #FFFFFF;
  border: 1px solid #ECEEEC;
  border-radius: 6px;
}

.rev__slider {
  padding: 75px 30px;
}

.rev__slider-item img:first-child {
  margin-left: auto;
  margin-right: auto;
  width: 45px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
}

.rev__slider-text {
  text-align: center;
  line-height: 180%;
}

.rev__items {
  display: flex;
  justify-content: center;
  border-top: 1px solid #ECEEEC;
  height: 80px;
}

.rev__item-arr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  transition: 0.2s ease-in-out;
}

.rev__item-arr svg path {
  transition: 0.2s ease-in-out;
}

.rev__item-arr:hover {
  background: #02B0AF;
}

.rev__item-arr:hover svg path {
  stroke: #ffffff;
  fill: #ffffff;
}

.rev__images {
  border-left: 1px solid #ECEEEC;
  border-right: 1px solid #ECEEEC;
  padding: 10px 25px;
  width: 228px;
  height: 100%;
  flex-shrink: 0;
}

.rev__images .slick-list,
.rev__images .slick-track {
  height: 100%;
}

.rev__image {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.rev__image img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sert {
  position: relative;
  background: #F5F5F5;
}

.sert::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
  background: #ffffff;
}

.sert::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: url("../img/decor-2.jpg") center/cover no-repeat;
}

.sert__title {
  margin-bottom: 70px;
  padding-left: 100px;
}

.sert__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sert__items {
  width: 90%;
}

.sert__item {
  position: relative;
  margin: 0 15px;
}

.sert__item::before {
  display: block;
  content: "";
}

.sert__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sert__item::before {
  padding-top: 130%;
}

.surv {
  position: relative;
}

.surv::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: #F5F5F5;
}

.surv::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 100%, 0 0, 0 100%);
          clip-path: polygon(100% 100%, 0 0, 0 100%);
  background: #F5F5F5;
}

.surv__title {
  margin-bottom: 100px;
  text-align: center;
}

.surv__title span {
  color: #02B0AF;
}

.surv .test_block {
  filter: drop-shadow(0px 10px 40px rgba(0, 0, 0, 0.1));
  margin-left: auto;
  margin-right: auto;
  width: 600px;
  background: #fff;
  padding: 20px;
}

.faq {
  position: relative;
  background: #F5F5F5;
}

.faq::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: #ffffff;
}

.faq_items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.faq_item {
  display: flex;
  flex-direction: column;
}

.faq_question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: #FFFFFF;
  border: 1px solid #ECEEEC;
  border-radius: 6px 6px 0px 0px;
  cursor: pointer;
  line-height: 150%;
  transition: 0.2s ease-in-out;
}

.faq_question.active {
  background: #02B0AF;
  color: #ffffff;
}

.faq_question.active svg path {
  stroke: #ffffff;
}

.faq_question.active svg path:nth-child(1) {
  opacity: 0;
}

.faq_question svg {
  flex-shrink: 0;
  margin-left: 20px;
}

.faq_question svg path {
  transition: 0.2s ease-in-out;
}

.faq_answer {
  padding: 25px;
  background: #FFFFFF;
  border: 1px solid #ECEEEC;
  border-radius: 0px 0px 6px 6px;
  line-height: 180%;
  display: none;
  margin-top: 20px;
}

.faq__title {
  text-align: center;
  margin-bottom: 50px;
}

.page-top {
  margin: 50px 0;
}

.page-top .container {
  display: flex;
  justify-content: space-between;
}

.page-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #100C10;
}

.breadcrumbs {
  display: flex;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #4A464A;
}

.breadcrumbs li {
  margin-right: 10px;
  margin-left: 10px;
}

.breadcrumbs li:first-child {
  margin-left: 0;
}

.breadcrumbs li:last-child {
  margin-right: 0;
}

.breadcrumbs li:last-child a {
  color: #02B0AF;
  pointer-events: none;
}

.breadcrumbs li a {
  color: #4A464A;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs li span {
  color: #02B0AF;
}

.service-list {
  font-size: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  padding-bottom: 100px;
}

.service-list li {
  display: block;
  width: 100%;
}

.service-item {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.service-item::before {
  display: block;
  content: "";
}

.service-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-item:hover .service-item__title {
  color: #02B0AF;
}

.service-item::before {
  padding-top: 132%;
}

.service-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-item__title {
  position: absolute;
  bottom: 50px;
  left: 30px;
  right: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #FFFFFF;
  z-index: 2;
  transition: 0.2s ease-in-out;
}

.service-item:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(360deg, #100C10 0%, rgba(16, 12, 16, 0) 55.7%);
}

.inner-block-left {
  width: 47%;
  padding-right: 70px;
}

.inner-block-right {
  width: 53%;
}

.inner-block {
  display: flex;
  padding-bottom: 100px;
}

.inner-block__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  color: #100C10;
  margin-bottom: 30px;
}

.inner-block__text {
  padding-bottom: 50px;
  border-bottom: 1px solid #ECEEEC;
  margin-bottom: 50px;
}
.inner-block__text ul {
  margin-bottom: 40px;
}
.inner-block__text li {
  margin-bottom: 20px;
}
.inner-block__text li:last-child {
  margin-bottom: 0;
}

.inner-block__text p {
  font-weight: 500;
  line-height: 150%;
  color: #100C10;
  margin-bottom: 15px;
}

.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__badge,
.ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__mobile-popup-badge {
  background-color: #02B0AF !important;
}

.inner-block-img {
  position: relative;
  margin-bottom: 70px;
}

.inner-block-img:before {
  content: "";
  -webkit-clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
          clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
  width: calc(100% - 50px);
  background-color: #ECEEEC;
  display: block;
  position: absolute;
  top: -30px;
  bottom: 0;
}

.inner-block-img img {
  -webkit-clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
          clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
  width: 100%;
  margin-left: 50px;
  margin-top: 50px;
  width: calc(100% - 50px);
  max-height: 500px;
}

.share {
  display: flex;
  align-items: center;
}

.share-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  text-align: center;
  color: #100C10;
  margin-right: 20px;
}

.feedback {
  display: inline-block;
  background: #ECEEEC;
  border-radius: 16px;
  padding: 50px;
  width: 600px;
  margin-top: 50px;
}

.feedback-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 180%;
  color: #100C10;
  margin-bottom: 25px;
}

.form-input {
  height: 52px;
  background: #FFFFFF;
  border: 1px solid #ECEEEC;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 20px;
  text-indent: 25px;
}

.form-select {
  height: 52px;
  background: #FFFFFF;
  border: 1px solid #ECEEEC;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 20px;
  text-indent: 25px;
}

.form-btn {
  border-radius: 16px;
  width: 100%;
  height: 50px;
  border: 1px solid #02B0AF;
  background: #02B0AF;
  border-radius: 16px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.form-btn:hover {
  background: #088686;
}

.project-block {
  padding: 100px 0 100px;
  background-image: url(../img/project_block_icon.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background: #F5F5F5;
}

.project-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  padding-bottom: 100px;
}

.page-padding {
  padding-bottom: 100px;
}

.project-list li {
  display: block;
  width: 100%;
}

.project-img {
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.project-img::before {
  display: block;
  content: "";
}

.project-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-img::before {
  padding-top: 100%;
}

.project-img:hover img {
  transform: scale(1.02);
}

.project-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: 0.2s ease-in-out;
}

.project-body {
  display: flex;
    padding: 20px;
    background: #fff;
    border: 1px solid #ECEEEC;
    height: 100%;
    flex-direction: column;
}

.project-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.8;
  color: #100C10;
  margin-bottom: 20px;
}

.project-info {
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  color: #100C10;
  display: flex;
  justify-content: space-between;
}

.project-info-desc {
  color: #02B0AF;
  text-align: right;
}

.project-desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #4A464A;
  margin: 20px 0;
}

.btn-read-more {
  padding: 15px 25px;
  background: #02B0AF;
  color: #ffffff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.25s ease-in-out;
  margin-top: auto;
}

.btn-read-more:hover {
  background: #088686;
}

.btn-read-more svg {
  margin-left: 15px;
}

.prj {
  position: relative;
  /* background: #F5F5F5; */
}

.prj.gray {
  background: #F5F5F5;
}

.prj__container {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.prj__title {
  text-align: center;
  margin-bottom: 50px;
}

.prj .project-list {
  padding-bottom: 0;
}

.inner-block-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.inner-block-items .inner-block-img {
  position: relative;
  padding-top: 15px;
  padding-left: 15px;
  margin-bottom: 0;
}

.inner-block-items .inner-block-img::before {
  content: "";
  -webkit-clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
          clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
  width: 94%;
  height: 140px;
  background-color: #ECEEEC;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.inner-block-items .inner-block-img img {
  -webkit-clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
          clip-path: polygon(58.52% 0%, 58.6% 18.45%, 100% 10.76%, 100% 89.39%, 64.77% 99.69%, 58.18% 85.55%, 22.35% 94.93%, 0% 100%, 0% 35%, 0% 10.46%);
  width: 100%;
  height: 140px;
  margin: 0;
}

.all-news {
  -ms-grid-row-align: center;
      align-self: center;
  margin-top: 50px;
}

.dev {
  position: relative;
  background: #F5F5F5;
}

.dev::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
  background: #Fff;
}

.dev__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.dev__left {
  width: 39%;
}

.dev__title {
  margin-bottom: 30px;
  line-height: 120%;
}

.dev__text {
  line-height: 180%;
}

.dev__right {
  width: 50%;
}

.dev__img {
  width: 100%;
}

.dev__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.biruz {
  position: relative;
  background: #003737;
}

.biruz__container {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.biruz__title {
  text-align: center;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  font-weight: 700;
  font-size: 26px;
  line-height: 180%;
}

.inf__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inf__left {
  width: 464px;
  flex-shrink: 0;
}

.inf__img {
  width: 100%;
}

.inf__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inf__right {
  width: 60%;
}

.inf__text {
  line-height: 180%;
}

.team {
  background: #F5F5F5;
}

.team__title {
  margin-bottom: 50px;
  text-align: center;
}

.team__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.team__item {
  background: #FFFFFF;
}

.team__item-img {
  position: relative;
}

.team__item-img::before {
  display: block;
  content: "";
}

.team__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team__item-img::before {
  padding-top: 119%;
}

.team__item-box {
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: #FFFFFF;
}

.team__item-name {
  font-size: 20px;
  line-height: 150%;
  font-weight: 700;
  margin-bottom: 5px;
}

.team__item-pos {
  line-height: 180%;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ECEEEC;
}

.team__item-desc {
  font-size: 16px;
  line-height: 180%;
}

.benef {
  position: relative;
  border-bottom: 1px solid #ECEEEC;
}

.benef::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 142px;
  height: 262px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: linear-gradient(196.37deg, #003737 0%, #02B0AF 100%);
}

.benef__container {
  position: relative;
  z-index: 1;
}

.benef__title {
  text-align: center;
  margin-bottom: 100px;
}

.benef__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 250px;
       column-gap: 250px;
  row-gap: 50px;
}

.benef__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  max-width: 280px;
}

.benef__item-img {
  width: 70px;
  height: 70px;
}

.benef__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.benef__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
}

.top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 75vh;
  background: url("../img/top-image-bg.jpg") center center/cover no-repeat;
}

.top-content__title {
  max-width: 724px;
  color: #fff;
  font-size: 54px;
  font-weight: 700;
  line-height: 138%;
}

.architecture__inner {
  position: relative;
}

.architecture__title {
  max-width: 1080px;
  margin: 0 auto 50px auto;
}

.architecture__slider {
  margin-bottom: 45px;
}

.architecture__slide {
  position: relative;
  padding-top: 70px;
}

.architecture__slide-decor {
  position: absolute;
  top: 0;
  left: 14%;
  z-index: -5;
  max-width: 1000px;
  width: 100%;
}

.architecture__slide-img {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  height: 70vh;
  object-fit: cover;
}

.architecture__arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
}

.architecture__arrow.prev {
  left: 0;
}

.architecture__arrow.next {
  right: 0;
}

.architecture__bottom-text {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.architecture__bottom-text span {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #100C10;
}

.advantages {
  background-color: #F5F5F5;
}

.advantages__title {
  margin-bottom: 100px;
}

.advantages__items {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 50px;
}

.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 387px;
  text-align: center;
  row-gap: 30px;
  padding: 0 50px;
}

.advantages__img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.advantages__descr {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #100C10;
}

.disagn__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.disagn__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/decor-disagn.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 142px;
  height: 262px;
}

.disagn__content-img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.disagn__content {
  padding-top: 187px;
  flex-basis: 50%;
  margin: 0 auto;
  max-width: 430px;
  flex-shrink: 0;
}

.disagn__img {
  flex-basis: 50%;
  max-width: 960px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 1125px;
}

.disagn__content-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 136%;
  margin-bottom: 30px;
}

.disagn__content-descr {
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  color: #100C10;
  margin-bottom: 100px;
  max-width: 430px;
}

.disagn__content-items {
  margin-bottom: 100px;
}

.disagn__content-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 50px;
}

.disagn__content-item:last-child {
  margin-bottom: 0;
}

.disagn__content-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #100C10;
}

.disagn__fullimg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.disagn__logo {
  width: 112px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.details {
  position: relative;
  background-color: #003737;
}

.details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/details-images/decor.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 334px;
  height: 262px;
}

.details__title {
  text-align: center;
  font-weight: 700;
  font-size: 54px;
  line-height: 136%;
  color: #fff;
  margin-bottom: 100px;
}

.details__inner {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.details__img {
  max-width: 804px;
  width: 100%;
  /* height: 100%; */
  -o-object-fit: cover;
     object-fit: cover;
}

.details__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 30px;
}

.details__item {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.details__item-img {
  width: 140px;
  min-width: 140px;
  height: 94px;
  -o-object-fit: cover;
     object-fit: cover;
}

.details__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
}

.about-project__title {
  margin-bottom: 30px;
}

.about-project__descr {
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  text-align: center;
  color: #100C10;
  margin: 0 auto 70px auto;
  max-width: 1250px;
}

.about-project__inner {
  display: flex;
  -moz-column-gap: 82px;
       column-gap: 82px;
}

.about-project__img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 804px;
  width: 100%;
  /* height: 100%; */
}

.about-project__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 50px;
}

.about-project__item:last-child {
  margin-bottom: 0;
}

.about-project__item-img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-project__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #100C10;
}

.layouts {
  background-color: #F5F5F5;
}

.layouts__title {
  margin-bottom: 70px;
}

.tabs__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 70px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.tabs__btn {
  padding: 10px 50px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #4A464A;
  background-color: transparent;
  border: 1px solid #4A464A;
  cursor: pointer;
  transition: all 0.3s;
}

.tabs__btn--active {
  background-color: #02B0AF;
  color: #fff;
  border-color: #02B0AF;
}

.tabs__img {
  max-width: 804px;
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
}

.tabs__content {
  height: 0;
  opacity: 0;
  transition: all 1s;
  overflow: hidden;
}

.tabs__content--active {
  height: auto;
  opacity: 1;
  overflow: visible;
}

.tabs__img-slide {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 70px;
       column-gap: 70px;
}

.tabs__content-info {
  max-width: 485px;
  width: 100%;
  padding-top: 30px;
}

.tabs__content-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 180%;
  color: #100C10;
  margin-bottom: 30px;
}

.tabs__table-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tabs__table-item:last-child {
  margin-bottom: 0;
}

.tabs__table-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  color: #000000;
  margin: 0;
}

.tabs__table-line {
  width: 100%;
  display: inline-block;
  border-bottom: 1px dashed #4A464A;
  margin: 0 20px;
  align-self: flex-end;
}

.tabs__table-number {
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  color: #000000;
  flex-shrink: 0;
}

.tabs__table-number span {
  margin-right: 2px;
}

.layouts-slider {
  padding-top: 30px;
}

.layouts-slider__img {
  max-width: 387px;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  padding-right: 30px;
}

.layouts-slider__wrap {
  position: relative;
}

.layouts-slider__slider {
  margin-bottom: 50px;
}

.layouts-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 18px;
  height: 36px;
}

.layouts-slider__arrow.prev {
  left: -60px;
}

.layouts-slider__arrow.next {
  right: -60px;
}

.layouts-slider__link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  background-color: #02B0AF;
  border-radius: 6px;
  padding: 15px 25px;
  color: #fff;
  font-size: 18px;
  line-height: 120%;
  max-width: 360px;
}

.layouts-slider__link svg {
  margin-left: 25px;
}

.section-title {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 136%;
}

.section-indent {
  padding: 100px 0;
}

.cont__container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 120px;
}

.cont__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.cont__left iframe {
  height: 452px;
}

.cont__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (200px)[2];
  grid-template-columns: repeat(2, 200px);
  grid-gap: 30px 100px;
}

.cont__info-item {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.cont__info-item div {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
}

.cont__info-item a {
  transition: 0.2s ease-in-out;
}

.cont__info-item a:hover {
  color: #02B0AF;
}

.cont__soc {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.cont__soc a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #02B0AF;
  border-radius: 50px;
}

.cont__right {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.cont__right form,
.booking__box form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.cont__title {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 26px;
  line-height: 180%;
}

.cont__input {
  width: 100%;
  padding: 10px 25px;
  line-height: 180%;
  border: 1px solid #ECEEEC;
  border-radius: 6px;
}

.cont__input::-moz-placeholder {
  color: #4A464A;
}

.cont__input:-ms-input-placeholder {
  color: #4A464A;
}

.cont__input::placeholder {
  color: #4A464A;
}

.cont__submit {
  padding: 15px;
  background: #02B0AF;
  border-radius: 16px;
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.cont__submit:hover {
  background: #088686;
}

.cont__textarea {
  resize: none;
  height: 145px;
}

.booking {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.8);
}

.booking.active {
  display: flex;
}


.booking__box {
  position: relative;
  padding: 50px;
  background: #FFFFFF;
  width: 100%;
  max-width: 764px;
  margin: 0 16px;
}

.booking__close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.booking__close svg {
  pointer-events: none;
}

.project {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lang {
  margin-top: 20px;
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.lang-item {
  text-transform: uppercase;
  transition: .2s ease-in-out;
}

.lang-item:hover {
  color: #02B0AF;
}

@media (max-width: 1650px) {
  body {
    font-size: 16px;
  }

  .container {
    max-width: 1400px;
  }

  .content {
    padding: 100px 0;
  }

  .title {
    font-size: 42px;
  }

  .header__container {
    padding: 20px 0;
  }

  .header__logo {
    width: 190px;
    height: 60px;
  }

  .header__nav {
    height: calc(100vh - 86px);
  }

  .header-space {
    padding-top: 85px;
  }

  .hero__container {
    height: calc(100vh - 85px);
  }

  .hero__content-title {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .hero__content-text {
    margin-bottom: 30px;
  }

  .abt__subtitle {
    margin-bottom: 30px;
  }

  .abt__first {
    padding: 30px;
  }

  .abt__first-title {
    font-size: 32px;
  }

  .abt__item::before {
    top: 30px;
    right: 30px;
  }

  .abt__item {
    padding: 30px;
  }

  .abt__item-title {
    font-size: 42px;
  }

  .serv__header {
    margin-bottom: 60px;
  }

  .serv__item-link {
    font-size: 16px;
  }

  .map__title {
    max-width: 450px;
  }

  .art__title {
    margin-bottom: 60px;
  }

  .news-img:before {
    height: 240px;
  }

  .news-img img {
    height: 240px;
  }

  .news-title {
    font-size: 22px;
  }

  .news-desc {
    font-size: 16px;
  }

  .news {
    padding: 0 25px;
  }

  .inst__text {
    font-size: 40px;
    max-width: 700px;
  }

  .surv__title {
    margin-bottom: 70px;
  }

  .service-item__title {
    font-size: 18px;
    bottom: 30px;
  }

  .inner-block__title {
    font-size: 24px;
  }

  .project-list {
    grid-gap: 20px;
  }

  .project-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .project-info {
    font-size: 16px;
  }

  .project-desc {
    font-size: 16px;
  }

  .inner-block-items .inner-block-img::before {
    height: 120px;
  }

  .inner-block-items .inner-block-img img {
    height: 120px;
  }

  .inf__left {
    width: 400px;
  }

  .team__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .team__item-box {
    padding: 15px;
  }

  .team__item-name {
    font-size: 18px;
  }

  .layouts-slider {
    padding-top: 50px;
  }

  .layouts-slider__img {
    margin: 0 auto;
  }

  .layouts-slider__arrow.prev {
    left: 0;
  }

  .layouts-slider__arrow.next {
    right: 0;
  }

  .cont__title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

@media (max-width: 1560px) {
  .details::before {
    width: 190px;
    height: 160px;
  }
}

@media (max-width: 1530px) {
  .disagn__inner {
    flex-direction: column;
  }

  .disagn__content {
    padding-bottom: 60px;
  }

  .disagn__img {
    max-width: unset;
  }
}

@media (max-width: 1450px) {
  .container {
    max-width: 1200px;
  }

  .content {
    padding: 75px 0;
  }

  .title {
    font-size: 32px;
  }

  .foot_menu > li:not(:last-child) {
    margin-right: 25px;
  }

  .hero__content {
    max-width: 450px;
  }

  .hero__content-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero__content-text {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .hero__part-container {
    padding: 25px 0;
  }

  .hero__part-items {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }

  .hero__part-item {
    width: 100px;
    height: 30px;
  }

  .hero__arrow {
    padding: 30px;
  }

  .abt__items {
    grid-auto-rows: 210px;
  }

  .serv__title {
    margin-right: 100px;
  }

  .serv__item::before {
    width: 100px;
    height: 100px;
  }

  .news-img:before {
    height: 200px;
  }

  .news-img img {
    height: 200px;
  }

  .news-title {
    font-size: 20px;
  }

  .news-desc {
    font-size: 14px;
  }

  .rev__header {
    max-width: 350px;
  }

  .rev__block {
    width: 650px;
  }

  .surv__title {
    margin-bottom: 50px;
  }

  .faq__title {
    margin-bottom: 30px;
  }

  .service-list {
    padding-bottom: 70px;
    grid-gap: 20px;
  }

  .service-item__title {
    left: 20px;
    right: 20px;
    bottom: 20px;
    font-size: 16px;
  }

  .inner-block {
    padding-bottom: 70px;
  }

  .inner-block-img {
    margin-bottom: 40px;
  }

  .project-list {
    padding-bottom: 70px;
  }

  .page-padding {
    padding-bottom: 70px;
  }

  .project-body {
    padding: 10px 15px;
  }

  .project-title {
    font-size: 18px;
  }

  .project-info {
    font-size: 12px;
  }

  .project-desc {
    font-size: 14px;
    margin: 15px 0;
  }

  .btn-read-more {
    font-size: 14px;
    padding: 10px 20px;
  }

  .inner-block-items .inner-block-img::before {
    height: 100px;
  }

  .inner-block-items .inner-block-img img {
    height: 100px;
  }

  .biruz__container {
    padding: 100px 0;
  }

  .biruz__title {
    font-size: 22px;
  }

  .inf__left {
    width: 300px;
  }

  .team__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .benef__title {
    margin-bottom: 60px;
  }

  .benef__items {
    -moz-column-gap: 150px;
         column-gap: 150px;
  }

  .benef__item {
    row-gap: 20px;
  }

  .benef__item-title {
    font-size: 18px;
  }
}

@media (max-width: 1400px) {
  .layouts-slider__img {
    padding: 0;
  }
}

@media (max-width: 1300px) {
  .details::before {
    display: none;
  }

  .tabs__img {
    margin: 0 auto;
  }

  .tabs__content--active {
    height: auto;
    opacity: 1;
    padding-bottom: 50px;
  }

  .tabs__img-slide {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .tabs__content-info {
    margin: 0 auto;
    padding-top: 50px;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 980px;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 28px;
  }

  .f-logo {
    margin-bottom: 40px;
  }

  .footer_top {
    padding: 40px 0;
    flex-direction: column;
  }

  .hero__part-items {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
  }

  .abt__items {
    grid-auto-rows: 180px;
    grid-gap: 15px;
  }

  .abt__first {
    padding: 20px;
  }

  .abt__first-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .abt__first-color div {
    width: 60px;
  }

  .abt__item::before {
    top: 20px;
    right: 20px;
  }

  .abt__item {
    padding: 20px;
  }

  .abt__item-title {
    font-size: 32px;
  }

  .serv__header {
    padding-left: 0;
  }

  .map__title {
    margin-bottom: 30px;
  }

  .city_num {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .vko .map_info__item {
    transform: translate(0, -50%);
    left: auto;
    right: 100%;
  }

  .zko .map_info__item {
    transform: translate(0, -50%);
    left: 100%;
  }

  .news-img {
    padding-top: 15px;
    padding-left: 15px;
  }

  .news-img:before {
    height: 160px;
  }

  .news-img img {
    height: 160px;
  }

  .news-title {
    font-size: 18px;
  }

  .inst__tag {
    margin-bottom: 25px;
  }

  .inst__text {
    font-size: 26px;
    max-width: 400px;
    margin-bottom: 50px;
  }

  .inst__link {
    padding: 10px 20px;
  }

  .rev::before {
    display: none;
  }

  .rev__container {
    flex-direction: column;
    row-gap: 32px;
  }

  .rev__header {
    max-width: unset;
    margin-left: 0;
  }

  .rev__title {
    margin-bottom: 0;
  }

  .rev__colors {
    display: none;
  }

  .rev__img {
    display: none;
  }

  .rev__block {
    width: 100%;
  }

  .sert::before {
    display: none;
  }

  .sert::after {
    width: 80px;
    height: 140px;
  }

  .sert__title {
    padding-left: 60px;
    margin-bottom: 40px;
  }

  .surv::before {
    width: 80px;
    height: 140px;
  }

  .surv::after {
    width: 80px;
    height: 140px;
  }

  .surv__title {
    margin-bottom: 30px;
  }

  .faq::before {
    width: 80px;
    height: 140px;
  }

  .faq_question {
    padding: 15px;
  }

  .faq_answer {
    padding: 15px;
  }

  .service-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .inner-block-left {
    width: 100%;
    padding-right: 0;
  }

  .inner-block-right {
    width: 100%;
  }

  .inner-block {
    flex-direction: column;
  }

  .inner-block__title {
    font-size: 20px;
  }

  .project-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .prj__container {
    padding: 60px 0;
  }

  .inner-block-items {
    margin-bottom: 40px;
  }

  .inner-block-items .inner-block-img::before {
    height: 160px;
  }

  .inner-block-items .inner-block-img img {
    height: 160px;
  }

  .dev__container {
    flex-direction: column;
    row-gap: 32px;
  }

  .dev__left {
    width: 100%;
  }

  .dev__title {
    margin-bottom: 20px;
  }

  .dev__right {
    width: 100%;
  }

  .inf__container {
    flex-direction: column;
    align-items: center;
    row-gap: 32px;
  }

  .inf__right {
    width: 100%;
  }

  .team__title {
    margin-bottom: 30px;
  }

  .benef::after {
    width: 80px;
    height: 140px;
  }

  .benef__items {
    flex-direction: column;
    align-items: center;
  }

  .details__inner {
    flex-direction: column;
    row-gap: 30px;
  }

  .about-project__inner {
    flex-direction: column;
    row-gap: 50px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .advantages__item {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 992px) {
  body {
    font-size: 14px;
  }

  .title {
    font-size: 24px;
  }

  .hero__container {
    height: auto;
    padding: 50px 0;
  }

  .hero__content {
    max-width: 90%;
  }

  .hero__content-title {
    max-width: 450px;
  }

  .hero__images {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 600px;
  }

  .hero__part-items {
    flex-direction: row;
  }

  .hero__arrows {
    bottom: -105px;
  }

  .serv__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .map::before {
    width: 100px;
    height: 150px;
  }

  .art__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }

  .news-img {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .news {
    padding: 0 15px;
  }

  .inst::after {
    display: none;
  }

  .rev__slider {
    padding: 30px 20px;
  }

  .surv::before {
    display: none;
  }

  .surv::after {
    display: none;
  }

  .faq::before {
    display: none;
  }

  .page-top {
    margin: 30px 0;
  }

  .page-top .container {
    flex-direction: column;
    row-gap: 20px;
  }

  .breadcrumbs {
    overflow: auto;
    white-space: nowrap;
  }

  .breadcrumbs::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .team__item-desc {
    font-size: 14px;
  }

  .benef .decor-svg {
    display: none;
  }

  .top-content__title {
    max-width: 100%;
  }

  .disagn__content-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .details__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 24px;
  }

  .cont__container {
    padding-bottom: 70px;
    flex-direction: column;
    row-gap: 32px;
  }

  .cont__left iframe {
    height: 350px;
  }

  .cont__left {
    width: 100%;
    row-gap: 20px;
  }

  .cont__info {
    grid-gap: 30px;
  }

  .cont__right {
    width: 100%;
  }

  .cont__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 820px) {
  .layouts__title {
    margin-bottom: 30px;
  }

  .tabs__btn {
    padding: 10px 30px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .booking__box {
    padding: 50px 20px 20px 20px;
  }
  .header__phone img {
    margin-right: 0;
  }

  .header__phone span {
    display: none;
  }

  .header__phone {
    padding: 5px;
  }

  .f-logo {
    width: 200px;
    height: 65px;
  }

  .foot_menu {
    flex-direction: column;
    align-items: center;
    row-gap: 25px;
  }

  .foot_menu > li:not(:last-child) {
    margin-right: 0;
  }

  .footer_bottom {
    flex-direction: column;
    align-items: center;
    row-gap: 25px;
  }

  .abt__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .serv__header {
    flex-direction: column;
  }

  .serv__title {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .map_info__item {
    width: 180px;
  }

  .map_info__heading {
    padding: 12px;
    font-size: 12px;
  }

  .map_info__body {
    padding: 15px 12px;
  }

  .map_list li a {
    font-size: 12px;
  }

  .surv .test_block {
    width: 100%;
  }

  .service-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .feedback {
    width: 100%;
    padding: 25px;
  }

  .feedback-title {
    font-size: 22px;
  }

  .project-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-block-items .inner-block-img::before {
    height: 140px;
  }

  .inner-block-items .inner-block-img img {
    height: 140px;
  }

  .biruz__title {
    font-size: 18px;
  }

  .top-content__title {
    font-size: 36px;
  }

  .architecture__slide {
    padding-top: 50px;
  }

  .architecture__slide-decor {
    top: 0;
  }

  .architecture__arrow {
    transform: translateY(50px);
  }

  .architecture__arrow svg {
    width: 15px;
    height: 30px;
  }

  .architecture__arrow svg path {
    stroke: #fff;
  }

  .architecture__arrow.prev {
    left: 15px;
  }

  .architecture__arrow.next {
    right: 15px;
  }

  .advantages__title {
    margin-bottom: 50px;
  }

  .advantages__item {
    row-gap: 15px;
    padding: 0 30px;
  }

  .advantages__descr {
    font-size: 16px;
  }

  .disagn__inner::before {
    width: 80px;
    height: 120px;
  }

  .disagn__content {
    padding-top: 60px;
    text-align: center;
  }

  .disagn__content-descr {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .disagn__content-items {
    margin-bottom: 50px;
  }

  .disagn__content-item {
    flex-direction: column;
    row-gap: 15px;
    width: 100%;
  }

  .disagn__content-text {
    font-size: 16px;
  }

  .disagn__logo {
    width: 62px;
    height: 52px;
    margin: 0 auto;
  }

  .details__item {
    flex-direction: column;
    row-gap: 15px;
    width: 100%;
  }

  .details__item-title {
    font-size: 16px;
  }

  .about-project__descr {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .about-project__item {
    flex-direction: column;
    row-gap: 15px;
    width: 100%;
  }

  .about-project__item-title {
    text-align: center;
    font-size: 16px;
  }

  .layouts-slider__arrow {
    width: 15px;
    height: 30px;
  }

  .layouts-slider__arrow svg {
    width: 100%;
    height: 100%;
  }

  .section-indent {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .hero__content-title {
    font-size: 26px;
  }

  .hero__images {
    height: 400px;
  }

  .hero__arrows {
    bottom: -90px;
  }

  .hero__arrow {
    padding: 20px 30px;
  }

  .city_num {
    width: 18px;
    height: 18px;
    font-size: 8px;
  }

  .rev__items {
    height: 60px;
  }

  .rev__images {
    width: 160px;
    padding: 8px;
  }

  .sert__title {
    padding-left: 0;
    text-align: center;
  }

  .project-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .inner-block-items .inner-block-img::before {
    height: 100px;
  }

  .inner-block-items .inner-block-img img {
    height: 100px;
  }

  .disagn__inner::before {
    display: none;
  }

  .disagn__content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .details__item-title {
    text-align: center;
  }

  .cont__info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .header__logo {
    width: 150px;
    height: 50px;
  }

  .map_info__item {
    width: 140px;
  }

  .map_info__heading {
    font-size: 10px;
  }

  .map_list li a {
    font-size: 10px;
  }

  .city_num {
    width: 14px;
    height: 14px;
    font-size: 6px;
  }

  .city_small {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }

  .city_name {
    font-size: 8px;
    bottom: calc(100% + 4px);
  }

  .service-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .inner-block-items .inner-block-img::before {
    height: 80px;
  }

  .inner-block-items .inner-block-img img {
    height: 80px;
  }

  .team__items {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 445px) {
  .architecture__bottom-text {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }

  .architecture__bottom-text svg {
    width: 30px;
    height: 30px;
  }

  .architecture__bottom-text span {
    font-size: 16px;
  }
}

@media (max-width: 425px) {
  .top-content__title {
    font-size: 28px;
  }

  .architecture__arrow {
    transform: translateY(70px);
  }

  .tabs__img {
    height: 400px;
  }

  .tabs__content-info {
    padding-top: 30px;
  }

  .tabs__table-title {
    font-size: 16px;
  }

  .tabs__table-number {
    font-size: 16px;
  }

  .layouts-slider__link {
    padding: 15px 10px;
    font-size: 16px;
  }

  .layouts-slider__link svg {
    width: 12px;
    height: 12px;
    margin-left: 10px;
  }
}

@media (max-width: 420px) {
  .hero__images {
    height: 280px;
  }

  .hero__arrows {
    bottom: -55px;
  }

  .hero__arrow {
    padding: 10px 20px;
  }

  .hero__arrow svg {
    height: 16px;
  }

  .inner-block-img img {
    margin-left: 30px;
    margin-top: 30px;
  }

  .inner-block-items .inner-block-img::before {
    height: 70px;
  }

  .inner-block-items .inner-block-img img {
    height: 70px;
  }
}

@media (max-width: 375px) {
  .tabs__content-title {
    font-size: 20px;
  }
}