/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}


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

:root {
	--main-font: "Manrope-Medium", sans-serif;
	--font-weight: 700;
    --text-primary: #0D0B0D;
    --text-secondary: #514E51;
    --primary-color: #D4EE36;
    --primary-hover: #B6D805;   
    --secondary-color: #26272C;
	--border: #828282;           
    --wite: #ffffff;
    --dark: #0D0B0D;
    --divider-line: #0D0B0D;
	--gray-bg: #F1F3F7;
}


i[class^=icon-] {
  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;
  text-align: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}

.icon-close {
  background-image: url("../img/icons/close.svg");
}
.icon-close-dark {
  background-image: url("../img/icons/close-dark.svg");
}
.icon-burger {
  background-image: url("../img/icons/burger.svg");
}
.icon-burger-close {
  background-image: url("../img/icons/burger-close.svg");
}
.icon-arrow {
  background-image: url("../img/icons/arrow-right.svg");
}
.icon-play {
  background-image: url("../img/icons/play.svg");
}
.icon-top {
  background-image: url("../img/icons/arrow-top-right.svg");
}

.review-title-link {
    color: #0D0B0D; /* Колір тексту посилання */
    font-weight: 600; /* Жирність шрифту */
    text-decoration: none; /* Прибираємо підкреслення за замовчуванням */
    transition: all 0.3s ease; /* Плавна анімація для змін */
}


button {
  cursor: pointer;
  background: none;
  border: 0;
}

.btn {
 height:48px;
  font-weight: 500;
  font-size: 16px;
  padding: 11px 24px;
  border: 1px solid #CFF602;
  line-height: 24px;
  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;
  justify-self: unset;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-icon-holder {
  margin-left: 6px;
  position: relative;
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #0D0B0D;
}

.btn-icon-holder i {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.btn-primary {
  color: #0D0B0D;
  background-color: #D4EE36;
  border-radius: 50px ;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #C7E034;
}

.btn-secondary {
  background-color: #ffffff;
  border-color: #828282;
  color: #0D0B0D;
  border-radius: 50px ;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn-secondary:hover {
  border-color: #828282;
  color: #828282;
}
.btn-icon {
  padding: 0;
  width: 24px;
  height: 24px;
}
.btn.full-width {
  width: 100%;
}

@media (min-width: 1200px) {
  .btn {
    padding-left: 32px;
    padding-right: 32px;
  }
  .btn-primary-icon:hover i {
    left: 2px;
  }
}
*,
:before,
:after {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  position: relative;
}

body {
  min-height: 100%;
  min-width: 320px;
  font-style: normal;
  font-weight: 400;
  font: 18px/1.7 "Inter", sans-serif;
  color: #0D0B0D;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.9;
}

.link {
  color: #0D0B0D;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1372px;
}

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



.top-panel {
  background: #D4EE36;
  padding: 16px 0;
  font-size: 14px;
  line-height: 17px;
  display: none;
  position: relative;
  z-index: 1;
}
.top-panel.is-active {
  display: block;
}
.top-panel-content {
  padding-right: 20px;
}
.top-panel p {
  color: #0D0B0D;
  margin: 0px;
}
.top-panel .link {
  color: #0D0B0D;
  font-weight: 500;
}
.top-panel .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;  
}

.top-panel-content{
    padding-right: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}




@media (min-width: 992px) {
  .top-panel {
    padding: 10px 0 13px;
  }
  .top-panel p {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 12px;
    margin-bottom: 0;
  }
  .top-panel .btn-close {
    top: 8px;
    right: 6px;
  }
}

@media(min-width: 1200px) {
  .top-panel-content{
    display: flex;
    align-items: center;
  }
}

.burger-button {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 24px;
  right: 16px;
  padding: 0;
}
.burger-button-close {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 24px;
  right: 16px;
  padding: 0;
}
.burger-button-close i {
  width: 32px;
  height: 32px;
}
.burger-button .icon-burger {
  width: 32px;
  height: 32px;
}

@media (min-width: 1200px) {
  .burger-button {
    display: none;
  }
}



.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 11;
}
.header-content {
  padding: 28px 0 24px;
}
.header-logo {
  line-height: 24px;
}
.header-line {
  display: block;
  height: 2px;
  background-color: #0D0B0D;
}
.header .logo svg {
  fill: #0D0B0D;
}






.section-image {
        align-items: center;
        justify-content: center;
         width: 100%;
}

.section-image img {
        display: block;
        max-width: 100%;
        max-height: 100%;
         width: 100%;
}




.header-nav-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.header-nav-head {
  padding: 12px 0 24px;
  border-bottom: 2px solid #0D0B0D;
  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;
}

.opened-menu .header-nav-holder {
  -webkit-transform: translate(0);
  transform: translate(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 10;
}

/* Основные стили для меню */
.header-nav {
  list-style: none;
  padding: 60px 0 0 0;
  margin: 0;
  text-align: center;
  max-height: calc(100% - 60px);
  overflow-y: auto;
}

 .header-nav-btn {
	padding-left:32px; 
}

.header-nav li {
  margin-bottom: 32px;
  position: relative;
}

.header-nav a {
  display: inline-flex;
  position: relative;
  color: #0D0B0D;
  text-decoration: none;
  align-items: center;
}


/* Стили для десктопного меню */
@media (min-width: 992px) {
	
	/* Стиль для пункта-разделителя в меню */
.menu-item.divider a {
	font-color: #FFFFFF;
  pointer-events: none; /* Отключает клики */
  cursor: default;
  padding: 0 24px; /* Добавляет отступы по бокам */
}
	
	
  /* Контейнер для шапки */
  .header-nav-holder {
    padding: 0;
    position: static;
    background-color: transparent;
    width: auto;
    transform: none;
  }
  
  /* Горизонтальное меню */
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    max-height: none;
    overflow: visible;
  }
  
  .header-nav > li {
    margin: 0;
    position: relative;
    display: inline-flex;
  }
  
  /* Пункты с выпадающим меню */
  .header-nav .menu-item-has-children {
    position: relative;
    z-index: 100;	  
  }
  
  /* Выпадающее подменю */
  .header-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 42px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 8px 0;
    margin: 5px 0 0 0;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
    z-index: 999;
    /* Добавляем небольшую невидимую область для облегчения навигации */
    pointer-events: none;
  }
  
  /* Добавляем невидимую область между родительским пунктом и подменю */
  .header-nav .menu-item-has-children:after {
	content: "";
    position: absolute;
    height: 15px;
    width: 100%;
    left: 0;
    bottom: -10px;
    z-index: 998;
  }
  
  /* Показываем подменю при наведении или когда активен класс menu-hover */
  .header-nav .menu-item-has-children:hover > .sub-menu,
  .header-nav .menu-item-has-children.menu-hover > .sub-menu,
  .header-nav .sub-menu:hover {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    pointer-events: auto;
  }
  
  /* Стили для пунктов подменю */
  .header-nav .sub-menu li {
    margin: 0;
    padding: 0;
    display: block;
    text-align: left;
  }
  
  .header-nav .sub-menu a {
    display: block;
    padding: 8px 15px;
    color: #0D0B0D;
    white-space: nowrap;
  }
  
  .header-nav .sub-menu a:hover {
    background-color: #f5f5f5;
  }
  
  /* Отключаем подчеркивание в подменю */
  .header-nav .sub-menu a:after {
    display: none;
  }
	
	/* Поддержка третьего уровня меню */
.header-nav .sub-menu .menu-item-has-children {
  position: relative;
}

.header-nav .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-left: 0;
  margin-top: -8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 8px 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s;
  pointer-events: none;
  position: absolute;
  z-index: 999;
}

