@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

.header {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	z-index: 10;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 16px;
	flex-wrap: nowrap;
}

.logo img {
	width: 312px;
	height: 56.4px;
}

.nav-menu ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	justify-content: space-evenly;
	gap: 15px;
}

.nav-menu li {
	position: relative;
	white-space: nowrap;
}

.nav-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	padding: 10px;
}

.nav-menu li:hover::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 47px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.burger-menu {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.burger-menu img {
	width: 29px;
	height: 25px;
	margin-right: 20px;
}

.contact-info {
	display: flex;
	align-items: center;
	margin-right: 7px;
}

.phone-number {
	color: #fff;
	font-size: 17px;
	margin-left: 8px;
	white-space: nowrap;
	text-decoration: none;
	position: relative;
	top: -2px;
	display: flex;
	align-items: center;
}

.phone-number .phone-icon {
	margin-right: 5px;
	width: 25px;
	height: 25px;
	transition: all 0.3s ease;
}

.phone-number:hover .phone-icon {
	filter: brightness(0) saturate(100%) invert(40%) sepia(80%) saturate(700%) hue-rotate(-10deg) brightness(105%) contrast(92%);
}

.phone-number:hover {
	color: rgba(255, 13, 30, 0.7);
}

.social-icons-container {
	height: 48px;
	background-color: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	padding: 0 5px;
	position: relative;
	z-index: 10;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.social-icons a {
	transition: background-color 0.3s ease;
	padding: 5px;
	border-radius: 50%;
}

.social-icons a img {
	width: 27px;
	height: 27px;
}

.social-icons a[href*="vk.com"]:hover img {
	filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(240deg) brightness(100%) contrast(100%);
}

.social-icons a[href*="t.me"]:hover img {
	filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(2000%) hue-rotate(190deg) brightness(90%) contrast(100%);
}

.social-icons a[href*="wa.me"]:hover img {
	filter: brightness(0) saturate(100%) invert(51%) sepia(75%) saturate(800%) hue-rotate(85deg) brightness(100%) contrast(92%);
}

.divider-container {
	display: flex;
	justify-content: center;
	position: relative;
	margin: 0 16px;
}

.divider {
	width: calc(100% - 32px);
	height: 3px;
	background-color: rgba(255, 255, 255, 0.33);
	position: absolute;
	top: -15px;
	z-index: 1;
}

/* Медиа-запросы */
@media (max-width: 1200px) {
	.nav-menu a {
		font-size: 16px;
	}

	.logo img {
		width: calc(312px * 0.8);
		height: calc(56.4px * 0.8);
	}

	.social-icons-container {
		height: calc(48px * 0.8);
		padding: 0 8px;
	}

	.social-icons {
		gap: 5px;
	}

	.social-icons a img {
		width: 20px;
		height: 20px;
	}

	.phone-number {
		font-size: 14.45px;
	}

	.divider {
		top: -10px;
	}
}

@media (max-width: 992px) {
	.nav-menu a {
		font-size: 12px;
	}

	.logo img {
		width: calc(312px * 0.6);
		height: calc(56.4px * 0.6);
	}

	.social-icons-container {
		height: calc(48px * 0.6);
		padding: 0 6px;
	}

	.social-icons {
		gap: 3px;
	}

	.social-icons a img {
		width: 18px;
		height: 18px;
	}

	.phone-number {
		font-size: 12.75px;
	}

	.divider {
		top: -10px;
	}
}

@media (max-width: 768px) {
	.header-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		text-align: center;
		padding: 20px 16px;
	}

	.nav-menu {
		display: none;
	}

.nav-menu.open {
	display: block;
	position: absolute;
	top: 60px;
	left: 0;
	right: 0;
	background-color: rgba(6, 68, 105, 0.9);
	/* Полупрозрачный фон */
	padding: 15px;
	/* Компактный отступ */
	z-index: 10000;
}

.nav-menu.open ul {
	flex-direction: column;
	/* Вертикальное построение меню */
	margin: 0;
	padding: 0;
}

.nav-menu.open li {
	margin: 10px 0;
	/* Отступ между пунктами меню */
	text-align: center;
}

.nav-menu.open a {
	font-size: 80%;
	/* Уменьшение шрифта на 20% */
	padding: 8px;
	/* Компактное поле для пунктов */
	color: #fff;
	text-decoration: none;
}

	.burger-menu {
		display: block;
		padding: 0;
	}

	.contact-info {
		display: none;
	}

	.social-icons-container {
		display: none;
	}

	.logo {
		flex: 1;
		text-align: left;
	}

	.logo img {
		width: calc(312px * 0.6);
		height: calc(56.4px * 0.6);
	}

	.nav-menu a {
		font-size: 16px;
	}

	.divider {
		top: -10px;
	}

	.burger-menu {
		margin-left: 7px;
	}
}

@media (max-width: 576px) {
	.nav-menu a {
		font-size: 16px;
	}

	.logo img {
		width: calc(312px * 0.6);
		height: calc(56.4px * 0.6);
	}

	.social-icons-container {
		height: calc(48px * 0.4);
		padding: 0 4px;
	}

	.social-icons {
		gap: 3px;
	}

	.social-icons a img {
		width: 16px;
		height: 16px;
	}

	.phone-number {
		font-size: 10.2px;
	}

	.divider {
		top: -10px;
	}

	.burger-menu {
		margin-left: 7px;
	}
}

/* header.css */
.menu-item.activelink.mask-next::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 47px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.menu-item.activelink.active2::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 47px;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 5%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
footer {
  background-color: #171A1A;
  padding: 40px 20px;
  color: #fff;
  position: relative;
  z-index: 1;
  height: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 320px) repeat(3, 1fr);
  gap: 40px;
  padding: 0;
  margin-bottom: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-logo {
  width: 320px;
  height: 40px;
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-company-details {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

.footer-company-details a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-company-details a:hover {
  color: #FF0D1E;
  text-decoration: underline;
}

.footer-sections {
  display: contents;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.red-line {
  width: 30px;
  height: 3px;
  background-color: #FF0D1E;
  margin: 0 0 16px 0;
}

.footer-company-info,
.footer-info,
.footer-socials {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-company-info a,
.footer-info a,
.footer-socials a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-company-info a:hover,
.footer-info a:hover,
.footer-socials a:hover {
  color: #FF0D1E;
  text-decoration: underline;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social-icon-container {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid rgba(255, 13, 30, 0.5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.footer-social-icon-container:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 13, 30, 0.8);
}

.footer-social-icon-container a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.footer-social-icons img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

/* Изменение цвета иконок при наведении */
.footer-social-icon-container:hover img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(2000%) hue-rotate(190deg) brightness(90%) contrast(100%);
}

/* Специфичные цвета для ВКонтакте */
.footer-social-icon-container:hover a[href*="vk.com"] img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(240deg) brightness(100%) contrast(100%);
}

/* Специфичные цвета для Telegram */
.footer-social-icon-container:hover a[href*="t.me"] img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(2000%) hue-rotate(190deg) brightness(90%) contrast(100%);
}


.footer-social-icon-container:hover a[href*="wa.me"] img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(75%) saturate(800%) hue-rotate(85deg) brightness(100%) contrast(92%);
}


.footer-bottom {
  text-align: center;
  padding-top: 10px;
  margin-top: 20px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-bottom a:hover {
  color: #FF0D1E;
  text-decoration: underline;
}

/* Desktop large: 1200px+ */
@media (min-width: 1200px) {
  .footer-top {
    gap: 50px;
  }
}

/* Desktop medium: 1024-1199px */
@media (max-width: 1199px) {
  .footer-top {
    gap: 32px;
  }
  
  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 15px;
  }
}

/* Tablet large: 900-1023px */
@media (max-width: 1023px) {
  footer {
    padding: 30px 20px;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  
  .footer-logo-section {
    grid-column: 1 / -1;
  }
  
  .footer-company-details {
    font-size: 15px;
    margin-left: 0;
  }
  
  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 15px;
  }
}

/* Кнопка для скролла наверх */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: scale(1.1);
}

/* Tablet: 768-899px */
@media (max-width: 899px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  
  .footer-logo-section {
    grid-column: 1 / -1;
    align-items: center;
  }
  
  .footer-company-details {
    align-items: center;
    text-align: center;
    margin-left: 0;
  }
  
  .footer-section {
    align-items: center;
    text-align: center;
  }
  
  .footer-company-info,
  .footer-info,
  .footer-socials {
    align-items: center;
    text-align: center;
  }
  
  .red-line {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-social-icons {
    justify-content: center;
  }
}

/* Mobile large: 480-767px */
@media (max-width: 767px) {
  footer {
    padding: 30px 15px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo-section {
    align-items: center;
    grid-column: 1;
  }
  
  .footer-section {
    width: 100%;
    max-width: 400px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .footer-logo {
    width: 240px;
    height: 30px;
  }

  .footer-company-details {
    font-size: 15px;
    text-align: center;
    align-items: center;
    margin-left: 0;
  }

  .footer-section-title {
    font-size: 17px;
    text-align: center;
  }

  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 15px;
    text-align: center;
    align-items: center;
  }

  .red-line {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

/* Mobile medium: 375-479px */
@media (max-width: 479px) {
  footer {
    padding: 25px 15px;
  }
  
  .footer-top {
    gap: 28px;
  }
  
  .footer-logo {
    width: 200px;
    height: 25px;
  }

  .footer-company-details {
    font-size: 14px;
  }

  .footer-section-title {
    font-size: 16px;
  }

  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 14px;
  }
  
  .footer-section {
    max-width: 100%;
  }
}

/* Mobile small: 320-374px */
@media (max-width: 374px) {
  footer {
    padding: 20px 10px;
  }
  
  .footer-top {
    gap: 24px;
  }
  
  .footer-logo {
    width: 180px;
    height: 22px;
  }

  .footer-company-details {
    font-size: 13px;
  }

  .footer-section-title {
    font-size: 15px;
  }

  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 13px;
  }
  
  .footer-social-icon-container {
    width: 36px;
    height: 36px;
  }
  
  .footer-social-icons img {
    width: 18px;
    height: 18px;
  }
}

.footer-item.footerselect-next {
  color: #FF0D1E;
  text-decoration: underline;
}

/**
 * Swiper 11.1.12
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 1, 2024
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, 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');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */



/* Глобальные стили */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
}

.services-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: url('/image-fone.svg') no-repeat center center/cover;
    background-size: cover;
}

.fixed-schema {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/shema.svg') no-repeat center center;
    background-size: cover;
    z-index: 0;
    opacity: 1;
    animation: pulse 10s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.2;
    }
}

