:root {
  --default-text-color: #252525;
  --default-text-color-red: #D90912;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

@font-face {
  font-family: 'Pragmatica';
  src: url('/local/templates/movement-first/fonts/Pragmatica/Pragmatica-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Pragmatica';
  src: url('/local/templates/movement-first/fonts/Pragmatica/Pragmatica-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Pragmatica';
  src: url('/local/templates/movement-first/fonts/Pragmatica/Pragmatica-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Pragmatica Extended';
  src: url('/local/templates/movement-first/fonts/PragmaticaExtended/PragmaticaExtended-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Pragmatica Extended';
  src: url('/local/templates/movement-first/fonts/PragmaticaExtended/PragmaticaExtended-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Pragmatica Extended';
  src: url('/local/templates/movement-first/fonts/PragmaticaExtended/PragmaticaExtended-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

.main-page-v5 {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  box-sizing: border-box;
  background: #F8FAFE;
}

.panel-v5 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1340px;
  max-width: 100%;
  z-index: 101;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 4px 50px;
  gap: 16px;
}

.panel-v5__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.panel-v5__text {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: rgba(255,255,255,.7);
  cursor: pointer;
}

.hero-v5 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 120px 0 40px;
}

.hero-v5__bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat url(/images/main-page/hero_bg.png);
  border-radius: 50px;
  overflow: hidden;
}

.hero-v5__bg-img {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat url(/images/main-page/hero_bg.png);
  overflow: hidden;
}

.hero-v5__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px 0;
}

.hero-v5__title {
  line-height: 1.1;
  text-transform: uppercase;
  color: black;
  max-width: 900px;
  margin-bottom: 24px;
  letter-spacing: normal;
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 60px;
}

*.black{
  color: black
}

*.red{
  color: var(--default-text-color-red)
}

.hero-v5__subtitle {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: black;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-v5__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: var(--default-text-color-red);
  padding: 0 36px;
  width: 16.0625rem;
  height: 3.25rem;
  border-radius: 80px;
  text-decoration: none;
  -webkit-transition: background .3s;
  transition: background .3s;
}
.hero-v5__btn:hover { background: #c00a0a; }
.hero-v5__btn-arrow { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; }

.hero-v5__stats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.hero-v5__stat-img {
  max-width: 212px;
  max-height: 56px;
  padding-bottom: 4em;
}

.hero-v5__stat-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.hero-v5__stat-num {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--default-text-color-red);
  display: block;
  white-space: nowrap;
}

.hero-v5__stat-label {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: black;
}

.quote-v5 {
  padding: 50px 50px 0;
  text-align: center;
}

.quote-v5__text {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.quote-v5__desc{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}

.quote-v5__desc-text-element {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #1A1A1A;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.quote-v5__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.quote-v5__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: space;
  -webkit-align-items: space;
  -ms-flex-align: space;
  align-items: space;
}

.quote-v5__tag__check {
  margin-right: 10px
}

.quote-v5__tag__text {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  color: var(--default-text-color)
}

.grey-line-horizontal {
  width: 1240px;
  max-width: 100%;
  height: 0.1em;
  opacity: 0.1;
  background: var(--default-text-color);
  margin: 0 auto;
}

.grey-line-vertical {
  width: 0.1em;
  opacity: 0.1;
  height: 100%;
  margin-left: 1em;
  background: var(--default-text-color);
}

.quote-v5__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.quote-v5__cta-text {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  color: #1A1A1A;
}

.quote-v5__cta-bold {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: #E10B0B;
}

.stats-v5 {
  padding: 0 50px;
}

.stats-v5__intro {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 50px;
}

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

.stats-v5__item-num {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.2;
  color: #fff;
  display: block;
}

.stats-v5__item-label {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(255,255,255,.8);
}

.features-v5 {
  padding: 80px 50px;
  position: relative;
  overflow: hidden;
}

.features-v5::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  right: -150px;
  bottom: -150px;
  background: linear-gradient(70deg, #214FE2 0%, #ffffff 50%, #E53130 100%);
  filter: blur(150px);
  z-index: 0;
  opacity: 0.4;
}

.features-v5 > * {
  position: relative;
  z-index: 1;
}

.features-v5__container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}

.features-v5__title {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 50px;
}

.features-v5__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.features-v5__block {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.features-v5__block-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.features-v5__block-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.features-v5__block h3 {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.features-v5__block p {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #4A4A4A;
}

.features-v5__block--cta {
  background: center / cover no-repeat url(../../components/bitrix/news.list/main-page-features/template/images/girl_in_sky.jpg);
  min-height: 250px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.features-v5__block--cta h3 {
  font-family: Pragmatica;
  font-weight: 700;
  font-style: Bold;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.features-v5__block h3 {
  font-family: Pragmatica;
  font-weight: 700;
  font-style: Bold;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.features-v5__block--cta p{
  font-family: Pragmatica;
  font-weight: 400;
  font-style: Book;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--default-text-color);
}

.features-v5__cta-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #fff;
  color: #E53130;
  padding: 0 36px;
  width: 16.0625rem;
  height: 3.25rem;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 14px;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.features-v5__cta-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

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

.features-v5__stat {
  text-align: center;
}

.features-v5__stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.features-v5__stat-icon svg,
.features-v5__stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.features-v5__stat-value {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--default-text-color-red);
  margin-bottom: 8px;
  white-space: nowrap;
}

.features-v5__stat-unit {
  font-size: 20px;
  font-weight: 500;
}

.features-v5__stat-label {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--default-text-color);
}

.about-movement {
  padding: 50px;
}

.about-movement__container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-movement__video-block {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 40px;
  background: center/cover no-repeat url(/images/main-page/hero_bg.png);
}

.about-movement__video-block .complex_video {
  width: 100%;
}

.about-movement__video-block .complex_video > video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.about-movement__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}

.about-movement__title {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin: 0 0 40px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-movement__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E53130;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.about-movement__play-btn:hover {
  transform: scale(1.1);
  background: #c42827;
}

.about-movement__play-btn svg {
  margin-left: 4px;
}

.about-movement__description {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--default-text-color);
  margin: 0;
  font-family: Pragmatica Extended;
  font-style: Bold;
  line-height: 120%;
  letter-spacing: 0%;
}

.projects-v5 {
  margin-top: 3em;
  padding: 0 50px 80px;
}

.projects-v5__container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}

.projects-v5__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.projects-v5__title {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #1A1A1A;
}

.projects-v5__all-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  width: 13.75rem;
  height: 3.75rem;
  border: 2px solid #E10B17;
  border-radius: 50px;
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  color: #E10B17;
  text-decoration: none;
}

.projects-v5__tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.projects-v5__tab {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  text-align: center;
  color: #E10B17;
  width: 13.75rem;
  height: 3.75rem;
  border-radius: 50px;
  border: 1px solid #E10B17;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.projects-v5__tab.active {
  background: #E10B17;
  color: #fff;
}

.projects-v5__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.projects-v5__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.projects-v5__card-img {
  height: 280px;
  background: linear-gradient(135deg, #e8edf5 0%, #d0d9e8 100%);
}

.projects-v5__card-title {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #1A1A1A;
  padding: 30px;
}

.projects-v5__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.projects-v5__slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  scroll-snap-type: x mandatory;
}

.projects-v5__slider-track::-webkit-scrollbar {
  display: none;
}

.projects-v5__slider-card {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
}

.projects-v5__slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projects-v5__slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #E5E5E5;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  padding: 0;
}

.projects-v5__slider-btn:hover {
  background: #F5F5F5;
  border-color: #214FE2;
  color: #214FE2;
}

.news-v5 {
  padding: 0 50px 100px;
}

body .news-v5__container {
  box-sizing: content-box;
  max-width: 1400px;
  width: calc(100% - 100px);
  margin: auto auto 100px;
  padding: 0 20px;
}

.news-v5__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.news-v5__title {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #1A1A1A;
}

.news-v5__all-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  width: 13.75rem;
  height: 3.75rem;
  border: 2px solid #E10B17;
  border-radius: 50px;
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  color: #E10B17;
  text-decoration: none;
}

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

.news-v5__card {
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.news-v5__card-img {
  width: 100%;
  height: 17.5rem;
  border-radius: 50px 50px 0 0;
  background: #FFFFFF;
}

.news-v5__card-body { padding: 24px; background: #FFFFFF; border-radius: 0 0 50px 50px; }

.news-v5__card-date {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #6F6F6F;
  display: block;
  margin-bottom: 8px;
}

.news-v5__card-title {
  font-family: Pragmatica;
  font-weight: 400;
  font-style: Book;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
}

.questions-v5 {
  padding: 0 50px 50px;
}

.questions-v5__container {
  max-width: 1400px;
  max-height: 350px;
  margin: 0 auto;
}

.questions-v5__content {
  background: #C41E24;
  border-radius: 32px;
  padding-left: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.8fr 1.2fr;
  grid-template-columns: 0.8fr 1.2fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 350px;
}

.questions-v5__left {
  position: relative;
  z-index: 2;
}

.questions-v5__title {
  font-family: Pragmatica Extended;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
}

.questions-v5__text {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
}

.questions-v5__btn {
  display: inline-block;
  padding: 18px 40px;
  background: #fff;
  color: #C41E24;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Pragmatica', sans-serif;
  font-weight: 700;
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.2s, box-shadow 0.2s;
  transition: -webkit-transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s;
}

.questions-v5__btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.questions-v5__right {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.questions-v5__right img {
  max-width: 100%;
  height: auto;
}

.regions-v5 {
  padding: 0 50px 80px;
}

.regions-v5__container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.regions-v5__left {
  position: relative;
  z-index: 2;
}

.regions-v5__title {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 30px;
}

.regions-v5__search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  margin-bottom: 40px;
  gap: 12px;
  position: relative;
  z-index: 5;
}

.regions-v5__suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 8px;
  max-height: 260px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 1000;
}

.regions-v5__suggest-item {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Pragmatica', sans-serif;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.regions-v5__suggest-item:hover,
.regions-v5__suggest-item_active {
  background: #f0f3ff;
  color: #2B4CD9;
}

.regions-v5__search-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.regions-v5__search-input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Pragmatica', sans-serif;
  font-size: 16px;
  color: #000;
  background: transparent;
  min-width: 0;
}

.regions-v5__search-input::placeholder {
  color: #888;
}

.regions-v5__search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2B4CD9;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.regions-v5__search-btn:hover {
  background: #1e3ab8;
}

.regions-v5__stats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.regions-v5__stat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.regions-v5__stat-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.regions-v5__stat-num {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  white-space: nowrap;
}

.regions-v5__stat-label {
  font-family: 'Pragmatica', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.regions-v5__map {
  position: absolute;
  right: -50px;
  top: 20%;
  width: 60%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.3;
}

.regions-v5__map img {
  max-width: none;
  width: 120%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.founders-v5__container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}

.founders-v5__title {
  font-family: 'Pragmatica Extended', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 40px;
}

.founders-v5__slider-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.founders-v5__nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #E0E0E0;
  background: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.founders-v5__nav-btn:hover {
  border-color: #C41E24;
}

.founders-v5__slider-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px 0;
}

.founders-v5__slider-track::-webkit-scrollbar {
  display: none;
}

.founders-v5__logo-card {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 200px;
  height: 160px;
  background: #fff;
  border-radius: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s, box-shadow 0.2s;
  transition: -webkit-transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.founders-v5__logo-card:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.founders-v5__logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 1280px) {
  .panel-v5 {
    width: 1200px;
  }

  .hero-v5__title {
    font-size: 52px;
  }

  .features-v5__title,
  .projects-v5__title,
  .news-v5__title,
  .founders-v5__title {
    font-size: 36px;
  }

  .grey-line-horizontal {
    width: 1100px;
  }
}

@media (max-width: 1024px) {
  .panel-v5 {
    width: 960px;
    padding: 4px 20px;
  }

  .hero-v5 {
    min-height: 600px;
    padding: 100px 0 40px;
  }

  .hero-v5__title {
    font-size: 42px;
  }

  .hero-v5__subtitle {
    font-size: 16px;
  }

  .quote-v5__text {
    font-size: 28px;
  }

  .quote-v5__desc-text-element {
    font-size: 20px;
  }

  .features-v5__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-v5__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-v5__cards {
    grid-template-columns: 1fr;
  }

  .news-v5__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  body .news-v5__container {
    padding: 0 20px;
    width: calc(100% - 40px);
  }

  .grey-line-horizontal {
    width: 900px;
  }

  .questions-v5 {
    padding: 0 20px 60px;
  }

  .questions-v5__content {
    padding: 20px 20px;
  }

  .questions-v5__right {
    justify-content: center;
  }

  .questions-v5__title {
    font-size: 32px;
  }

  .regions-v5 {
    padding: 0 20px 60px;
  }

  .regions-v5__map {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    height: 250px;
    margin-top: 30px;
    opacity: 0.5;
  }

  .regions-v5__map img {
    width: 100%;
  }

  .regions-v5__title {
    font-size: 32px;
  }

  .regions-v5__stats {
    gap: 24px;
  }

  .founders-v5 {
    padding: 0 20px 60px;
  }

  .founders-v5__logo-card {
    width: 160px;
    height: 130px;
  }

  .founders-v5__title {
    font-size: 32px;
  }

  .hero-v5__content{
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-v5__bg {
    background: right center/cover no-repeat url(/images/main-page/hero_bg.png) !important;
  }

  .panel-v5 {
    width: 100%;
    left: 0;
    transform: none;
    padding: 4px 16px;
  }

  .hero-v5 {
    min-height: 500px;
    padding: 80px 0 30px;
  }

  .hero-v5__title {
    font-size: 20px;
  }

  .hero-v5__subtitle {
    font-size: 13px;
    margin-top: 1rem;
    max-width: 240px;
  }

  .hero-v5__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .quote-v5 {
    padding: 30px 20px 0;
  }

  .quote-v5__text {
    font-size: 22px;
  }

  .quote-v5__desc-text-element {
    font-size: 18px;
  }

  .quote-v5__tag__text {
    font-size: 16px;
  }

  .grey-line-horizontal {
    width: 100%;
  }

  .features-v5 {
    padding: 40px 20px;
  }

  .features-v5__grid {
    grid-template-columns: 1fr;
  }

  .features-v5__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-v5__stat-value {
    font-size: 28px;
  }

  .about-movement {
    padding: 30px 20px;
  }

  .about-movement__description {
    font-size: 18px;
  }

  .projects-v5 {
    padding: 0 20px 60px;
  }

  .news-v5__cards {
    grid-template-columns: 1fr;
  }

  .questions-v5__content {
    grid-template-columns: 1fr;
  }

  .questions-v5__right {
    display: none;
  }

  .questions-v5__title {
    font-size: 24px;
  }

  .questions-v5__text {
    font-size: 16px;
  }

  .questions-v5__btn {
    padding: 14px 32px;
    font-size: 16px;
  }

  .regions-v5__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .regions-v5__search {
    margin-bottom: 24px;
  }

  .regions-v5__stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }

  .regions-v5__stat-num {
    font-size: 28px;
  }

  .regions-v5__map {
    height: 200px;
  }

  .founders-v5__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .founders-v5__logo-card {
    width: 140px;
    height: 110px;
  }

  .founders-v5__nav-btn {
    width: 44px;
    height: 44px;
  }

  .questions-v5__text{
    margin: 10px;
  }

  .projects-v5__tabs {
    flex-direction: column;
    gap: 8px;
  }

  .hero-v5__content{
    padding: 1rem;
  }

  .quote-v5__cta{
    max-width: 100%;
  }

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

@media (max-width: 412px) {
  .hero-v5__bg {
    background: right center/cover no-repeat url(/images/main-page/hero_bg.png);
  }

 .hero-v5__title {
    font-size: 25px;
    margin-top: 1rem;
  }

  .hero-v5__btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .quote-v5__text {
    font-size: 20px;
  }

  .features-v5__title,
  .projects-v5__title,
  .news-v5__title,
  .founders-v5__title {
    font-size: 24px;
  }

  .features-v5__stats {
    grid-template-columns: 1fr;
  }

  .features-v5__block {
    padding: 24px 16px;
  }

  .features-v5__block--cta {
    min-height: 200px;
  }

  .features-v5__cta-btn {
    width: auto;
    max-width: 100%;
    padding: 0 20px;
  }

  .features-v5__grid {
    gap: 16px;
  }

  .projects-v5__tabs {
    flex-direction: column;
    gap: 8px;
  }

  .projects-v5__tab {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .projects-v5__slider-card {
    width: 240px;
    height: 160px;
  }

  .projects-v5__slider {
    position: relative;
  }

  .projects-v5__slider-track {
    width: 100%;
  }

  .projects-v5__slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 2;
  }

  .projects-v5__slider-btn--prev {
    left: -20px;
  }

  .projects-v5__slider-btn--next {
    right: -20px;
  }

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

  .quote-v5__desc-text-element {
    font-size: 16px;
    max-width: 100%;
    padding: 0 10px;
  }

  .projects-v5__main-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 880 / 553;
  }

  .regions-v5__search {
    flex-wrap: wrap;
    padding: 8px 12px;
  }

  .regions-v5__search-input {
    min-width: 0;
    flex: 1 1 100%;
    margin-bottom: 8px;
  }

  .regions-v5__search-btn {
    width: 100%;
  }

  .regions-v5__stats {
    flex-direction: column;
    gap: 16px;
  }

  .regions-v5__stat {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    align-items: center;
  }

  .regions-v5__stat-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 32px;
    height: 32px;
  }

  .regions-v5__stat-num {
    grid-column: 2;
    grid-row: 1;
    font-size: 28px;
  }

  .regions-v5__stat-label {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
  }

  .regions-v5__map {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }

  .questions-v5__text{
    margin: 10px;
  }

  .hero-v5__content{
    padding: 1rem;
  }

  .quote-v5__cta{
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .hero-v5{
    width: 100%;
    min-height: 550px;
  }

  .hero-v5__title {
    font-size: 25px;
    margin-top: 1rem;
  }

  .hero-v5__subtitle {
    font-size: 13px;
    margin-top: 1rem;
    max-width: 240px;
  }

  .quote-v5__text {
    font-size: 18px;
  }

  .hero-v5__content{
    padding: 1rem;
  }

  .quote-v5__cta{
    max-width: 100%;
  }

  .quote-v5__cta-text,
  .quote-v5__cta-bold {
    font-size: 22px;
  }

  .stats-v5__item-num {
    font-size: 40px;
  }

  .features-v5__block h3 {
    font-size: 20px;
  }

  .features-v5__block p {
    font-size: 14px;
  }

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

  .quote-v5__desc-text-element {
    font-size: 16px;
    max-width: 100%;
    padding: 0 10px;
  }

  .projects-v5__tabs {
    flex-direction: column;
    gap: 8px;
  }

  .projects-v5__tab {
    width: 100%;
    text-align: center;
  }

  .projects-v5__main-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 880 / 553;
  }

  .projects-v5__slider-card {
    width: 220px;
    height: 140px;
  }

  .projects-v5__slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    z-index: 2;
  }

  .projects-v5__slider-btn--prev {
    left: -18px;
  }

  .projects-v5__slider-btn--next {
    right: -18px;
  }

  .regions-v5__search {
    flex-wrap: wrap;
    padding: 8px 12px;
  }

  .regions-v5__search-input {
    min-width: 0;
    flex: 1 1 100%;
    margin-bottom: 8px;
  }

  .regions-v5__search-btn {
    width: 100%;
  }

  .regions-v5__stats {
    flex-direction: column;
    gap: 16px;
  }

  .regions-v5__stat {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    align-items: center;
  }

  .regions-v5__stat-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 32px;
    height: 32px;
  }

  .regions-v5__stat-num {
    grid-column: 2;
    grid-row: 1;
    font-size: 28px;
  }

  .regions-v5__stat-label {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
  }

  .regions-v5__content {
    padding: 20px;
    height: auto;
    min-height: 400px;
  }

  .regions-v5__map {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }

  .questions-v5__text{
    margin: 10px;
  }

  .questions-v5__right{
    margin-top: 10px;
  }
}