/* Показывать подменю третьего уровня при наведении */
.header-nav .sub-menu .menu-item-has-children:hover > .sub-menu,
.header-nav .sub-menu .menu-item-has-children.menu-hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
	
	
}


@media (min-width: 1200px) {
.header-content {
  padding: 28px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
  
.header-nav {
  font-size: 16px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center; /* Центрируем пункты меню */
}
  
  .header-nav li {
    margin-bottom: 0;
    margin-right: 20px;
  }
  
  .header-nav li:last-child {
    margin-right: 0;
  }
  
  .header-nav a:hover:after {
    right: 0;
    width: 100%;
  }
  
.header-nav-holder {
  position: static;
  display: flex;
  align-items: center;
  padding: 0;
  transform: none;
}
  
  .header-nav-btn {
    position: static;
    margin: 0;
  }
  .header-nav-btn .btn {
    width: auto;
  }
  .header-nav-head {
    display: none;
  }
}




/* Изменяем медиа-запрос для десктопной версии на 992px вместо 1200px */
@media (min-width: 992px) {
  .header-content {
    padding: 28px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-nav {
    font-size: 16px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center; /* Центрируем пункты меню */
  }
  
  .header-nav li {
    margin-bottom: 0;
    margin-right: 24px;
  }
  
  .header-nav li:last-child {
    margin-right: 0;
  }
  
  .header-nav a:hover:after {
    right: 0;
    width: 100%;
  }
  
  .header-nav-holder {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    transform: none;
  }
  
  .header-nav-btn {
    position: static;
    margin: 0;
  }
  
  .header-nav-btn .btn {
    width: auto;
  }
  
  .header-nav-head {
    display: none;
  }
  
  /* Скрываем мобильные элементы на десктопе */
  .header-nav-close,
  .header-nav-btn-menu,
  .js-open-menu {
    display: none;
  }
}

/* Стили для мобильной версии без изменений медиа-запроса */
@media (max-width: 991px) {
  /* Существующие стили для мобильной версии */
}

/* Дополнительные стили для плавной адаптации на узких экранах десктопов */
@media (min-width: 992px) and (max-width: 1200px) {
  .header-nav li {
    margin-right: 16px; /* Уменьшаем отступы между пунктами на узких десктопах */
  }
  
  .header-nav {
    font-size: 16px; /* Немного уменьшаем шрифт на узких десктопах */
  }
}

/* Исправленные стили для мобильной версии */
@media (max-width: 991px) {
  /* Стили контейнера меню для мобильных */
  .header-nav-holder {
    padding: 16px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    width: 100%;
    transform: translateX(-100%);
    z-index: 1000;
    transition: transform 0.3s ease;
  }
  
  /* Класс для открытого меню */
  .header-nav-holder.open {
    transform: translateX(0);
  }
  
  /* Стили для списка меню на мобильных */
  .header-nav {
    list-style: none;
    padding: 60px 0 0 0;
    margin: 0;
    text-align: left; /* Выравнивание по левому краю */
  }
  
  /* Стили для пунктов меню */
  .header-nav li {
    margin-bottom: 20px;
    position: relative;
  }
  
  /* Ссылки в пунктах меню */
  .header-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0D0B0D;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
  }
  
  /* Выпадающее подменю для мобильных */
  .header-nav .sub-menu {
    display: none;
    list-style: none;
    padding: 10px 0 10px 15px;
    margin-top: 10px;
    background-color: #f5f5f5; /* Серый фон для вложенных пунктов */
    border-radius: 4px;
  }
  
  /* Стили для пунктов подменю */
  .header-nav .sub-menu li {
    margin-bottom: 10px; /* Уменьшаем отступ для вложенных пунктов */
  }
  
  .header-nav .sub-menu li:last-child {
    margin-bottom: 0;
  }
  
  .header-nav .sub-menu a {
    font-size: 14px; /* Уменьшаем размер шрифта для вложенных пунктов */
    padding: 3px 0;
  }
  
  /* Иконка + для раскрытия меню */
  .dropdown-toggle {
    width: 24px; /* Уменьшаем размер кнопки */
    height: 24px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    flex-shrink: 0;
  }
  
  .dropdown-toggle:before,
  .dropdown-toggle:after {
    content: '';
    position: absolute;
    background-color: #0D0B0D;
    transition: transform 0.3s;
  }
  
  .dropdown-toggle:before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
  }
  
  .dropdown-toggle:after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
  }
  
  /* Стили для открытого состояния */
  .submenu-open > .dropdown-toggle:after {
    transform: translateX(-50%) rotate(90deg);
  }
  
  /* Стили для кнопки закрытия меню */
  .header-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  .header-nav-close:before,
  .header-nav-close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0D0B0D;
  }
  
  .header-nav-close:before {
    transform: rotate(45deg);
  }
  
  .header-nav-close:after {
    transform: rotate(-45deg);
  }
}


