@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Bold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-ExtraBold.otf");
  font-weight: 800;
  font-style: normal;
}
*, ul, ol, p, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: Gilroy, sans-serif;
  color: #000;
  font-weight: 400;
  background-color: #fff;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1462px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1461px) {
  .container {
    padding: 0 15px;
    max-width: 1230px;
  }
}
@media (max-width: 1129px) {
  .container {
    padding: 0 15px;
    max-width: 997px;
  }
}
@media (max-width: 996px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 14px;
  }
}

.section_title {
  color: #000;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 99%; /* 37.62px */
  text-transform: uppercase;
}
@media (max-width: 996px) {
  .section_title {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 121.275%; /* 29.106px */
    text-transform: uppercase;
  }
}
.section_title.bold {
  color: #000;
  font-size: 44px;
  font-style: normal;
  font-weight: 800;
  line-height: 99%;
  text-transform: uppercase;
}
@media (max-width: 996px) {
  .section_title.bold {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 121.275%; /* 29.106px */
    text-transform: uppercase;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.blue_btn {
  display: flex;
  height: 50px;
  width: 100%;
  max-width: 230px;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  background: #2052C4;
  overflow: hidden;
  color: #FFF;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 996px) {
  .blue_btn {
    max-width: 160px;
    height: 40px;
    font-size: 14px;
  }
}

.item_description {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

header {
  padding: 10px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease;
  z-index: 10;
}
@media (max-width: 1129px) {
  header {
    padding: 5px 0;
  }
}
header.header_about .row nav .phone_number {
  background-image: url(../img/about_header_btns.png);
}
header.header_tenant .row nav .phone_number {
  border-radius: 40px;
  background-image: none;
  background: rgba(255, 255, 255, 0.1);
}
header.fixed {
  background-color: #fff;
  padding: 10px 0;
}
@media (max-width: 1129px) {
  header.fixed {
    padding: 5px 0;
  }
}
header.fixed .row nav .phone_number {
  background-image: url(../img/about_header_btns.png);
}
header.active .row {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
  background: rgba(239, 242, 245, 0.9);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  animation: menuSlide 0.4s ease forwards;
}
@keyframes menuSlide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
header.active .row .header_logo {
  display: none;
}
header.active .row nav {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  justify-content: space-between;
  height: 100%;
}
header.active .row nav .links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
header.active .row .mobile_buttons a {
  display: none;
}
header.active .row .mobile_buttons .close_btn {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  justify-content: center;
}
header.active .row .phone_number {
  margin-top: auto;
  background-image: url(../img/about_header_btns.png);
}
header .row {
  justify-content: space-between;
  align-items: center;
}
header .row .header_logo {
  flex: 0 0 auto;
  width: max-content;
  height: 36px;
}
@media (max-width: 996px) {
  header .row .header_logo {
    height: 28px;
  }
}
header .row .header_logo img {
  width: 212px;
  height: 36px;
}
@media (max-width: 996px) {
  header .row .header_logo img {
    width: 165px;
    height: 28px;
  }
}
header .row nav {
  display: flex;
  align-items: center;
  gap: 0 28px;
}
@media (max-width: 1129px) {
  header .row nav {
    display: none;
  }
}
header .row nav .links {
  display: flex;
  align-items: center;
  gap: 40px;
}
header .row nav .links li a {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
header .row nav > .links > li > a,
header .row nav > .links > li > .has-dropdown__row > a {
  white-space: nowrap;
}
header .row nav {
  position: relative;
}
header .row nav .links li.has-dropdown {
  position: relative;
}
header .row nav .has-dropdown__row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}
header .row nav .has-dropdown__row > a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}
header .row nav .has-dropdown:hover .has-dropdown__row,
header .row nav .has-dropdown:focus-within .has-dropdown__row,
header .row nav .has-dropdown.is-open .has-dropdown__row,
header .row nav .has-dropdown.is-active .has-dropdown__row {
  background: rgba(32, 82, 196, 0.08);
}
header .row nav .has-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6L11 1.5' stroke='%232052C4' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center/12px 8px no-repeat;
  transition: transform 0.25s ease;
}
header .row nav .has-dropdown.is-open .has-dropdown__toggle {
  transform: rotate(180deg);
}
header .row nav .links .links--sub {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 64px));
  min-width: 720px;
  margin: 0;
  padding: 26px 28px 24px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
  z-index: 60;
}
header .row nav .links .links--sub::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-left: 1px solid rgba(17, 24, 39, 0.06);
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}
header .row nav .links .links--sub-title {
  margin: 0 0 18px;
  color: #2052C4;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
header .row nav .links .links--sub-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 10px 22px;
  align-items: start;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .row nav .links .links--sub-list li {
  width: 100%;
}
header .row nav .links .links--sub-list li a {
  display: block;
  min-height: 100%;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.3;
  white-space: normal;
  border-radius: 12px;
}
header .row nav .links .links--sub-list li a:hover {
  color: #2052C4;
  background: rgba(32, 82, 196, 0.06);
}
header .row nav .has-dropdown.is-active > .has-dropdown__row > a {
  color: #2052C4;
}
@media (min-width: 1130px) {
  header .row nav .has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
  }
  header .row nav .has-dropdown:hover .links--sub,
  header .row nav .has-dropdown:focus-within .links--sub,
  header .row nav .has-dropdown.is-open .links--sub {
    display: block;
  }
}
header .row nav .phone_number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: 100%;
  border-radius: 40px;
  max-width: 230px;
  padding: 0 24px;
  gap: 0 10px;
  overflow: hidden;
  background-image: url(../img/button_bg.png);
  background-position: 100% 100%;
  background-size: cover;
}
header .row nav .phone_number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #2052C4;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
header .row .mobile_buttons {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (max-width: 1129px) {
  header .row .mobile_buttons {
    display: flex;
  }
}
header .row .mobile_buttons a {
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  overflow: hidden;
  background-image: url(../img/mobile_btn.svg);
  background-repeat: no-repeat;
}
header .row .mobile_buttons .close_btn {
  display: none;
}
@media (max-width: 1129px) {
  header.active .row nav .links li.has-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header.active .row nav .has-dropdown__row {
    align-self: center;
  }
  header .row nav .links .links--sub {
    display: block;
    position: static;
    min-width: 0;
    width: min(92vw, 720px);
    transform: none;
    margin-top: 0;
    padding: 0 0 0 12px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    border-left: 2px solid rgba(32, 82, 196, 0.2);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease, padding-top 0.25s ease;
  }
  header .row nav .links .links--sub::before {
    display: none;
  }
  header .row nav .links .links--sub-title {
    margin-bottom: 10px;
    font-size: 12px;
  }
  header .row nav .links .links--sub-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  header .row nav .links .links--sub-list li {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.28s ease;
  }
  header .row nav .has-dropdown.is-open .links--sub-list li {
    opacity: 1;
    transform: translateY(0);
  }
  header .row nav .has-dropdown.is-open .links--sub-list li:nth-child(1) { transition-delay: 0.03s; }
  header .row nav .has-dropdown.is-open .links--sub-list li:nth-child(2) { transition-delay: 0.06s; }
  header .row nav .has-dropdown.is-open .links--sub-list li:nth-child(3) { transition-delay: 0.09s; }
  header .row nav .has-dropdown.is-open .links--sub-list li:nth-child(4) { transition-delay: 0.12s; }
  header .row nav .has-dropdown.is-open .links--sub-list li:nth-child(5) { transition-delay: 0.15s; }
  header .row nav .has-dropdown.is-open .links--sub-list li:nth-child(6) { transition-delay: 0.18s; }
  header .row nav .has-dropdown.is-open .links--sub-list li:nth-child(7) { transition-delay: 0.21s; }
  header .row nav .has-dropdown.is-open .links--sub-list li:nth-child(8) { transition-delay: 0.24s; }
  header .row nav .has-dropdown.is-open .links--sub-list li:nth-child(9) { transition-delay: 0.27s; }
  header .row nav .has-dropdown.is-open .links--sub-list li:nth-child(10) { transition-delay: 0.30s; }
  header .row nav .has-dropdown.is-open .links--sub {
    margin-top: 12px;
    padding-top: 12px;
    max-height: 900px;
    opacity: 1;
    pointer-events: auto;
  }
  header.active .row nav .links .links--sub-list li a {
    padding: 8px 0;
    border-radius: 0;
  }
}

.hero {
  height: 100vh;
  background-image: url(../img/hero_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media (max-width: 1461px) {
  .hero {
    background-position: right top;
  }
}
@media (max-width: 1129px) {
  .hero {
    background-position: center top;
  }
}
@media (max-width: 996px) {
  .hero {
    background-image: url(../img/hero_bg_mobile.jpg);
    height: auto;
    padding: 116px 0 139px 0;
  }
}
.hero.hero_about {
  background-image: none;
  height: auto;
}
@media (max-width: 996px) {
  .hero.hero_about {
    padding: 0;
  }
}
.hero.hero_about .about_info {
  margin-top: 129px;
  width: 100%;
  position: relative;
}
@media (max-width: 996px) {
  .hero.hero_about .about_info {
    margin-top: 145px;
  }
}
.hero.hero_about .about_info .first_info {
  padding: 90px 61px 60px 61px;
  border-radius: 50px;
  background: #2052C4;
  width: 100%;
  max-width: 1027px;
  display: flex;
  flex-direction: column;
  gap: 55px 0;
}
@media (max-width: 1461px) {
  .hero.hero_about .about_info .first_info {
    padding: 30px 30px 60px 30px;
    max-width: 850px;
  }
}
@media (max-width: 996px) {
  .hero.hero_about .about_info .first_info {
    padding: 41px 26px 135px 26px;
    max-width: 100%;
    gap: 4px 0;
  }
}
.hero.hero_about .about_info .first_info .item_description {
  font-size: 24px;
  color: #fff;
  max-width: 629px;
  line-height: 24px;
}
@media (max-width: 1129px) {
  .hero.hero_about .about_info .first_info .item_description {
    max-width: 450px;
  }
}
@media (max-width: 996px) {
  .hero.hero_about .about_info .first_info .item_description {
    font-size: 18px;
  }
}
.hero.hero_about .about_info .section_title {
  color: #fff;
  font-size: 200px;
  font-style: normal;
  font-weight: 900;
  line-height: 121.275%; /* 242.55px */
  text-transform: uppercase;
  background: url(../img/hero_bg.png) no-repeat;
  background-clip: text;
  background-position: 0px 28px;
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 35px;
  right: 0;
}
@media (max-width: 1461px) {
  .hero.hero_about .about_info .section_title {
    font-size: 150px;
  }
}
@media (max-width: 1129px) {
  .hero.hero_about .about_info .section_title {
    top: 0;
  }
}
@media (max-width: 996px) {
  .hero.hero_about .about_info .section_title {
    font-size: 80px;
    height: 97px;
    font-style: normal;
    font-weight: 900;
    line-height: 121.275%; /* 97.02px */
    text-transform: uppercase;
    background-position: 0px 14px;
    top: -64px;
    right: auto;
    left: 34px;
  }
}
.hero.hero_about .about_info .second_info {
  padding: 68px 59px 63px 59px;
  width: 100%;
  border-radius: 40px;
  background: #000;
  overflow: hidden;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 50px 0;
  position: absolute;
  right: 0;
  bottom: -82px;
}
@media (max-width: 1461px) {
  .hero.hero_about .about_info .second_info {
    padding: 30px 30px 30px 30px;
    max-width: 460px;
  }
}
@media (max-width: 1129px) {
  .hero.hero_about .about_info .second_info {
    max-width: 400px;
  }
}
@media (max-width: 996px) {
  .hero.hero_about .about_info .second_info {
    width: 368px;
    height: 205px;
    bottom: -126px;
    right: -62px;
    padding: 28px 35px 15px 35px;
    z-index: 2;
    gap: 30px 0;
  }
}
.hero.hero_about .about_info .second_info .item_title {
  color: #FFF;
  font-size: 34px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px; /* 70.588% */
}
@media (max-width: 996px) {
  .hero.hero_about .about_info .second_info .item_title {
    font-size: 18px;
  }
}
.hero.hero_about .about_info .second_info .item_description {
  font-size: 24px;
  color: #fff;
  max-width: 498px;
}
@media (max-width: 996px) {
  .hero.hero_about .about_info .second_info .item_description {
    font-size: 18px;
  }
}
.hero.businnes_hero {
  position: relative;
  overflow: hidden;
}
.hero.businnes_hero .bus_row {
  margin-top: 150px;
  align-items: end;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: 45px;
}
@media (max-width: 996px) {
  .hero.businnes_hero .bus_row {
    margin-top: 90px;
    margin-bottom: 71px;
  }
}
.hero.businnes_hero .bus_row.commercial .item_left {
  max-width: 900px;
}
@media (max-width: 996px) {
  .hero.businnes_hero .bus_row.commercial .item_left {
    max-width: 300px;
  }
}
@media (max-width: 1461px) {
  .hero.businnes_hero .bus_row.commercial_retail .item_left {
    max-width: 700px;
  }
}
@media (max-width: 996px) {
  .hero.businnes_hero .bus_row.commercial_retail .item_left {
    max-width: 240px;
  }
}
.hero.businnes_hero .bus_row.office .item_left {
  max-width: 810px;
}
@media (max-width: 996px) {
  .hero.businnes_hero .bus_row.office .item_left {
    max-width: 250px;
  }
}
.hero.businnes_hero .bus_row .item_left {
  max-width: 710px;
}
@media (max-width: 1461px) {
  .hero.businnes_hero .bus_row .item_left {
    max-width: 600px;
  }
}
@media (max-width: 1129px) {
  .hero.businnes_hero .bus_row .item_left {
    max-width: 500px;
  }
}
@media (max-width: 996px) {
  .hero.businnes_hero .bus_row .item_left {
    max-width: 285px;
  }
}
.hero.businnes_hero .bus_row .item_left .item_title {
  font-size: 70px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 70px */
  text-transform: uppercase;
  background: url(../img/text_bg.jpg) lightgray 50%/cover no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1461px) {
  .hero.businnes_hero .bus_row .item_left .item_title {
    font-size: 50px;
  }
}
@media (max-width: 996px) {
  .hero.businnes_hero .bus_row .item_left .item_title {
    font-size: 30px;
    margin-bottom: 11px;
  }
}
.hero.businnes_hero .bus_row .item_left .item_description {
  color: #2052C4;
  font-size: 20px;
}
@media (max-width: 996px) {
  .hero.businnes_hero .bus_row .item_left .item_description {
    font-size: 12px;
    max-width: 267px;
  }
}
.hero.businnes_hero .bus_row .right_item {
  width: 250px;
}
.hero.businnes_hero .bus_row .blue_btn {
  width: 100%;
  max-width: 250px;
  flex: 0 0 auto;
}
@media (max-width: 996px) {
  .hero.businnes_hero .bus_row .blue_btn {
    margin-top: 35px;
    max-width: 230px;
    font-size: 16px;
    height: 50px;
  }
}
.hero.businnes_hero .hero_bg {
  max-width: 1580px;
  max-height: 1053px;
  position: absolute;
  right: 0;
  top: 55px;
  height: 100%;
  width: 100%;
}
@media (max-width: 1461px) {
  .hero.businnes_hero .hero_bg {
    max-width: 900px;
  }
}
@media (max-width: 1129px) {
  .hero.businnes_hero .hero_bg {
    max-width: 630px;
  }
}
@media (max-width: 996px) {
  .hero.businnes_hero .hero_bg {
    max-width: 697px;
    max-height: 465px;
    top: 193px;
    right: -50px;
  }
}
.hero.businnes_hero .hero_bg.property {
  max-width: 1038px;
  max-height: 559px;
  top: auto;
  bottom: -10px;
}
@media (max-width: 1129px) {
  .hero.businnes_hero .hero_bg.property {
    max-width: 600px;
    max-height: 400px;
  }
}
.hero.businnes_hero .hero_bg.coms {
  max-width: 561px;
  max-height: 841px;
  top: -13px;
  right: 116px;
}
@media (max-width: 1129px) {
  .hero.businnes_hero .hero_bg.coms {
    right: 0;
    max-width: 400px;
    max-height: 500px;
  }
}
@media (max-width: 996px) {
  .hero.businnes_hero .hero_bg.coms {
    top: 70px;
    right: -70px;
  }
}
.hero.businnes_hero .hero_bg.retail {
  max-width: 1061.5px;
  max-height: 818.5px;
  top: 0;
  height: 100%;
  bottom: auto;
}
@media (max-width: 1461px) {
  .hero.businnes_hero .hero_bg.retail {
    max-width: 800px;
  }
}
@media (max-width: 996px) {
  .hero.businnes_hero .hero_bg.retail {
    max-width: 400px;
    top: auto;
    bottom: -10px;
    height: 393px;
  }
}
.hero.businnes_hero .hero_bg.tenant {
  max-width: 1021px;
  max-height: 681px;
  top: 0;
  right: 0;
}
@media (max-width: 996px) {
  .hero.businnes_hero .hero_bg.tenant {
    max-width: 400px;
    right: -100px;
  }
}
.hero.businnes_hero .hero_bg.warehouse {
  max-width: 1326px;
  max-height: 884px;
  top: auto;
  bottom: -90px;
  right: -225px;
}
@media (max-width: 996px) {
  .hero.businnes_hero .hero_bg.warehouse {
    max-width: 600px;
    right: -50px;
  }
}
.hero.businnes_hero .hero_bg.build {
  max-width: 996px;
  max-height: 664px;
  top: auto;
  bottom: -77px;
  right: -64px;
}
.hero.businnes_hero .hero_bg.build img {
  object-fit: contain;
}
.hero.businnes_hero .hero_bg.office {
  max-width: 852px;
  max-height: 852px;
  top: auto;
  right: 15px;
  bottom: -50px;
}
@media (max-width: 1129px) {
  .hero.businnes_hero .hero_bg.office {
    max-width: 600px;
  }
}
@media (max-width: 996px) {
  .hero.businnes_hero .hero_bg.office {
    max-width: 400px;
    right: -30px;
  }
}
.hero.businnes_hero .hero_bg.office img {
  object-fit: contain;
}
.hero.businnes_hero .hero_bg.shop {
  max-width: 1200px;
  max-height: 956.5px;
  top: auto;
  bottom: -190px;
  height: 100%;
}
@media (max-width: 1461px) {
  .hero.businnes_hero .hero_bg.shop {
    bottom: -155px;
  }
}
@media (max-width: 1129px) {
  .hero.businnes_hero .hero_bg.shop {
    max-width: 800px;
  }
}
@media (max-width: 996px) {
  .hero.businnes_hero .hero_bg.shop {
    bottom: -115px;
  }
}
.hero.businnes_hero .hero_bg.shop img {
  object-fit: unset;
}
@media (max-width: 996px) {
  .hero.businnes_hero .hero_bg.shop img {
    object-fit: cover;
  }
}
.hero.businnes_hero .hero_bg.facilites {
  max-width: 470px;
  max-height: 1043px;
  right: 0;
  top: 0;
}
@media (max-width: 1129px) {
  .hero.businnes_hero .hero_bg.facilites {
    max-width: 419px;
  }
}
@media (max-width: 996px) {
  .hero.businnes_hero .hero_bg.facilites {
    max-width: 235px;
    max-height: 300px;
    top: auto;
    bottom: -10px;
  }
}
.hero.businnes_hero .hero_bg.facilites img {
  object-fit: contain;
}
.hero.businnes_hero .hero_bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero .hero_row {
  display: flex;
  padding-top: 282px;
  flex-direction: column;
}
@media (max-width: 996px) {
  .hero .hero_row {
    padding: 0;
  }
}
.hero .hero_row .item_title {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
@media (max-width: 996px) {
  .hero .hero_row .item_title {
    margin-bottom: 26px;
  }
}
.hero .hero_row .section_title.bold {
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 996px) {
  .hero .hero_row .section_title.bold {
    font-size: 30px;
  }
}
.hero .hero_row .section_title {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 996px) {
  .hero .hero_row .section_title {
    font-size: 15px;
  }
}

.control {
  padding-top: 42px;
}
@media (max-width: 996px) {
  .control {
    padding-top: 26px;
  }
}
.control .section_title {
  margin-bottom: 14px;
  text-align: center;
}
.control .row {
  align-items: stretch;
  gap: 10px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}
@media (max-width: 1129px) {
  .control .row {
    flex-wrap: wrap;
  }
}
.control .row .control_item {
  position: relative;
  min-height: 480px;
  min-width: 480px;
  border-radius: 50px;
  background: #EFF2F5;
  overflow: hidden;
}
@media (max-width: 1461px) {
  .control .row .control_item {
    min-width: 420px;
  }
}
@media (max-width: 1129px) {
  .control .row .control_item {
    min-width: max-content;
    width: calc(50% - 5px);
  }
}
@media (max-width: 996px) {
  .control .row .control_item {
    width: 100%;
    min-height: 311px;
  }
}
.control .row .control_item .item_title {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 35px;
  bottom: 37px;
  align-items: start;
}
@media (max-width: 996px) {
  .control .row .control_item .item_title {
    left: 19px;
    bottom: 27px;
    z-index: 4;
  }
}
.control .row .control_item .item_title .section_title {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 0;
}
.control .row .control_item .item_title .section_title.bold {
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
}
.control .row .control_item .item_img {
  position: absolute;
  right: -68px;
  bottom: -180px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 383px;
  max-height: 681px;
}
@media (max-width: 996px) {
  .control .row .control_item .item_img {
    width: 226.549px;
    height: 280.754px;
    max-width: max-content;
    max-height: max-content;
    right: 0;
    bottom: 0px;
  }
}
.control .row .control_item .item_img img {
  width: 100%;
  height: 100%;
}
.control .row .control_item:last-child {
  min-width: 240px;
}
@media (max-width: 1461px) {
  .control .row .control_item:last-child {
    min-width: 230px;
  }
}
@media (max-width: 1129px) {
  .control .row .control_item:last-child {
    min-width: max-content;
    width: calc(50% - 5px);
  }
}
@media (max-width: 996px) {
  .control .row .control_item:last-child {
    order: 3;
    width: 100%;
  }
}
.control .row .control_item:last-child .item_title {
  bottom: auto;
  top: 34px;
  left: 0;
  right: 0;
  margin: auto;
  align-items: center;
}
@media (max-width: 996px) {
  .control .row .control_item:last-child .item_title {
    left: 34px;
    top: 0;
    bottom: 0;
    right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.control .row .control_item:last-child .item_img {
  max-width: 240px;
  max-height: 380px;
  bottom: -26px;
  left: 0;
}
@media (max-width: 1129px) {
  .control .row .control_item:last-child .item_img {
    max-width: 100%;
    border-radius: 30px;
    overflow: hidden;
  }
}
@media (max-width: 996px) {
  .control .row .control_item:last-child .item_img {
    max-width: 174px;
    max-height: 100%;
    left: auto;
    right: 0;
    height: 100%;
    bottom: 0;
  }
}
@media (max-width: 1129px) {
  .control .row .control_item:last-child .item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.control .row .row_m {
  flex-direction: column;
  gap: 10px 0;
  max-width: 690px;
}
@media (max-width: 1461px) {
  .control .row .row_m {
    min-width: 500px;
  }
}
@media (max-width: 1129px) {
  .control .row .row_m {
    min-width: max-content;
    max-width: 100%;
    width: 100%;
    order: 3;
  }
}
@media (max-width: 996px) {
  .control .row .row_m {
    order: 2;
  }
}
.control .row .row_m .control_item {
  width: 100%;
  min-width: 690px;
  min-height: 230px;
}
@media (max-width: 1461px) {
  .control .row .row_m .control_item {
    min-width: 500px;
  }
}
@media (max-width: 1129px) {
  .control .row .row_m .control_item {
    min-width: max-content;
    width: 100%;
    max-width: 100%;
  }
}
.control .row .row_m .control_item .item_title {
  bottom: 26px;
}
.control .row .row_m .control_item .item_img {
  right: -194px;
  bottom: 0;
  max-width: 674px;
  max-height: 423px;
}
@media (max-width: 996px) {
  .control .row .row_m .control_item .item_img {
    max-width: 280px;
    max-height: 276.673px;
    right: -60px;
    width: 100%;
    height: 100%;
    bottom: -50px;
  }
}
@media (max-width: 996px) {
  .control .row .row_m .control_item .item_img img {
    object-fit: contain;
  }
}
.control .row .row_m .row_bottom {
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 1129px) {
  .control .row .row_m .row_bottom {
    width: 100%;
    flex: 0 0 auto;
  }
}
.control .row .row_m .row_bottom .control_item {
  min-width: 340px;
  min-height: 240px;
}
@media (max-width: 1461px) {
  .control .row .row_m .row_bottom .control_item {
    min-width: 250px;
  }
}
@media (max-width: 1129px) {
  .control .row .row_m .row_bottom .control_item {
    min-width: max-content;
    width: calc(50% - 5px);
  }
}
.control .row .row_m .row_bottom .control_item .item_title {
  left: 30px;
}
@media (max-width: 996px) {
  .control .row .row_m .row_bottom .control_item .item_title {
    left: 0;
    right: 0;
    margin: auto;
    bottom: auto;
    top: 37px;
    display: flex;
    align-items: center;
  }
}
.control .row .row_m .row_bottom .control_item .item_img {
  right: -116px;
  bottom: -30px;
  max-width: 300px;
  max-height: 270px;
}
@media (max-width: 996px) {
  .control .row .row_m .row_bottom .control_item .item_img {
    right: 0;
    bottom: 0;
    width: 170px;
    height: 220px;
  }
}
.control .row .row_m .row_bottom .control_item:last-child .item_title {
  left: 0;
  right: 16px;
  margin: auto;
  bottom: auto;
  top: 28px;
  width: 100%;
  max-width: 124px;
}
@media (max-width: 996px) {
  .control .row .row_m .row_bottom .control_item:last-child .item_title {
    left: 0;
    right: 0;
    top: 37px;
  }
}
.control .row .row_m .row_bottom .control_item:last-child .item_img {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 317px;
  max-height: 151px;
}
@media (max-width: 996px) {
  .control .row .row_m .row_bottom .control_item:last-child .item_img {
    width: 195px;
    height: 93px;
    bottom: 20px;
  }
}

.department {
  position: relative;
  padding: 197px 0 111px 0;
}
@media (max-width: 1129px) {
  .department {
    padding-top: 160px;
  }
}
@media (max-width: 996px) {
  .department {
    padding: 54px 0 200px 0;
  }
}
.department .container {
  position: relative;
  z-index: 2;
}
.department .item_title {
  display: flex;
  flex-direction: column;
  margin-bottom: 55px;
}
@media (max-width: 996px) {
  .department .item_title {
    margin-bottom: 30px;
  }
}
.department .item_title .section_title {
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 99%; /* 43.56px */
  text-transform: uppercase;
}
@media (max-width: 996px) {
  .department .item_title .section_title {
    font-size: 24px;
  }
}
.department .item_title .section_title.bold {
  font-style: normal;
  font-weight: 800;
  line-height: 99%; /* 60px */
  text-transform: uppercase;
}
@media (max-width: 1461px) {
  .department .item_description {
    max-width: 600px;
  }
}
@media (max-width: 1129px) {
  .department .item_description {
    max-width: 500px;
  }
}
@media (max-width: 996px) {
  .department .item_description {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 313px;
  }
}
.department .item_percentage {
  position: absolute;
  right: 0;
  top: -180px;
  display: flex;
  align-items: end;
}
@media (max-width: 1461px) {
  .department .item_percentage {
    right: -50px;
  }
}
@media (max-width: 1129px) {
  .department .item_percentage {
    right: -200px;
  }
}
@media (max-width: 996px) {
  .department .item_percentage {
    right: 0;
    top: -100px;
  }
}
.department .item_percentage .number {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 220px;
  display: flex;
  align-items: center;
  height: max-content;
}
@media (max-width: 1129px) {
  .department .item_percentage .number {
    left: 150px;
  }
}
@media (max-width: 996px) {
  .department .item_percentage .number {
    left: 115px;
  }
}
.department .item_percentage .number span {
  color: #FFF;
  font-size: 320.692px;
  font-style: normal;
  font-weight: 800;
  line-height: 121.275%; /* 388.92px */
  text-transform: uppercase;
}
@media (max-width: 1129px) {
  .department .item_percentage .number span {
    font-size: 250px;
  }
}
@media (max-width: 996px) {
  .department .item_percentage .number span {
    font-size: 182.193px;
    font-style: normal;
    font-weight: 800;
    line-height: 121.275%; /* 220.954px */
    text-transform: uppercase;
  }
}
.department .item_percentage .number span:last-child {
  font-size: 230.45px;
  margin-top: auto;
}
@media (max-width: 1129px) {
  .department .item_percentage .number span:last-child {
    font-size: 190px;
  }
}
@media (max-width: 996px) {
  .department .item_percentage .number span:last-child {
    font-size: 130.924px;
    font-style: normal;
    font-weight: 800;
    line-height: 121.275%;
    text-transform: uppercase;
  }
}
@media (max-width: 996px) {
  .department .item_percentage img {
    display: none;
  }
}
.department .item_percentage img.mobile {
  display: none;
}
@media (max-width: 996px) {
  .department .item_percentage img.mobile {
    display: flex;
  }
}

.works {
  padding: 59px 0 42px 0;
  background: #EFF2F5;
}
@media (max-width: 996px) {
  .works {
    padding: 48px 0 27px 0;
  }
}
.works .more_btn {
  display: none;
}
@media (max-width: 996px) {
  .works .more_btn {
    display: flex;
    color: #EE435A;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 16px;
    justify-content: center;
  }
}
.works .more_btn.hidden {
  display: none;
}
.works .item_title {
  margin-bottom: 17px;
}
.works .row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  position: relative;
  z-index: 2;
  justify-content: space-between;
}
.works .row .work_item {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background: #FFF;
  overflow: hidden;
  padding: 23px 13px 34px 13px;
  justify-content: center;
  max-height: 300px;
}
@media (max-width: 1461px) {
  .works .row .work_item {
    max-width: 290px;
    padding: 20px;
  }
}
@media (max-width: 1129px) {
  .works .row .work_item {
    max-width: 100%;
    width: calc(50% - 5px);
  }
}
@media (max-width: 996px) {
  .works .row .work_item {
    width: 100%;
    padding-left: 36px;
  }
}
.works .row .work_item .item_img {
  margin-bottom: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1461px) {
  .works .row .work_item .item_img {
    max-height: 200px;
    max-width: 260px;
    margin: 0 auto;
  }
}
@media (max-width: 1461px) {
  .works .row .work_item .item_img img {
    width: 100%;
    height: 100%;
  }
}
.works .row .work_item .item_description {
  font-weight: 600;
  padding: 0 17px;
  max-width: 134px;
}
@media (max-width: 1129px) {
  .works .row .work_item .item_description {
    padding: 0;
  }
}
.works .row .middle_row {
  display: flex;
  flex-direction: column;
  min-width: 400px;
}
@media (max-width: 1461px) {
  .works .row .middle_row {
    min-width: max-content;
  }
}
@media (max-width: 1129px) {
  .works .row .middle_row {
    min-width: max-content;
    width: calc(50% - 5px);
  }
}
@media (max-width: 996px) {
  .works .row .middle_row {
    width: 100%;
  }
}
.works .row .middle_row .work_item {
  padding: 49px 30px 48px 30px;
}
@media (max-width: 1461px) {
  .works .row .middle_row .work_item {
    padding: 20px;
    min-height: 150px;
  }
}
@media (max-width: 1129px) {
  .works .row .middle_row .work_item {
    width: 100%;
    min-height: 145px;
  }
}
@media (max-width: 996px) {
  .works .row .middle_row .work_item {
    padding-left: 36px;
  }
}
.works .row .middle_row .work_item .item_description {
  max-width: 297px;
  padding: 0;
}
.works .row .middle_row .work_item:last-child {
  padding: 36px 30px 37px 30px;
}
@media (max-width: 1461px) {
  .works .row .middle_row .work_item:last-child {
    padding: 20px;
  }
}
@media (max-width: 996px) {
  .works .row .middle_row .work_item:last-child {
    padding-left: 36px;
  }
}
.works .row .work_item:nth-child(3) {
  padding: 19px 28px 37px 28px;
}
@media (max-width: 1461px) {
  .works .row .work_item:nth-child(3) {
    padding: 20px;
  }
}
@media (max-width: 996px) {
  .works .row .work_item:nth-child(3) {
    padding-left: 36px;
  }
}
.works .row .work_item:nth-child(3) .item_img {
  margin-bottom: 5px;
}
.works .row .work_item:nth-child(3) .item_description {
  max-width: 280px;
  padding: 0;
}
.works .row .work_item:nth-child(4) {
  padding: 28px 25px 37px 25px;
}
@media (max-width: 1461px) {
  .works .row .work_item:nth-child(4) {
    padding: 20px;
  }
}
@media (max-width: 996px) {
  .works .row .work_item:nth-child(4) {
    padding-left: 36px;
  }
}
.works .row .work_item:nth-child(4) .item_img {
  margin-bottom: 13px;
}
.works .row .work_item:nth-child(4) .item_description {
  max-width: 351px;
  padding: 0;
}
.works .bottom_row {
  margin-top: 10px;
}
@media (max-width: 1129px) {
  .works .bottom_row {
    justify-content: center;
  }
}
@media (max-width: 996px) {
  .works .bottom_row {
    display: none;
  }
}
.works .bottom_row.show {
  display: flex;
}
.works .bottom_row .left_row {
  max-width: 1020px;
}
@media (max-width: 1461px) {
  .works .bottom_row .left_row {
    max-width: 780px;
  }
}
@media (max-width: 1129px) {
  .works .bottom_row .left_row {
    max-width: 100%;
    flex-direction: column;
    width: 100%;
  }
}
.works .bottom_row .left_row .middle_row {
  flex-wrap: nowrap;
  min-width: auto;
  align-items: start;
  flex-direction: row;
}
@media (max-width: 1129px) {
  .works .bottom_row .left_row .middle_row {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 996px) {
  .works .bottom_row .left_row .middle_row {
    flex-direction: column;
  }
}
.works .bottom_row .left_row .middle_row:first-child .work_item:last-child {
  padding-right: 238px;
}
@media (max-width: 1461px) {
  .works .bottom_row .left_row .middle_row:first-child .work_item:last-child {
    padding-right: 20px;
  }
}
.works .bottom_row .left_row .middle_row:last-child .work_item:first-child {
  padding-right: 120px;
  padding-left: 26px;
}
@media (max-width: 1461px) {
  .works .bottom_row .left_row .middle_row:last-child .work_item:first-child {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 996px) {
  .works .bottom_row .left_row .middle_row:last-child .work_item:first-child {
    padding-left: 36px;
  }
}
.works .bottom_row .left_row .middle_row:last-child .work_item:last-child {
  padding-right: 156px;
}
@media (max-width: 1461px) {
  .works .bottom_row .left_row .middle_row:last-child .work_item:last-child {
    padding-right: 20px;
  }
}
.works .bottom_row .left_row .middle_row .work_item {
  padding: 36px 34px 36px 30px;
}
@media (max-width: 1461px) {
  .works .bottom_row .left_row .middle_row .work_item {
    padding: 20px;
    max-width: 390px;
  }
}
@media (max-width: 1129px) {
  .works .bottom_row .left_row .middle_row .work_item {
    max-width: 100%;
    width: calc(50% - 5px);
  }
}
@media (max-width: 996px) {
  .works .bottom_row .left_row .middle_row .work_item {
    width: 100%;
    padding-left: 36px;
  }
}
.works .bottom_row .left_row .middle_row .work_item .item_description {
  padding: 0;
  max-width: 354px;
}
.works .bottom_row .work_item.last {
  padding: 10px 48px 36px 28px;
  max-width: 400px;
  max-height: 250px;
}
@media (max-width: 1461px) {
  .works .bottom_row .work_item.last {
    padding: 20px;
    max-width: 390px;
    max-height: 300px;
  }
}
@media (max-width: 996px) {
  .works .bottom_row .work_item.last {
    max-width: 100%;
    width: 100%;
  }
}
.works .bottom_row .work_item.last .item_img {
  margin-bottom: 0;
}
.works .bottom_row .work_item.last .item_description {
  max-width: 324px;
  padding: 0;
}

.increase {
  padding: 66px 0 99px 0;
}
@media (max-width: 996px) {
  .increase {
    padding: 26px 0 47px 0;
  }
}
.increase.about_increase {
  padding: 115px 0 81px 0;
}
@media (max-width: 996px) {
  .increase.about_increase {
    padding: 44px 0 67px 0;
  }
}
.increase.about_increase .item_title {
  padding-left: 61px;
}
@media (max-width: 1461px) {
  .increase.about_increase .item_title {
    padding-left: 0;
  }
}
.increase.about_increase .row {
  padding-left: 61px;
}
@media (max-width: 1461px) {
  .increase.about_increase .row {
    padding-left: 0;
  }
}
@media (max-width: 996px) {
  .increase.about_increase .row {
    padding-left: 14px;
  }
}
.increase.about_increase .row .item_title {
  padding-left: 0;
}
.increase.about_increase .row .increase_item {
  max-width: 343px;
}
@media (max-width: 1461px) {
  .increase.about_increase .row .increase_item {
    max-width: 285px;
  }
}
@media (max-width: 996px) {
  .increase.about_increase .row .increase_item {
    width: 100%;
    max-width: 340px;
    padding: 33px 39px 49px 24px;
  }
}
.increase.about_increase .row .increase_item:last-child {
  max-width: 310px;
}
@media (max-width: 1461px) {
  .increase.about_increase .row .increase_item:last-child {
    max-width: 285px;
  }
}
@media (max-width: 996px) {
  .increase.about_increase .row .increase_item:last-child {
    width: 100%;
    max-width: 340px;
    padding: 33px 39px 49px 24px;
  }
}
.increase .item_title {
  margin-bottom: 25px;
}
@media (max-width: 996px) {
  .increase .item_title {
    margin-bottom: 47px;
  }
}
.increase .item_title .section_title {
  font-size: 38px;
}
@media (max-width: 996px) {
  .increase .item_title .section_title {
    font-size: 24px;
  }
}
.increase .row {
  gap: 10px;
  align-items: stretch;
}
@media (max-width: 996px) {
  .increase .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    padding-left: 14px;
    padding-right: 14px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.increase .row .increase_item {
  width: 100%;
  flex: 0 0 auto;
  max-width: 350px;
  border-radius: 30px;
  background: #EFF2F5;
  overflow: hidden;
  padding: 33px 49px 49px 29px;
}
@media (max-width: 1461px) {
  .increase .row .increase_item {
    padding: 20px;
    max-width: 285px;
  }
}
@media (max-width: 1129px) {
  .increase .row .increase_item {
    max-width: 100%;
    width: calc(50% - 5px);
  }
}
@media (max-width: 996px) {
  .increase .row .increase_item {
    width: 100%;
    max-width: 340px;
    padding: 33px 39px 49px 24px;
  }
}
.increase .row .increase_item:first-child .item_title {
  padding-left: 5px;
}
@media (max-width: 996px) {
  .increase .row .increase_item:first-child .item_title {
    margin-bottom: 118px;
  }
}
.increase .row .increase_item:first-child .item_title .item_description {
  font-weight: 800;
}
.increase .row .increase_item:first-child .item_title .item_description:last-child {
  font-size: 14px;
  font-weight: 400;
}
.increase .row .increase_item:first-child .item_info {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.increase .row .increase_item:first-child .item_info li {
  display: flex;
  align-items: center;
  gap: 0 21px;
}
.increase .row .increase_item:first-child .item_info li svg {
  flex: 0 0 auto;
}
.increase .row .increase_item:first-child .item_info li span {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.increase .row .increase_item:nth-child(n+2) {
  display: flex;
  align-items: end;
  justify-content: center;
  padding-right: 29px;
}
.increase .row .increase_item:nth-child(n+2) .item_title {
  gap: 75px 0;
  margin-top: auto;
  margin-bottom: 0;
  align-items: center;
  text-align: center;
}
.increase .row .increase_item:nth-child(n+2) .item_title .item_description {
  font-size: 108px;
  font-style: normal;
  font-weight: 250;
  line-height: 114.84%; /* 124.027px */
  text-transform: uppercase;
}
.increase .row .increase_item:nth-child(n+2) .item_title .item_description:last-child {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 114.84%; /* 22.968px */
  text-transform: none;
}
.increase .row .increase_item:nth-child(3) {
  background: #000;
}
.increase .row .increase_item:nth-child(3) .item_title {
  gap: 119px;
}
.increase .row .increase_item:nth-child(3) .item_title .item_description {
  color: #FFF;
  font-family: Gilroy;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 114.84%; /* 55.123px */
  text-transform: uppercase;
}
@media (max-width: 1461px) {
  .increase .row .increase_item:nth-child(3) .item_title .item_description {
    font-size: 45px;
  }
}
.increase .row .increase_item:nth-child(3) .item_title .item_description:last-child {
  color: #FFF;
}
.increase .row .increase_item:nth-child(4) .item_title {
  gap: 73px 0;
}
.increase .row .increase_item:nth-child(4) .item_title .item_description {
  font-size: 88px;
}

.object {
  padding-bottom: 53px;
}
.object.businnes_object {
  margin-left: var(--container-left);
  padding-left: 62px;
  padding-bottom: 25px;
  padding-top: 59px;
  border-radius: 50px 0 0 50px;
  background: #2052C4;
  box-shadow: 0 -6px 24px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 996px) {
  .object.businnes_object {
    padding: 48px 39px 43px 39px;
    overflow: hidden;
    margin-left: 14px;
  }
}
.object.businnes_object .item_title {
  margin-bottom: 35px;
}
@media (max-width: 996px) {
  .object.businnes_object .item_title {
    max-width: 350px;
  }
}
.object.businnes_object .item_title span {
  font-size: 30px;
  color: #fff;
  font-weight: 900;
  max-width: 308px;
}
@media (max-width: 996px) {
  .object.businnes_object .item_title span {
    max-width: 350px;
  }
}
.object.businnes_object .swiper_btns {
  margin-right: var(--container-right);
}
.object.businnes_object .swiper_btns .left_btn path, .object.businnes_object .swiper_btns .right_btn path {
  fill: #fff !important;
}
.object.businnes_object .object_swiper {
  margin-left: 0;
}
@media (max-width: 996px) {
  .object.businnes_object .object_swiper {
    padding: 0;
    padding-left: 39px;
    margin-left: calc(50% - 50vw);
  }
}
.object.businnes_object .object_swiper .swiper-wrapper {
  align-items: stretch;
}
.object.businnes_object .object_swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item {
  width: 420px !important;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 996px) {
  .object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item {
    padding: 30px 25px 11px 25px;
    width: 325px !important;
  }
}
.object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_title {
  color: #2052C4;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 36px;
  line-height: 18px; /* 100% */
}
@media (max-width: 996px) {
  .object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_title {
    max-width: 100%;
  }
}
.object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_information {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-bottom: 40px;
}
@media (max-width: 996px) {
  .object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_information {
    margin-bottom: 21px;
  }
}
.object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_information li {
  display: flex;
  align-items: start;
  gap: 0 8px;
}
.object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_information li svg {
  flex: 0 0 auto;
}
.object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_information li span {
  color: #2052C4;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 112.5% */
}
.object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_img {
  height: auto;
  border-radius: 20px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 360px;
  margin-top: auto;
  margin-bottom: 0;
}
@media (max-width: 996px) {
  .object.businnes_object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_img {
    width: 100%;
  }
}
.object .item_title {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 996px) {
  .object .item_title {
    max-width: 124px;
    margin-bottom: 16px;
  }
}
@media (max-width: 996px) {
  .object .item_title span {
    font-weight: 800;
  }
}
.object .item_title .swiper_btns {
  display: flex;
  align-items: center;
  gap: 0 17px;
}
@media (max-width: 996px) {
  .object .item_title .swiper_btns {
    display: none;
  }
}
.object .item_title .swiper_btns svg {
  cursor: pointer;
}
.object .object_swiper {
  margin-left: var(--container-left);
  overflow-y: visible;
}
@media (max-width: 996px) {
  .object .object_swiper {
    overflow: scroll;
    overflow-y: visible;
    scrollbar-width: none;
    padding-left: 14px;
    padding-right: 14px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media (max-width: 996px) {
  .object .object_swiper .swiper-wrapper {
    gap: 20px;
  }
}
.object .object_swiper .swiper-wrapper .swiper-slide {
  width: max-content !important;
  transition: transform 0.5s ease;
}
.object .object_swiper .swiper-wrapper .swiper-slide.swiper-slide-active .object_item {
  width: 750px;
}
@media (max-width: 1129px) {
  .object .object_swiper .swiper-wrapper .swiper-slide.swiper-slide-active .object_item {
    width: 350px;
  }
}
@media (max-width: 996px) {
  .object .object_swiper .swiper-wrapper .swiper-slide.swiper-slide-active .object_item {
    width: 360px;
  }
}
.object .object_swiper .swiper-wrapper .swiper-slide .object_item {
  width: 350px;
  transition: 0.5s ease;
}
@media (max-width: 996px) {
  .object .object_swiper .swiper-wrapper .swiper-slide .object_item {
    width: 360px;
  }
}
.object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_img {
  border-radius: 30px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
  height: 417px;
  transition: 0.5s all ease;
}
@media (max-width: 996px) {
  .object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_img {
    width: 100%;
    height: 360px;
  }
}
.object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 996px) {
  .object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_info {
    gap: 16px 0;
  }
}
.object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_info .item_description {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 114.84%; /* 27.562px */
}
@media (max-width: 996px) {
  .object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_info .item_description {
    font-size: 20px;
  }
}
.object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_info .item_numbers {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_info .item_numbers span:first-child {
  font-size: 38px;
}
.object .object_swiper .swiper-wrapper .swiper-slide .object_item .item_info .item_numbers span {
  color: #8396AE;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 114.84%; /* 32.155px */
  text-transform: uppercase;
}

.stage {
  padding: 77px 0 47px 0;
  background: #2052C4;
  position: relative;
}
@media (max-width: 996px) {
  .stage {
    padding: 43px 0 90px 0;
  }
}
@media (max-width: 996px) {
  .stage .container {
    position: relative;
    z-index: 2;
  }
}
.stage .item_title.logo {
  width: 100%;
  max-width: 404px;
  max-height: 69px;
  margin: 0;
}
@media (max-width: 996px) {
  .stage .item_title.logo {
    width: 165px;
    height: 28px;
  }
}
.stage .item_title.logo img {
  width: 100%;
  height: 100%;
}
.stage .item_title {
  margin: 126px 0 53px 0;
}
@media (max-width: 996px) {
  .stage .item_title {
    margin: 176px 0 25px 0;
    align-items: start;
  }
}
.stage .item_title .section_title {
  font-size: 38px;
  color: #fff;
}
@media (max-width: 996px) {
  .stage .item_title .section_title {
    font-size: 24px;
    max-width: 246px;
    align-items: start;
    text-align: start;
  }
}
.stage .row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1129px) {
  .stage .row {
    z-index: 5;
  }
}
@media (max-width: 996px) {
  .stage .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    padding-left: 14px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-right: 14px;
  }
}
.stage .row .stage_item {
  width: 100%;
  max-width: 350px;
  height: 240px;
  border-radius: 30px;
  background: rgba(239, 242, 245, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(20px);
}
@media (max-width: 1461px) {
  .stage .row .stage_item {
    max-width: 285px;
  }
}
@media (max-width: 1129px) {
  .stage .row .stage_item {
    max-width: 100%;
    width: calc(50% - 5px);
  }
}
@media (max-width: 996px) {
  .stage .row .stage_item {
    width: 100%;
    max-width: 260px;
    height: 170px;
    flex: 0 0 auto;
  }
}
.stage .row .stage_item .item_description {
  max-width: 329px;
  text-align: center;
  font-weight: 600;
  line-height: 114.84%; /* 22.968px */
  color: #fff;
}
.stage .item_img {
  position: absolute;
  right: 104px;
  top: -102px;
}
@media (max-width: 1461px) {
  .stage .item_img {
    right: -104px;
  }
}
@media (max-width: 1129px) {
  .stage .item_img {
    top: auto;
    bottom: -4px;
  }
}
@media (max-width: 996px) {
  .stage .item_img {
    width: 335px;
    height: 546px;
    bottom: auto;
    top: -75px;
    right: 0;
  }
}
@media (max-width: 996px) {
  .stage .item_img img {
    object-fit: contain;
    display: none;
  }
}
.stage .item_img img.mobile {
  display: none;
}
@media (max-width: 996px) {
  .stage .item_img img.mobile {
    display: block;
  }
}

.company {
  padding: 141px 0 127px 0;
}
@media (max-width: 996px) {
  .company {
    position: relative;
    padding: 356px 0 57px 0;
  }
}
.company .row {
  display: flex;
  align-items: end;
  gap: 20px 64px;
}
.company .row .item_left {
  max-width: 610px;
  max-height: 616px;
  width: 100%;
  overflow: hidden;
  border-radius: 50px;
  height: 100%;
}
@media (max-width: 996px) {
  .company .row .item_left {
    max-width: 400px;
    max-height: 404px;
    margin: auto;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    overflow: hidden;
  }
}
.company .row .item_left img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
}
.company .row .item_right {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  padding-bottom: 50px;
}
@media (max-width: 1461px) {
  .company .row .item_right {
    max-width: 490px;
  }
}
@media (max-width: 1129px) {
  .company .row .item_right {
    max-width: 100%;
  }
}
@media (max-width: 996px) {
  .company .row .item_right {
    gap: 12px 0;
    padding: 0;
  }
}
@media (max-width: 996px) {
  .company .row .item_right .item_description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

.how_works {
  padding-bottom: 116px;
}
@media (max-width: 996px) {
  .how_works {
    padding-bottom: 63px;
  }
}
.how_works .item_title {
  margin-bottom: 33px;
}
@media (max-width: 996px) {
  .how_works .item_title {
    margin-bottom: 17px;
  }
}
.how_works .row {
  align-items: stretch;
  gap: 10px;
}
@media (max-width: 996px) {
  .how_works .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    padding-left: 14px;
    padding-right: 14px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.how_works .row .works_item {
  width: 100%;
  max-width: 350px;
  border-radius: 30px;
  background: #EFF2F5;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 25px;
}
@media (max-width: 1461px) {
  .how_works .row .works_item {
    max-width: 285px;
    padding: 20px;
  }
}
@media (max-width: 1129px) {
  .how_works .row .works_item {
    max-width: 100%;
    width: calc(50% - 5px);
  }
}
@media (max-width: 996px) {
  .how_works .row .works_item {
    max-width: 350px;
    width: 100%;
    flex: 0 0 auto;
  }
}
.how_works .row .works_item .item_img {
  width: 100%;
  height: 100%;
  max-width: 101px;
  max-height: 101px;
  position: absolute;
  left: 11px;
  top: 25px;
}
.how_works .row .works_item .item_img svg {
  width: 100%;
  height: 100%;
}
.how_works .row .works_item .item_description {
  margin-top: 215px;
  max-width: 293px;
}
@media (max-width: 1129px) {
  .how_works .row .works_item .item_description {
    max-width: 100%;
  }
}
.how_works .row .works_item .blue_btn {
  max-width: 300px;
  margin-top: 33px;
}
@media (max-width: 1129px) {
  .how_works .row .works_item .blue_btn {
    max-width: 100%;
  }
}

.mission {
  padding: 130px 0 73px 0;
  background-image: url(../img/mission_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
@media (max-width: 996px) {
  .mission {
    padding: 51px 0 56px 0;
    background-position: center center;
  }
}
.mission .row {
  align-items: end;
  gap: 20px 61px;
}
@media (max-width: 1129px) {
  .mission .row {
    flex-direction: column-reverse;
    align-items: start;
    gap: 40px 0;
  }
}
@media (max-width: 996px) {
  .mission .row {
    gap: 184px 0;
  }
}
.mission .row .left_content {
  padding: 58px 69px 53px 41px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  backdrop-filter: blur(7px);
  width: 100%;
  flex: 0 0 auto;
  max-width: 790px;
}
@media (max-width: 1461px) {
  .mission .row .left_content {
    max-width: 600px;
  }
}
@media (max-width: 1129px) {
  .mission .row .left_content {
    max-width: 100%;
  }
}
@media (max-width: 996px) {
  .mission .row .left_content {
    padding: 36px 26px 28px 26px;
  }
}
.mission .row .left_content .section_title {
  font-size: 38px;
  line-height: 112.86%; /* 42.887px */
  color: #fff;
  font-weight: 800;
  margin-bottom: 55px;
}
@media (max-width: 996px) {
  .mission .row .left_content .section_title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.mission .row .left_content .item_inputs {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px 0;
  margin-bottom: 61px;
}
@media (max-width: 996px) {
  .mission .row .left_content .item_inputs {
    margin-bottom: 17px;
  }
}
.mission .row .left_content .item_inputs input {
  border: none;
  outline: none;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 24px 33px;
  color: #FFF;
  font-family: Gilroy;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 114.84%; /* 32.155px */
  height: 80px;
}
@media (max-width: 996px) {
  .mission .row .left_content .item_inputs input {
    height: 60px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 114.84%; /* 20.671px */
    padding-left: 22px;
  }
}
.mission .row .left_content .item_inputs input::placeholder {
  color: #FFF;
  font-family: Gilroy;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 114.84%; /* 32.155px */
}
@media (max-width: 996px) {
  .mission .row .left_content .item_inputs input::placeholder {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 114.84%; /* 20.671px */
  }
}
.mission .row .left_content .blue_btn {
  border: none;
  outline: none;
  max-width: 250px;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 996px) {
  .mission .row .left_content .blue_btn {
    max-width: 100%;
    height: 40px;
    font-size: 14px;
  }
}
.mission .row .right_content {
  display: flex;
  flex-direction: column;
  gap: 118px 0;
  max-width: 563px;
}
@media (max-width: 1461px) {
  .mission .row .right_content {
    max-width: 495px;
  }
}
@media (max-width: 1129px) {
  .mission .row .right_content {
    max-width: 100%;
  }
}
@media (max-width: 996px) {
  .mission .row .right_content {
    gap: 37px 0;
  }
}
.mission .row .right_content .item_info {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
@media (max-width: 996px) {
  .mission .row .right_content .item_info {
    gap: 8px 0;
  }
}
.mission .row .right_content .item_info .section_title.bold {
  color: #FFF;
  line-height: 114.84%; /* 55.123px */
  font-size: 48px;
}
@media (max-width: 996px) {
  .mission .row .right_content .item_info .section_title.bold {
    font-size: 24px;
  }
}
.mission .row .right_content .item_info .item_description {
  color: #FFF;
  font-family: Gilroy;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 114.84%; /* 32.155px */
}
@media (max-width: 996px) {
  .mission .row .right_content .item_info .item_description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 114.84%; /* 16.078px */
  }
}

footer {
  background: #EFF2F5;
  padding: 68px 0 49px 0;
}
@media (max-width: 996px) {
  footer {
    padding: 70px 0 40px 0;
  }
}
footer .footer_logo {
  width: max-content;
  height: max-content;
  margin-bottom: 64px;
  display: block;
}
@media (max-width: 996px) {
  footer .footer_logo {
    margin-bottom: 57px;
  }
}
footer .footer_logo svg {
  width: 212px;
  height: 36px;
}
footer .row {
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1129px) {
  footer .row {
    gap: 40px 0;
  }
}
@media (max-width: 996px) {
  footer .row {
    gap: 70px 0;
  }
}
footer .row .item_info {
  display: flex;
  flex-direction: column;
  gap: 21px 0;
}
@media (max-width: 1129px) {
  footer .row .item_info:first-child {
    width: 100%;
  }
}
footer .row .item_info:nth-child(2) .link_row {
  flex-direction: column;
  gap: 38px 0;
}
footer .row .item_info:nth-child(2) .link_row .link li:first-child,
footer .row .item_info:nth-child(2) .link_row .links li:first-child {
  display: none;
}
footer .row .item_info:nth-child(2) .link_row .networks {
  display: flex;
  align-items: center;
  gap: 10px 25px;
}
footer .row .item_info:nth-child(3) {
  gap: 11px 0;
}
@media (max-width: 996px) {
  footer .row .item_info:nth-child(3) {
    width: 100%;
  }
}
footer .row .item_info:nth-child(3) .information {
  padding: 19px 44px 23px 25px;
  border-radius: 30px;
  background: #8396AE;
  width: 100%;
}
footer .row .item_info:nth-child(3) .information .title {
  color: #FFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px; /* 120% */
}
footer .row .item_info:nth-child(3) .information .description {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  margin-bottom: 15px;
  display: block;
}
footer .row .item_info:nth-child(3) .information .description:last-child {
  margin-bottom: 0;
}
footer .row .item_info .item_title {
  color: #474747;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 14px; /* 116.667% */
  text-transform: uppercase;
}
footer .row .item_info .link_row {
  gap: 20px 38px;
}
footer .row .item_info .link_row .links {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
footer .row .item_info .link_row .links li a {
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 100% */
}
footer .bottom_row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 60px;
  width: 100%;
  flex: 0 0 100%;
  text-align: center;
  margin-top: 50.5px;
}
@media (max-width: 1129px) {
  footer .bottom_row {
    gap: 20px 60px;
  }
}
@media (max-width: 996px) {
  footer .bottom_row {
    flex-direction: column;
    gap: 20px 0;
    margin-top: 32px;
  }
}
footer .bottom_row .info_link {
  color: #4C4C4C;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 100% */
}
footer .bottom_row .info_link:last-child {
  opacity: 0.5;
}
footer .bottom_row .info_link:last-child span {
  text-decoration: underline;
}
footer .bottom_row > span.info_link {
  display: none;
}

@media (min-width: 997px) {
  footer > .container > .row > .item_info:last-of-type {
    margin-left: auto;
  }
}

.doing {
  margin-top: 198px;
  position: relative;
}
@media (max-width: 996px) {
  .doing {
    margin-top: 282px;
  }
}
.doing .row {
  display: flex;
  align-items: end;
  position: relative;
}
.doing .row .item_img {
  width: 100%;
  max-width: 443px;
  height: 787px;
  border-radius: 40px;
  overflow: hidden;
  position: absolute;
  left: 61px;
  top: -233px;
}
@media (max-width: 1461px) {
  .doing .row .item_img {
    left: 30px;
  }
}
@media (max-width: 1129px) {
  .doing .row .item_img {
    left: 0;
  }
}
@media (max-width: 996px) {
  .doing .row .item_img {
    width: 260px;
    height: 463px;
    left: -58px;
    top: -400px;
  }
}
.doing .row .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doing .row .item_info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 38px 0;
  margin-left: 572px;
  max-width: 800px;
}
@media (max-width: 1461px) {
  .doing .row .item_info {
    margin-left: 540px;
  }
}
@media (max-width: 1129px) {
  .doing .row .item_info {
    margin-left: 500px;
  }
}
@media (max-width: 996px) {
  .doing .row .item_info {
    margin-left: 0;
    gap: 44px 0;
  }
}
@media (max-width: 996px) {
  .doing .row .item_info .item_title {
    margin-bottom: 13px;
  }
}
.doing .row .item_info .item_title .section_title {
  font-size: 34px;
  line-height: 34px;
}
@media (max-width: 996px) {
  .doing .row .item_info .item_title .section_title {
    margin-left: 207px;
    font-size: 24px;
    line-height: 24px;
  }
}
.doing .row .item_info .item_description {
  margin-bottom: 12px;
  line-height: 24px;
}
.doing .row .item_info .item_description span {
  font-weight: 600;
}
.doing .row .item_info .item_description:last-child {
  margin-bottom: 0;
}
.doing .section_title.image {
  margin-top: 124px;
  margin-left: 61px;
  font-size: 70px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 70px */
  text-transform: uppercase;
  background: url(../img/text_bg.jpg) lightgray 50%/cover no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1461px) {
  .doing .section_title.image {
    margin-left: 30px;
    font-size: 50px;
  }
}
@media (max-width: 1129px) {
  .doing .section_title.image {
    margin-left: 0;
  }
}
@media (max-width: 996px) {
  .doing .section_title.image {
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%; /* 30px */
    text-transform: uppercase;
    margin-top: 44px;
  }
}

.owner {
  padding: 65px 0 10px 0;
}
@media (max-width: 996px) {
  .owner {
    padding: 68px 0 0 0;
  }
}
.owner .row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 1129px) {
  .owner .row {
    gap: 10px 0;
  }
}
@media (max-width: 996px) {
  .owner .row {
    overflow: scroll;
    overflow-y: visible;
    scrollbar-width: none;
    padding-left: 14px;
    padding-right: 14px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    flex-wrap: nowrap;
    gap: 10px;
  }
}
.owner .row .owner_item {
  width: calc(25% - 3.333333px);
  flex: 0 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 415px;
  justify-content: space-between;
  padding: 32px 0 40px 0;
  border-radius: 30px;
  align-items: start;
  background: #EFF2F5;
}
@media (max-width: 1129px) {
  .owner .row .owner_item {
    width: calc(50% - 5px);
  }
}
@media (max-width: 996px) {
  .owner .row .owner_item {
    width: 100%;
    max-width: 350px;
  }
}
.owner .row .owner_item .item_img {
  width: auto;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1461px) {
  .owner .row .owner_item .item_img {
    width: 100%;
  }
}
@media (max-width: 1129px) {
  .owner .row .owner_item .item_img {
    height: 225px;
  }
}
@media (max-width: 1461px) {
  .owner .row .owner_item .item_img img {
    width: 100%;
    height: 100%;
    display: flex;
  }
}
.owner .row .owner_item .item_description {
  color: #000;
  font-size: 20px;
  font-style: normal;
  padding: 0 30px;
  font-weight: 400;
  line-height: 114.84%; /* 22.968px */
}

.approach {
  padding: 10px 0 110px 0;
}
@media (max-width: 1129px) {
  .approach {
    padding-top: 83px;
    padding-bottom: 61px;
  }
}
.approach .row {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1129px) {
  .approach .row {
    gap: 71px 0;
  }
}
.approach .row .approach_item {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px 38px;
}
@media (max-width: 1129px) {
  .approach .row .approach_item {
    gap: 20px 20px;
  }
}
@media (max-width: 996px) {
  .approach .row .approach_item {
    flex-direction: column;
    gap: 27px;
  }
}
.approach .row .approach_item:last-child {
  flex-direction: row-reverse;
  justify-content: start;
}
@media (max-width: 996px) {
  .approach .row .approach_item:last-child {
    flex-direction: column;
  }
}
.approach .row .approach_item .item_left {
  padding-bottom: 49px;
  display: flex;
  flex-direction: column;
  gap: 45px 0;
  max-width: 619px;
}
@media (max-width: 996px) {
  .approach .row .approach_item .item_left {
    max-width: 100%;
    padding-bottom: 0;
    gap: 10px 0;
  }
}
.approach .row .approach_item .item_left .item_title .section_title {
  font-size: 38px;
}
@media (max-width: 996px) {
  .approach .row .approach_item .item_left .item_title .section_title {
    font-size: 24px;
  }
}
.approach .row .approach_item .item_left .item_description {
  display: flex;
  flex-direction: column;
  gap: 55px 0;
  font-size: 20px;
}
@media (max-width: 996px) {
  .approach .row .approach_item .item_left .item_description {
    gap: 35px;
    font-size: 14px;
  }
}
.approach .row .approach_item .item_left .item_description span {
  font-weight: 600;
}
@media (max-width: 1129px) {
  .approach .row .approach_item .item_right {
    width: 100%;
    height: 100%;
    max-width: 500px;
    flex: 0 0 auto;
  }
}
@media (max-width: 996px) {
  .approach .row .approach_item .item_right {
    max-width: 100%;
  }
}
@media (max-width: 1129px) {
  .approach .row .approach_item .item_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* AjaxForm validation states */
.urb-callback-form .item_inputs input.is-error {
  border: 1px solid #d73939;
  outline: none;
}
.urb-callback-form__errors {
  margin-top: 8px;
}
.urb-callback-form__errors p {
  margin: 0 0 3px;
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.urb-callback-form__errors p:empty {
  display: none;
}
.urb-callback-form__success {
  display: none;
}

/* ─── Success modal ─────────────────────────────────────────────────────────── */
@keyframes urbOverlayIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes urbModalIn    { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes urbOverlayOut { from { opacity: 1; } to { opacity: 0; } }

.urb-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 30, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: urbOverlayIn 0.22s ease both;
}
.urb-success-overlay.is-closing {
  animation: urbOverlayOut 0.26s ease both;
}
.urb-success-overlay.is-closing .urb-success-modal {
  animation: urbOverlayOut 0.22s ease both;
}
.urb-success-modal {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 420px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  animation: urbModalIn 0.28s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}
.urb-success-modal__icon {
  margin-bottom: 20px;
  line-height: 0;
}
.urb-success-modal__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #0d1b3e;
  line-height: 1.2;
}
.urb-success-modal__text {
  margin: 0 0 28px;
  font-size: 15px;
  color: #5a6478;
  line-height: 1.55;
}
.urb-success-modal__close {
  width: 100%;
}
body.is-modal-open {
  overflow: hidden;
}
/*# sourceMappingURL=main.css.map */