@media (max-width: 320px) {
  .hero-v5__bg {
    background: right center/cover no-repeat url(/images/main-page/hero_bg.png);
  }

  .hero-v5__title {
    font-size: 22px;
  }

  .hero-v5__btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .quote-v5__text {
    font-size: 16px;
  }

  .quote-v5__cta-text,
  .quote-v5__cta-bold {
    font-size: 18px;
  }

  .features-v5__block {
    padding: 24px 20px;
  }

  .features-v5__block h3 {
    font-size: 18px;
  }

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

  .quote-v5__desc-text-element {
    font-size: 16px;
    max-width: 100%;
    padding: 0 10px;
  }

  .projects-v5__tabs {
    flex-direction: column;
    gap: 8px;
  }

  .projects-v5__tab {
    width: 100%;
    text-align: center;
  }

  .projects-v5__main-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 880 / 553;
  }

  .projects-v5__slider-card {
    width: 200px;
    height: 130px;
  }

  .projects-v5__slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    z-index: 2;
  }

  .projects-v5__slider-btn--prev {
    left: -16px;
  }

  .projects-v5__slider-btn--next {
    right: -16px;
  }

  .regions-v5__search {
    flex-wrap: wrap;
    padding: 8px 12px;
  }

  .regions-v5__search-input {
    min-width: 0;
    flex: 1 1 100%;
    margin-bottom: 8px;
  }

  .regions-v5__search-btn {
    width: 100%;
  }

  .regions-v5__stats {
    flex-direction: column;
    gap: 16px;
  }

  .regions-v5__stat {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    align-items: center;
  }

  .regions-v5__stat-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 32px;
    height: 32px;
  }

  .regions-v5__stat-num {
    grid-column: 2;
    grid-row: 1;
    font-size: 28px;
  }

  .regions-v5__stat-label {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
  }

  .regions-v5__content {
    padding: 20px;
    height: auto;
    min-height: 400px;
  }

  .regions-v5__map {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }
}

@media (min-width: 1366px) and (max-width: 1440px) {
  .panel-v5 {
    width: 1300px;
  }
}

@media (min-width: 1920px) {
  .panel-v5 {
    width: 1600px;
  }

  .hero-v5 {
    max-width: 1800px;
  }

  .features-v5__container,
  .projects-v5__container,
  .news-v5__container,
  .founders-v5__container {
    max-width: 1400px;
  }

  .grey-line-horizontal {
    width: 1500px;
  }
}

@media (min-width: 2560px) {
  .panel-v5 {
    width: 2000px;
  }

  .hero-v5 {
    max-width: 2200px;
  }

  .features-v5__container,
  .projects-v5__container,
  .news-v5__container,
  .founders-v5__container {
    max-width: 1400px;
  }

  .grey-line-horizontal {
    width: 1900px;
  }
}

.complex_footer.box-page {
  background: #FFFFFF;
}