@media (max-width: 991px) {
  .menu-item.divider a {
    padding: 0 10px; /* Меньший отступ на мобильных */
  }
}


/* Стили для узких десктопов и планшетов в ландшафтной ориентации */
@media (min-width: 992px) and (max-width: 1200px) {
  .header-nav li {
    margin-right: 24px; /* Уменьшаем отступы между пунктами */
  }
  
  .header-nav {
    font-size: 16px; /* Немного уменьшаем шрифт */
  }
  

  
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Специфические стили для очень маленьких экранов (375px и меньше) */
@media (max-width: 375px) {
  .logo {
    width: 100px;
  }
  
  .header-content {
    padding: 10px 0;
  }
  
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}









/* Включаем бургер-меню, если навигация не влезает на планшете */
@media (max-width: 1024px) {
  .header-content {
   
    justify-content: space-between;
  }
}

/* Предохранитель: если пунктов меню много — ломаем в моб версию раньше */
@media (max-width: 1100px) {
  .header-nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}

/* Облегченная версия на 992-1200 */
@media (min-width: 992px) and (max-width: 1200px) {
  .header-nav li {
    margin-right: 10px;
  }

  .header-nav {
    font-size: 14px;
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 6px;
  }

	.menu-item.divider a {
  padding: 0 12px; /* Добавляет отступы по бокам */
}
	
	
  .header-content {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .header-nav-btn {
    flex-shrink: 0;
	margin-left: 8px;
  }
}

@media (max-width: 991px) {
  .header-nav-holder {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.01s ease, opacity 0.01s ease;
  }

  .header-nav-holder.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}




/* logo */

.logo {
  width: 191px;
  height: 22px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}


/* футер */

.footer {
  background-color: #26272C;
  color: #ffffff;
  padding: 60px 0 24px;
}
.footer a {
  color: #ffffff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.footer address {
  font-style: normal;
}
.footer-address {
  color: #C3C6CB;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 60px;
}
.footer-middle {
  font-size: 28px;
  line-height: 34px;
  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;
   font-family: var(--main-font); !important
  margin-bottom: 134px;
}
.footer-middle a {
  margin-bottom: 24px;
}
.footer-top {
  margin-bottom: 40px;
  height: 20px;
}
.footer-address {
  font-family: var(--main-font); !important
}
.footer-bottom {
  font-size: 16px;
  line-height: 24px;
  color: #707070;
}
.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-bottom li {
  min-width: 76px;
  margin-right: 42px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 19px;
}
.footer-bottom a {
  color: #9C9FA5;
}
.footer .logo svg {
  fill: #ffffff;
}

@media (min-width: 1200px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .footer-top {
    margin-bottom: 69px;
  }
  .footer-middle {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 226px;
    font-size: 36px;
    line-height: 44px;
  }
  .footer-middle a {
    margin: 0 120px 0 0;
  }
  .footer-middle a:last-child {
    margin-right: 0;
  }
  .footer-address {
    font-size: 26px;
    line-height: 27px;
    margin-bottom: 143px;
  }
  .footer-bottom {
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer-bottom-item {
    width: auto;
  }
  .footer-bottom-item:first-child {
    margin-right: auto;
  }
  .footer-bottom li {
    min-width: 20px;
    margin: 0 0 0 32px;
  }
}

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

.section .section-content-holder {
  padding: 60px 0;
}

.section + .section .section-content-holder {
  border-top: 2px solid #0D0B0D;
}

.section-btn {
  text-align: center;
}

.section-btn {
  display: flex;
  /* flex-direction: column; */
  gap: 16px;
}

.section .btn {
  width: auto;
  
}

.section div .btn {
  width: auto;

}


.section-main {
  padding: 60px 0;
}
.section-main .section-title {
  max-width: 1000px;
}
.section-main .section-text {
  max-width: 1000px;
}
.section-title {
   font-family: var(--main-font); !important
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 16px;
}
.section-text {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 170%;
  color: #26272C;
}
.section-text p {
  margin: 0;
}
.section-text p + p {
  margin-top: 16px;
}

.section-subtitle {
   font-family: var(--main-font); !important
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 16px;
}
.section-list {
   font-family: var(--main-font); !important
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-list li {
  border-bottom: 1px solid #828282;
  margin-bottom: 20px;
}
.section-list li:last-child {
  margin-bottom: 0;
}
.section-list a {
  color: #0D0B0D;
  font-size: 26px;
  line-height: 32px;
  padding: 16px 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
}

.section-projects {
  padding-bottom: 60px;
}
.section-projects .section-btn {
  margin-bottom: 32px;
}
.section-projects .section-content-holder {
  padding-bottom: 0;
}
.section-center .section-content {
  padding: 60px 0 8px;
}
.section-contacts .section-title {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .section-btns {
	  	  display: flex;
	  gap:16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .section .section-content-holder {
    padding: 100px 0;
  }
  .section .btn {
    width: 100%;
  }
	
	
  .section-subtitle {
    margin-top: 30px;
  }
  .section-title {
    font-size: 72px;
    line-height: 89px;
  }
  .section-text {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .section-main {
    padding-top: 235px;
  }
  .section-list a:hover {
    padding-left: 12px;
  }
  .section-content-holder {
    display: grid;
    gap: 20px;
    grid-template-columns: 320px 1fr;
  }
  .section-subtitle {
    font-size: 24px;
    line-height: 30px;
  }
  .section-list a {
    font-size: 32px;
    line-height: 39px;
  }
  .section-btn {
    margin-top: 30px;
    text-align: left;
	   
  }
	
  .section-content-top {
    display: grid;
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
    gap: 20px;
  }
  .section-projects {
    padding-bottom: 100px;
  }
  .section-projects .section-btn {
    margin-top: 20px;
  }
  .section-projects .section-content-holder {
    padding-bottom: 0;
  }
  .section-contacts .section-btn {
    text-align: left;
  }
  .section-center .section-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 100px;
  }
}
.product-img {
  margin-bottom: 20px;
}
.product-item {
  margin-bottom: 32px;

    flex: 1 1 calc(55% - 20px);
    max-width: calc(55% - 20px);
    box-sizing: border-box;
}
.product-item:last-child {
  margin-bottom: 0;
}
.product-item a {
  color: #26272C;
}
.product-name {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 16px;
}
.product-name i {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-name-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
font-family: var(--main-font); !important	
}
.product-name-subtitle {
  font-size: 18px;
  line-height: 170%;
  color: #828282;
	font-family: var(--main-font); !important
}
.product-price {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
	font-family: var(--main-font); !important
}
.product-list-sm {
  padding-bottom: 60px;
}
.product-list-sm .product-name {
  margin-bottom: 8px;
}


/* Стили для блока ShareDaddy */
.sharedaddy.sd-sharing-enabled .sd-content ul {
  padding: 0; /* Убираем стандартные отступы */
  margin: 0; /* Убираем стандартные внешние отступы */
  display: flex; /* Делаем список горизонтальным (если еще не применен) */
  align-items: center; /* Выравниваем элементы по центру по вертикали */
  gap: 16px; /* Отступ между элементами (можно настроить) */
}

/* Убираем точки, добавленные через ::before */
.sharedaddy.sd-sharing-enabled .sd-content ul li::before {
  content: none !important; /* Убираем содержимое псевдоэлемента ::before */
  display: none !important; /* Дополнительно скрываем ::before */
}

/* Убираем стандартные маркеры списка (на всякий случай) */
.sharedaddy.sd-sharing-enabled .sd-content ul,
.sharedaddy.sd-sharing-enabled .sd-content ul li {
  list-style: none !important; /* Убираем маркеры списка */
}

/* Стили для элементов списка */
.sharedaddy.sd-sharing-enabled .sd-content ul li {
  margin: 0; /* Убираем отступы у li */
}

/* Стили для ссылок (иконок) */
.sharedaddy.sd-sharing-enabled .sd-content ul li a {
  display: block; /* Делаем ссылку блочным элементом */
  text-decoration: none; /* Убираем подчеркивание */
}

/* Опционально: стили для десктопной версии (min-width: $xl) */
@media (min-width: 1200px) {
  .sharedaddy.sd-sharing-enabled .sd-content ul {
    gap: 16px; /* Увеличиваем отступ между иконками для десктопа */
  }
	
	/* Стили для мобильной версии (max-width: $xl - 1px) */
@media (max-width: calc(1200px - 1px)) {
  .sharedaddy.sd-sharing-enabled .sd-content ul {
    flex-direction: column; /* Иконки выстраиваются вертикально */
    align-items: flex-start; /* Выравниваем иконки по левому краю */
    gap: 8px; /* Уменьшаем отступ между иконками для мобильной версии */
  }

  /* Опционально: центрируем иконки, если нужно */
  .sharedaddy.sd-sharing-enabled .sd-content ul li {
    display: flex;
    justify-content: center; /* Центрируем иконку внутри li */
    width: 100%; /* Делаем li на всю ширину для равномерного выравнивания */
  }

}

/* Скрываем заголовок "Поделиться в:" (опционально, если не нужен) */
.sharedaddy.sd-sharing-enabled .sd-title {
 margin-top: 42px; /* Отступ сверху 32px */
	margin-bottom: 16px;
  font-weight: 100; /* Вес шрифта регулярный (300) */
  font-size: 42px;
	font-family: var(--main-font); !important
}



@media (min-width: 576px) {
  .product-list {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
  
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
  .product-list-custom .product-item {
    margin-bottom: 0;
    padding-bottom: 12px;
  
	flex: 0 1 100%; /* Растягиваем карточку */
    max-width: 100%;
    box-sizing: border-box;
}
}
  
  .product-list-sm .product-item {
    margin-bottom: 12px;
  
    flex: 1 1 calc(50% - 20px);
    width: 100%;
    box-sizing: border-box;
}   
}
@media (min-width: 1200px) {
  .product-link:hover {
    opacity: 1;
  }
  .product-link:hover img {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  .product-link:hover .icon-top {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .product-img {
    overflow: hidden;
  }
  .product-img img {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .product-list {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
  .product-list-sm {
    padding-bottom: 88px;
    margin-top: 20px;
  }
  .product-name-title {
    font-size: 26px;
    line-height: 31px;
  }
  .product-name-subtitle {
    font-size: 20px;
  }
  .product-price {
    font-size: 26px;
    line-height: 31px;
  }
}
@media (max-width: 576px) {
  .product-img img {
    width: 100%;
  }
}
.product-img {
  margin-bottom: 20px;
}
.product-item {
  margin-bottom: 32px;

	flex: 0 1 100%; /* Растягиваем карточку */
    max-width: 100%;
    box-sizing: border-box;
}
.product-item:last-child {
  margin-bottom: 0;
}
.product-item a {
  color: #26272C;
}
.product-name {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 16px;
}
.product-name i {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-name-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
}
.product-name-subtitle {
  font-size: 18px;
  line-height: 170%;
  color: #828282;
}
.product-price {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
}
.product-list-sm {
  padding-bottom: 60px;
}
.product-list-sm .product-name {
  margin-bottom: 8px;
}

@media (min-width: 576px) {
  .product-list {
    display: grid;
    gap: 28px;
     grid-template-columns: 2fr;
  
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 24px;
}
  .product-list-custom .product-item {
    margin-bottom: 0;
    padding-bottom: 12px;
  
   flex: 0 1 100%; /* Растягиваем карточку */
      max-width: calc(50% - 20px); /* Тут параметры карточки */
    box-sizing: border-box;
}
}

  .product-list-sm .product-item {
    margin-bottom: 12px;
  
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    box-sizing: border-box;
}
}
@media (min-width: 1200px) {
  .product-link:hover {
    opacity: 1;
  }
  .product-link:hover img {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  .product-link:hover .icon-top {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .product-img {
    overflow: hidden;
  }
  .product-img img {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .product-list {
    margin-top: 28px;
  
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px;
}
  .product-list-sm {
    padding-bottom: 88px;
    margin-top: 20px;
  }
  .product-name-title {
    font-size: 26px;
    line-height: 31px;
  }
  .product-name-subtitle {
    font-size: 20px;
  }
  .product-price {
    font-size: 26px;
    line-height: 31px;
  }
}
@media (max-width: 576px) {
  .product-img img {
    width: 100%;
  }
}
.cases-page .section-holder .section-content-holder {
  padding-bottom: 12px;
}
.cases-page .section-products {
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .cases-page .section-holder .section-content-holder {
    padding-bottom: 0;
    padding-top: 160px;
  }
}
.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-item {
  margin-bottom: 32px;
  border-bottom: 1px solid #828282;
}
.team-item-link {
  color: #26272C;
}

.team-item-img {
  display: none;
  pointer-events: none;
z-index:9999;
	position: relative;
}
.team-item-img img {
  width: 100%;
  height: 300px;
  max-width: 300px;
  object-fit: cover;
	z-index:9999;
	position: relative;
}

.team-item-row {
  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;
}
.team-item-name {
   font-family: var(--main-font); !important
  font-size: 22px;
  line-height: 27px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 8px;
}
.team-item-info {
  font-size: 18px;
  line-height: 170%;
  color: #828282;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .section-team .section-text {
    margin-bottom: 60px;
  }
  .section-team .section-btn {
    margin-top: 60px;
  }
  .team-item {
    position: relative;
    margin: 0;
  }
  .team-item-name {
    font-size: 32px;
    line-height: 39px;
    margin: 0 auto 0 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .team-item-info {
    font-size: 20px;
    margin: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .team-item-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px;
  }
  .team-item-img {
    position: absolute;
    left: 35%;
    top: -100px;
    will-change: transform;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: 1;
    display: block;
    opacity: 0;
  }
  .team-item-link {
    width: 100%;
    padding-top: 50px;
    position: relative;
    display: block;
  }
  .team-item-link:hover {
    z-index: 1;
  }
  .team-item-link:hover .team-item-name {
    padding-left: 12px;
  }
  .team-item-link:hover .team-item-info {
    padding-right: 8px;
  }
  .team-item-link:hover .team-item-img {
    opacity: 1;
    -webkit-animation: img-animation 1800ms ease-in-out forwards;
    animation: img-animation 1800ms ease-in-out forwards;
  }
}
@-webkit-keyframes img-animation {
  from {
    -webkit-transform: translate3d(0, 0px, 0px) rotateZ(-8deg);
    transform: translate3d(0, 0px, 0px) rotateZ(-8deg);
  }
  to {
    -webkit-transform: translate3d(50%, 0px, 0px) rotateZ(0deg);
    transform: translate3d(50%, 0px, 0px) rotateZ(0deg);
  }
}
@keyframes img-animation {
  from {
    -webkit-transform: translate3d(0, 0px, 0px) rotateZ(-8deg);
    transform: translate3d(0, 0px, 0px) rotateZ(-8deg);
  }
  to {
    -webkit-transform: translate3d(50%, 0px, 0px) rotateZ(0deg);
    transform: translate3d(50%, 0px, 0px) rotateZ(0deg);
  }
}
.info-block {
  position: fixed;
  right: 16px;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 16px 36px 16px 16px;
  max-width: 531px;
  display: none;
}
.info-block.is-active {
  display: block;
  z-index: 1;
}
.info-block-title {
   font-family: var(--main-font); !important
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 8px;
}
.info-block-text {
  font-size: 14px;
  line-height: 21px;
  color: #828282;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}
.info-block-holder {
  gap: 8px;
  display: grid;
  grid-template-columns: 40px 1fr;
}
.info-block-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
}
.info-block-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  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;
}
.info-block-link i {
  margin-left: 5px;
}

@media (min-width: 576px) {
  .info-block {
    left: auto;
  }
}
@media (min-width: 1200px) {
  .info-block {
    right: 24px;
    bottom: 44px;
    padding: 24px;
  }
  .info-block-holder {
    gap: 24px;
    grid-template-columns: 70px 1fr;
  }
  .info-block-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 12px;
  }
  .info-block-text {
    font-size: 18px;
    line-height: 170%;
    margin-bottom: 12px;
  }
  .info-block-close {
    top: 10px;
    right: 10px;
  }
}
.video {
  width: 100%;
}
.video-holder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  position: relative;
}
.video-play-btn {
  position: absolute;
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.video-play-btn i {
  width: 100%;
  height: 100%;
  background-size: contain;
}
.video-play .video-play-btn {
  display: none;
}

@media (min-width: 1200px) {
  .video-play-btn {
    width: 120px;
    height: 120px;
  }
}
.contacts-subtitle {
   font-family: var(--main-font); !important
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
  margin-top: 60px;
}
.contacts-item {
  border-bottom: 1px solid #828282;
  margin-bottom: 28px;
}
.contacts-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.contacts-item-title {
   font-family: var(--main-font); !important
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 10px;
}
.contacts-item-text {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 22px;
}
.contacts-item a {
  color: #26272C;
}

.section-map img {
  margin: auto;
  max-width: 100%;
}

@media (min-width: 1200px) {
  .contacts-subtitle {
    text-align: center;
    font-size: 32px;
    line-height: 39px;
    max-width: 1000px;
    margin: 100px auto 60px;
  }
  .contacts-holder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1212px;
    margin: 0 auto;
  }
  .contacts-item {
    border-bottom: none;
    position: relative;
    text-align: center;
  }
  .contacts-item:after {
    content: "";
    width: 1px;
    height: 45px;
    background: #828282;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .contacts-item:last-child:after {
    content: none;
  }
  .contacts-item-title {
    font-size: 24px;
    line-height: 30px;
  }
  .contacts-item-text {
    font-size: 20px;
    line-height: 24px;
    max-width: 350px;
    margin: 0 auto;
  }
}



/**footer section */

.footer .logo {
  width: 192px;
  height: 22px;
}
.footer-content {
  border-top: 2px solid #828282;
  padding-top: 60px;
}
.footer-info {
  font-size: 32px;
  line-height: 44px;
  max-width: 353px;
  font-family: var(--main-font); !important
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
  margin-bottom: 60px;
}
.footer-col {
  width: calc(50% - 16px);
}
.footer-col.col-xs-12 {
  width: 100%;
}
.footer-col-info {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
}
.footer-col-title {
  line-height: 22px;
  font-size: 16px;
}
.footer-middle-text {
  margin-bottom: 60px;
}
.text-secondary {
  color: #C3C6CB;
}
.footer-col-info {
  margin-top: 8px;
}
.footer-col-info a {
  color: #ffffff;
}
.footer-bottom {
  margin-bottom: 50px;
}
.footer-bottom li  {
  min-width: auto;
  margin: 0 16px 16px 0;
  line-height: 20px;
}
.footer-bottom-item {
  margin-top: 24px;
}
.footer-bottom-item:last-child {
  margin-top: 12px;
}

@media(min-width: 1200px) {
  .footer-top {
    margin-bottom: 145px;
  }
  .footer-content {
    padding-top: 80px;
  }
  .footer-info {
    margin-left: calc(50% + 16px);
  }
  .footer-col.col-xs-12,
  .footer-col {
    width: calc(25% - 8px);
  }
  .footer-middle-text {
    margin-bottom: 124px;
  }
  .footer-row {
    margin-bottom: 120px;
  }
  .footer-bottom li {
    margin-bottom: 0;
  }
  .footer-bottom-item,
  .footer-bottom-item:last-child {
    margin-top: 0;
  }
  .footer-bottom-item:last-child {
    margin-left: 46px;
  }
}


/**about us section */

.section-subtitle-text {
    font-family: var(--main-font); !important
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #0D0B0D;
  display: flex;
  flex-direction: column;
}
.section-subtitle-picture {
 margin-bottom: 12px;
}
.section-about .section-content {
  margin-top: 42px;
}
.section .btn-width-auto {
  width: auto;
}
.section-btn-align-left {
  text-align: left;
} 
.section-subtitle-text {
   font-family: var(--main-font); !important
  font-weight: 400;
}
.section-about .section-text {
  margin-bottom: 16px;
}
@media(min-width: 1200px) {
  .section-about .section-subtitle {
    margin-top: 0;
  }
  .section-about .section-content .section-subtitle {
    line-height: 37px;
  }
  .section-about .section-content {
    margin-top: 0;
  }
  .section-about .section-title {
    line-height: 1;
  }
  .section-about .section-btn {
    margin-top: 0;
  }
}

.section-reviews .section-text {
  font-size: 20px;
  line-height: 34px;
}
.section-reviews .section-title-holder {
  margin-bottom: 24px;
}
.swiper {
  width: 100%;
}

/*отзывы*/ 
.review-card {
  padding: 24px;
  height: auto;
  display: block;
  color: #0D0B0D;
  background-color:#F1F3F7;
}

.review-card-title {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #DBE1EA;
  margin-bottom: 24px;
}

.review-card-title .title-number {
  font-size: 32px;
  line-height: 44px;
  margin-right: 4px;
  display: inline-flex;
}
.star {
  display: inline-flex;
  width: 24px;
  height: 24px;
}
.star-list {
  display: inline-flex;
  align-content: center;
}
.review-card-text {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.review-card-content p {
    -webkit-line-clamp: 6; /* Ограничивает до 3 строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
} 

.review-card-company {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 27px;
	font-family: var(--main-font); !important
}
.review-card-author {
  color: #26272C;
  font-size: 16px;
  line-height: 20px;
}
.section-reviews .slider-container {
  margin: 0 -16px;
}
.section-reviews .swiper-wrapper {
  padding-left: 16px;
}
.section-reviews .swiper-buttons {
  display: none;
}
.section-reviews .swiper {
  padding-bottom: 52px;
}
.section-reviews .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  color: #F5F5F7;
}
.section-reviews .swiper-pagination-bullet-active {
  background: #26272C;
}
.review-card-info {
  display:  none;
}
.section-reviews .section-content-holder {
  border-bottom: 2px solid #26272C;
}
@media(min-width: 768px) {
  .section-reviews .swiper-wrapper {
    padding: 0;
  }
  .section-reviews .slider-container {
    margin: 0 auto;
  }
}
@media(min-width: 1200px) {
  .section-content-holder.full-width {
    display: block;
  }
  .xl-hiddin {
    display: none;
  }
  .section-reviews .section-title-holder {
    display: flex;
  }
  .section-reviews .section-title {
    max-width: 960px;
    margin-right: auto;
    line-height: 1;
    margin-bottom: 0;
  }
  .section-reviews .section-title-holder {
    margin-bottom: 60px;
  }
  .section-reviews .swiper {
    padding-bottom: 0;
  }
  .section-reviews .swiper-pagination {
    display: none;
  }
  .section-reviews .swiper-buttons {
    display: block;
  } 
  .section-reviews .slider-container {
    display: grid;
    grid-template-columns: 433px 1fr;
    gap: 20px;
  }
  .review-card {
    height: 100%;
    padding: 42px;
  }
  .review-card-info {
    display: block;
    border: 1px solid #DBE1EA;
    padding: 42px;
  }
  .card-info-number {
    font-size: 100px;
    line-height: 120px;
	  font-family: var(--main-font); !important
  }
  .card-info-content .review-card-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
  }
  .card-info-title-container {
    background-color: #F1F3F7;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    padding: 16px;
  }
  .card-info-img {
    padding-right: 19px;
    border-right: 1px solid #828282;  
    margin-right: 19px;
  }
  .card-info-title {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 24px;
  }
  .card-info-title-holder {
    margin-bottom: 50px;
  }
  .section-reviews .section-btn {
    margin-top: 46px;
  }
  .review-card-text {
    font-size: 20px;
    line-height: 34px;
  }
  .review-card-title {
    margin-bottom: 31px;
  }
  .review-card-text {
    margin-bottom: 43px;
  }
  .section-reviews .swiper-button-prev,
  .section-reviews .swiper-button-next {
    width: 49px;
    height: 49px;
    background-image: url(../img/icons/slider-arrow.svg);
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .section-reviews .swiper-button-prev {
    left: 0;
  }
  .section-reviews .swiper-button-next {
    right: 0;
    rotate: 180deg;
  }
  .section-reviews .swiper-button-next::after,
  .section-reviews .swiper-button-prev::after {
    content: none;
  }
  .swiper-buttons-holder {
    display: block;
    width: 114px;
    height: 49px;
    position: relative;
    z-index: 1;
  }
}

/**companies section */

.section-inner-indent {
  margin: 60px 0;
}
.align-center {
  text-align: center;
}
.section-hero .section-text {
  margin-bottom: 20px;
} 
.section-hero .section-title {
  max-width: 1000px;
  margin: 0 auto;
} 
.hero-advantages {
  margin: 40px 0 58px;
}
.advantages-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.advantages-list-item {
  position: relative;
  padding-left: 32px;
  font-size: 20px;
  line-height: 24px;
}
.advantages-list-item:before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background-image: url(../img/icons/icon-ckeck.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.jc-center {
  justify-content: center;
}
.hero-brands {
  margin: 0 0;
}
.brands-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brands-list-item {
  width: calc(50% - 4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .brands-list-item {
    width: calc((100% - 16px) / 3);
  }
}
@media screen and (min-width: 1200px) {
  .advantages-list {
    align-items: center;
    justify-content: center;
  }
  .brands-list {
    gap: 16px;
  }
  .brands-list-item {
    width: calc((100% - 80px) /6);
  }
  .hero-brands,
  .section-inner-indent {
    margin: 100px 0;
  }
  .section-hero .section-title {
    line-height: 1;
  }
}

.section-reviews .slider-container {
    margin: 0 -16px;
    position: relative;
}


.single-case-container {
    max-width: 980px; /* Ограничиваем ширину контента */
    margin: 100px auto; /* Центрируем контейнер */
    padding: 100px auto;
}

.single-case-container img {
    width: 100vw;; /* Растягиваем изображение на всю ширину контейнера */
    max-width: 1340px; /* Предотвращаем выход за границы */
    height: auto; /* Сохраняем пропорции */
    display: block;
  margin: 100px auto; /* Центрируем контейнер */
    left: 50%; /* Центрируем относительно экрана */
    transform: translateX(-50%); /* Корректируем выравнивание */
  position: relative; /* Оставляем относительное позиционирование */
}

blockquote {
    font-style: italic; /* Курсивный стиль */
    font-size: 22px; /* Размер шрифта */
    font-weight: 400; /* Средняя жирность */
    line-height: 1.6; /* Удобное межстрочное расстояние */
    color: #222; /* Цвет текста */
    max-width: 800px; /* Ограничиваем ширину, чтобы текст был читаемым */
    margin: 30px auto; /* Центрируем блок */
    padding: 20px;
    position: relative;
  border-left: 4px solid #D4EE36; /* Цвет линии слева */
}

.strong {
    font-weight: 900; /* Усиленный жирный шрифт */
    color: #0D0B0D; /* Темный цвет текста (можно изменить) */
    text-transform: uppercase; /* Капслок для дополнительного выделения */
    letter-spacing: 0.5px; /* Легкое разрежение букв */
}

.b {
    font-weight: 900; /* Усиленный жирный шрифт */
    color: #0D0B0D; /* Темный цвет текста (можно изменить) */
    text-transform: uppercase; /* Капслок для дополнительного выделения */
    letter-spacing: 0.5px; /* Легкое разрежение букв */
}

.single-case-container  h2 {
	font-family: var(--main-font) !important;
    font-weight: 200;
    font-size: 42px;
    color: #0D0B0D;
    position: relative;
    padding-bottom: 10px;
	line-height: 1.5; /* Добавлен межстрочный интервал */
}

.single-case-container  h3 {
    font-family: var(--main-font) !important;
    font-weight: 200;
    font-size: 32px;
    color: #0D0B0D;
    position: relative;
    padding-bottom: 10px;
	line-height: 1.5; /* Добавлен межстрочный интервал */
}

@media (max-width: 414px) {
.single-case-container  h2 {
    font-family: var(--main-font)!important;
    font-size: 24px;
 
}
.single-case-container  h3 {
    font-family: var(--main-font) !important;
    font-size: 18px;
}
	
.single-case-container img{
	 width: 100vw; /* Растягиваем изображение на всю ширину контейнера */
    max-width: 1340px; /* Предотвращаем выход за границы */
    height: auto; /* Сохраняем пропорции */
    display: block;
	margin: 24px auto;
    left: 50%; /* Центрируем относительно экрана */
    transform: translateX(-50%); /* Корректируем выравнивание */
    position: relative; /* Оставляем относительное позиционирование */
}
}

/* Большие телефоны / маленькие планшеты */
@media (max-width: 480px) {
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
}

/* Планшеты и маленькие ноутбуки */
@media (max-width: 768px) {
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
}

/* Мобильные очень маленькие устройства */
@media (max-width: 360px) {
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
}


.single-case-container a {
    color: #0D0B0D; /* Основной цвет ссылок */
    text-decoration: none; /* Убираем стандартное подчеркивание */
    font-weight: 600; /* Делаем текст немного жирнее */
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* При наведении */
.single-case-container a:hover {
    text-decoration: underline; /* Добавляем подчеркивание */
    color: #b5d129; /* Темнее для эффекта */
}

/* При нажатии */
.single-case-container a:active {
    color: #9bbf22; /* Еще темнее при клике */
}

/* Для ссылок внутри параграфов */
.single-case-container p a {
    font-weight: bold; /* Жирный текст для ссылок в тексте */
}


.single-case-container ul {
    list-style: none; /* Убираем стандартные маркеры */
    padding: 0;
}

.single-case-container li {
    position: relative;
    padding-left: 32px; /* Отступ для маркера */
    font-size: 20px;
    font-weight: 500;
    color: #222; /* Цвет текста */
    display: flex;
    align-items: bottom;
}

/* Добавляем квадратный черный маркер */
.single-case-container li::before {
    content: "■"; /* Символ квадрата */
    color: #0D0B0D; /* Черный цвет */
    font-size: 16px; /* Размер квадрата */
    position: absolute;
    left: 0;
    top: 12%;
    transform: translateY(-12%);
}







@media (max-width: 1024px) {
    .primary-button, .secondary-button {
        width: 100%;
        display: block;
        text-align: center;
    }
}


/* Теги в кейсах внутри и на превью */

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
	margin-bottom: 24px;
}

.case-tags .tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 16px;
  color: #0D0B0D;
  background-color: #F1F3F7;
  border-radius: 20px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.case-tags .tag:hover {
  background-color: #E3E7EE;
  color: #000;
  cursor: default;
}

@media (max-width: 480px) {
  .case-tags {
    gap: 6px;
  }

  .case-tags .tag {
    font-size: 13px;
    padding: 5px 10px;
  }
}


/* Фильтры на станице кейсы */

.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center; /* Центрирование */
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}

.tag-filter li {
  margin: 0;
}

.tag-filter button {
  background-color: transparent;
  border: none;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #0D0B0D;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tag-filter button:hover {
  background-color: #F1F3F7;
  color: #0D0B0D;
}

.tag-filter button.active {
  background-color: #0D0B0D;
  color: #fff;
}

.loading {
  text-align: center;
  padding: 40px 0;
  font-size: 16px;
  color: #666;
}

@media (max-width: 600px) {
  .tag-filter {
    gap: 8px;
  }

  .tag-filter button {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* крошки злебные на станице кейсы */

#breadcrumbs, .breadcrumbs {
  font-size: 12px;
margin-top: 20px;
  color: #777;
}

.breadcrumbs a {
  color: #0D0B0D;
  text-decoration: none;
}

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

.breadcrumbs span, .breadcrumbs > *:not(:last-child)::after {
  content: "›";
  margin: 0 6px;
  color: #bbb;
}