.header, .footer {
    z-index: 1000;
    position: relative;
}

.content-wrapper {
    z-index: 1;
    flex: 1;
    position: relative;
}

.services-section {
    color: white;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(32, 35, 40, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.service-content p,
.service-content ul {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-content ul {
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 10px;
}

/* Стили для блока About Us */
.about-us {
    display: flex;
    flex-direction: row;
    padding: 30px;
    z-index: 2;
    position: relative;
}

.left-section {
    width: 40%;
    padding-left: 20px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-container {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
    transform-origin: top left;
}

.photo-container {
    position: relative;
    display: inline-block;
}

.photo-mask {
    width: 100%;
    height: 100%;
    background-color: rgba(228, 41, 41, 0.4);
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
    border-radius: 10px;
}

.text-mask {
    width: 240px;
    height: 95px;
    background-color: rgba(32, 35, 40, 0.9);
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    color: white;
    z-index: 3;
    transition: transform 0.3s ease, font-size 0.3s ease;
    transform-origin: top left;
}

.left-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
}

.large-number {
    font-size: 52px;
    font-weight: bold;
}

.right-content {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.market-text {
    font-size: 20px;
    margin-top: 0;
    text-align: left;
}

.about-us-photo {
    max-width: 100%; /* Устанавливаем максимальную ширину */
    height: auto; /* Высота автоматически подстраивается для сохранения пропорций */
    object-fit: contain; /* Изображение сохраняет пропорции и не обрезается */
    z-index: 2;
    position: relative;
    border-radius: 10px;
    transition: opacity 0.8s ease-in-out; /* Плавный переход для появления */
    opacity: 0;
}

.right-section {
    width: calc(60% - 25px);
    display: flex;
    flex-direction: column;
}

.right-subsections {
    display: flex;
    flex-direction: column;
}

.subsection-title {
    font-size: 27px;
    font-weight: 900;
    color: #FF0D1E;
    text-align: center;
    margin-bottom: 15px;
}

.subsection-text {
    font-family: 'Montserrat', sans-serif;
}

.subsection-text.large {
    font-size: 21px;
    margin-bottom: 10px;
    text-align: justify;
    text-indent: 2em; /* Красная строка */
}

.signature {
    font-size: 22px;
    font-weight: bold;
    margin-top: 35px; /* Отступ от третьего абзаца */
    text-align: left; /* Выравнивание по левому краю */
}

/* Новый блок для слайдера и команды */
.team-section {
    background-color: rgba(0, 0, 0, 0.5); /* Черный фон с прозрачностью 50% */
    padding: 50px 30px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-title {
    font-size: 32px;
    font-weight: 900;
    color: #FF0D1E;
    margin-bottom: 20px;
}

.team-text {
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px; /* Отступ между текстом и слайдером */
}

/* Стили для слайдера */
.slider-container {
    width: 100%;
    height: 200%; /* Увеличение высоты контейнера слайдера */
    position: relative;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
}

.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden;
}

.slide-content img {
    width: 100%;
    height: 100%; /* Изображение занимает всю высоту слайда */
    object-fit: cover;
    display: block;
}

/* Управление слайдером */
.controls-container {
    position: absolute;
    bottom: 5px; /* Позиция чуть выше нижней границы блока */
    right: 50%;
    transform: translateX(50%);
    width: auto;
    height: 35px;
    background-color: rgba(32, 35, 40, 0.8);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 13, 30, 0.2);
    padding: 0 5px;
    z-index: 10;
}

.custom-swiper-controls {
    display: flex;
    align-items: center;
    gap: 30px; /* Устанавливаем расстояние между стрелками */
}

.custom-swiper-button-prev,
.custom-swiper-button-next {
    width: 30px;
    height: 30px;
    background-color: transparent;
    cursor: pointer;
}

.custom-swiper-button-prev img,
.custom-swiper-button-next img {
    width: 100%;
    height: 100%;
}

/* Адаптивные стили */
@media (max-width: 1200px) {
    .group-container {
        transform: scale(0.9);
    }
    .text-mask {
        font-size: 0.9em;
    }
    .right-section {
        width: 100%;
        padding-right: 0;
    }
    .about-us-photo {
        width: 80%;
    }
    .photo-mask {
        width: 80%;
        height: 80%;
    }
    .subsection-text.large {
        font-size: 22px;
    }
    .subsection-text.small {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .group-container {
        transform: scale(0.8);
    }
    .text-mask {
        font-size: 0.8em;
    }
    .about-us-photo {
        width: 70%;
    }
    .photo-mask {
        width: 70%;
        height: 70%;
    }
    .subsection-text.large {
        font-size: 20px;
    }
    .subsection-text.small {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .left-section {
        width: 100%;
        margin-right: 0;
        order: 1;
    }
    .group-container {
        transform: scale(0.7);
    }
    .text-mask {
        font-size: 0.7em;
    }
    .right-section {
        width: 100%;
        padding: 0 20px;
        margin-top: 20px;
        order: 2;
        z-index: 3;
    }
    .bottom-left-subsection,
    .bottom-right-subsection {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .group-container {
        transform: scale(0.6);
    }
    .text-mask {
        font-size: 0.6em;
    }
    .right-section {
        padding: 0 10px;
    }
    .subsection-title {
        font-size: 18px;
    }
    .subsection-text.large {
        font-size: 16px;
    }
    .subsection-text.small {
        font-size: 14px;
    }
    .project-title,
    .project-text,
    .project-link {
        font-size: 14px;
        text-align: center;
    }
}

.mission-section {
    text-align: center;
    padding: 15px;
    color: white;
    z-index: 2;
}

.mission-title {
    font-size: 32px;
    font-weight: 900;
    color: #FF0D1E;
    padding: 30px;
}

.mission-text {
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
}

/* Стиль для низкого качества изображения */
.low-res {
    filter: blur(20px);  /* Размытие изображения низкого качества */
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
}

/* Стиль для изображения высокого качества */
.high-res {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

/* Когда высокое качество загружено */
.high-res.loaded {
    opacity: 1;
}

.low-res.loaded {
    opacity: 0;
}

/* Эффект плавного появления для высококачественного изображения */
.about-us-photo {
    opacity: 0;
    transition: opacity 0.8s ease-in-out; /* Плавный переход для появления */
}

.about-us-photo.fade-in {
    opacity: 1; /* Устанавливаем видимость при завершении загрузки */
}

/* Стиль для ссылки "СМИ о нас" */
.medialink {
    font-size: 22px; /* Исходный размер */
    color: #FF0D1E; /* Красный цвет */
    text-decoration: none; /* Убираем подчеркивание */
    font-weight: bold;
    transition: all 0.3s ease-in-out; /* Плавный переход для всех изменений */
}

.medialink:hover {
    font-size: 26px; /* Увеличение размера на 20% при наведении */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Тень для текста */
    color: #FF0D1E; /* Оставляем тот же цвет при наведении */
}

