html,
body {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  /* background: #000; */
  /* Предотвращает горизонтальный скролл */
}

/* header  */
.top__80px {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
}

.block__header {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  /* Важно для корректного отображения dropdown */
  height: 380px;
  background-image: url(../img/fon/fon-top.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}

.block__header .background-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Цвет и прозрачность маски */
  z-index: 0;
  /* Размещаем маску за видео и контентом */
}

.block__header .logo {
  position: relative;
  display: block;
  width: 165px;
  height: 55px;
  margin-left: 10px;
  background-image: url("../img/kotelinfo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {
  .block__header {
    position: relative;
    display: block;
    max-width: 1920px;
    margin: auto;
    width: 100%;
    height: 400px;
    background-image: url(../img/fon/fon-top-mac.webp);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
  }

  .block__header .background-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Цвет и прозрачность маски */
    z-index: 0;
    /* Размещаем маску за видео и контентом */
  }

  .block__header .logo {
    position: relative;
    display: block;
    width: 180px;
    height: 55px;
    margin-left: 10px;
  }
}

/* Стили для навбара */
.navbar__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 9000;
}

.navbar-container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
}

.logo {
  font-size: 1.5em;
  color: #fff;
  text-decoration: none;
}

.menu {
  list-style: none;
  display: flex;
}

.menu li {
  position: relative;
  font-size: 1.1rem;
}

@media (min-width: 769px) {
  .menu li {
    position: relative;
    font-size: 1.1rem;
    top: 5px;
  }
}

.menu li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  border-left: 1px solid yellow;
  letter-spacing: 0.5px;
}

/* Стилизация выпадающего меню для десктопа */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000000ac;
  list-style: none;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
  border-radius: 5px;

}

.submenu li a {
  padding: 10px;
  color: #fff;
  border-left: none;
  letter-spacing: 1.1px;
}

/* При ховере на десктопе показываем подменю */
.menu li:hover>.submenu {
  opacity: 1;
  visibility: visible;
}

/* Иконка для корзины */
.cart {
  font-size: 1.5em;
  color: #fff;
  cursor: pointer;
}

/* Иконка мобильного меню */
.menu-toggle {
  margin-top: -4px;
  display: none;
  font-size: 2.4em;
  color: #fff;
  cursor: pointer;
}

/* Стили для мобильного */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background: #060606f2;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu li {
    border-bottom: 0px solid transparent;
  }

  .menu li a {
    display: block;
    padding: 30px 15px;
    font-size: 1.2rem;
    font-family: 'Raleway', sans-serif;
    text-align: left;
    letter-spacing: 0.5px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    border-bottom: 0.5px solid #fff;
    border-left: none;
  }

  /* Убираем позиционирование у подменю */
  .menu li .submenu {
    position: relative;
    top: 0;
    left: 0;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

  .submenu li a {
    padding: 10px;
    color: #fff;
    border-bottom: 0px solid transparent;
    border-left: none;
    letter-spacing: 1.1px;
  }

  .menu-toggle {
    display: block;
  }

  /* Активное основное меню */
  .menu.active {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    height: 100vh;
  }

  /* Активное подменю */
  .menu li .submenu.active {
    max-height: 600px;
    /* Можно подстроить под нужную высоту */
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }
}


/* catalog block zagolovok */
.catalog-block-zagolovok {
  padding: 20px;
}

.catalog-item-zagolovok {
  position: relative;
  overflow: hidden;
}

.block-cub {
  position: absolute;
  display: block;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
  height: 460px;
  /* background-color: #fecc17; */
  background-image: url("../img/icon/block-cub-fon.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.catalog-item-zagolovok img {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {
  .catalog-item-zagolovok img {
    position: relative;
    display: block;
    width: 100%;
    margin: auto;
    height: 500px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
}

.catalog-item-zagolovok:hover img {
  transform: scale(1.05);
}

/* catalog item title about */
.catalog-item-title-zagolovok h1 {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  margin: auto;
  padding: 20px;
  /* transform: translate(-50%, -50%); */
  color: rgb(0, 0, 0);
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;

}

@media (max-width: 768px) {
  .catalog-item-title-zagolovok h1 {
    width: 100%;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-align: left;
    padding: 5px;
  }
}

@media (max-width: 576px) {
  .catalog-item-title-zagolovok h1 {
    width: 100%;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-align: left;
    padding: 5px;
  }
}

/* catalog item description about */
.catalog-item-description-zagolovok {
  position: relative;
  width: 90%;
  top: 0;
  left: 0;
  /* transform: translate(-50%, -50%); */
  color: rgb(0, 0, 0);
  height: auto;
  padding: 10px;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1.1px;
  /* border: 1px solid; */
  text-align: left;
  border-left: 2px solid #f4f4f4;
}

@media (max-width: 768px) {
  .catalog-item-description-zagolovok {
    width: 100%;
    height: auto;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.1px;
    /* border: 1px solid; */
    text-align: left;
  }
}

@media (max-width: 576px) {
  .catalog-item-description-zagolovok {
    width: 100%;
    height: auto;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.1px;
    /* border: 1px solid; */
    text-align: left;
  }

  .catalog-block-zagolovok .row>div {
    /* flex: 0 0 50%; */
    max-width: 100%;
    height: 100%;
    margin: auto;
    padding: 0 20px 10px;
    margin-top: 20px;
  }
}

/* Общие стили для обоих видео */
.section-video-top {
  position: relative;
  width: 100%;
  /* max-width: 1200px; */
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-video-top h3 {
  position: absolute;
  width: 363px;
  height: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #fff;
  top: 24px;
  left: 10px;
  /* margin-top: -19px; */
  /* margin-left: 0; */
  text-align: left;
  padding: 20px;
  z-index: 1;
  border-top: solid 2px #f4f4f4;
}
#infoZagolovokVideoSmallBlock,
#infoZagolovokVideoLarge {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* По умолчанию показываем маленькое видео */
#infoZagolovokVideoSmallBlock {
  display: block;
}

/* Большое видео скрыто на маленьких экранах */
#infoZagolovokVideoLarge {
  display: none;
}

/* Переключение на большие экраны (от 1024px) */
@media (min-width: 1024px) {
  #infoZagolovokVideoSmallBlock {
    display: none;
  }
  #infoZagolovokVideoLarge {
    display: block;
    object-fit: cover;
  }
  .section-video-top h3 {
    position: absolute;
    width: 600px;
    height: 10px;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #fff;
    top: 24px;
    left: 24px;
    /* margin-top: -19px; */
    /* margin-left: 0; */
    text-align: left;
    padding: 30px;
    z-index: 1;
    border-top: solid 2px #f4f4f4;
  }
}
@media (max-width: 480px) {
  .section-video-top {
    position: relative;
    width: 100%;
    /* max-width: 1200px; */
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.background-mask-section-video-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* catalog block zagolovok end */

.fon-bottom-video {
  position: relative;
  display: block;
  width: 100%;
  height: 17px;
  background: url(../img/icon/fon-bottom-video.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


/* catalog block */
.catalog-block {
  padding: 20px;
  position: relative;
  display: block;
  max-width: 1920px;
  margin: auto;
  width: 100%;
  height: auto;
  background-image: url(../img/fon/fon-top-mac.webp);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
  border-bottom: 10px solid yellow;
}

.catalog-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #f4f4f4be;
  background-color: #00000081;
}

.catalog-item img {
  position: relative;
  display: block;
  width: 160px;
  margin: auto;
  height: 100px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {
  .catalog-item img {
    position: relative;
    display: block;
    width: 200px;
    margin: auto;
    height: 180px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
}

.catalog-item:hover img {
  transform: scale(1.25);
}

.catalog-item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  text-align: center;
  padding-left: 10px;
  background-color: #0000008b;
  padding-right: 10px;
}

@media (max-width: 768px) {
  .catalog-item-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1.1px;
    padding-left: 10px;
    background-color: #000000e9;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .catalog-item-title {
    font-size: 1.2rem;
  }

  .catalog-block .row>div {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* catalog block end */




/* informacia clienta wrapper */

.informacia-clienta-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  margin-bottom: 30px;
  background-color: #fff;
  /* border-radius: 10px; */
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.top-section img {
  width: 50%;
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {
  .top-section img {
    position: relative;
    display: block;
    width: 23%;
    margin: auto;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

}

.top-section .text {
  width: 55%;
  padding: 0 20px;
  letter-spacing: 1.1px;
}

.top-section .text h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1.1px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

@media (min-width: 769px) {
  .top-section .text h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1.1px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  }
}

.top-section .text h1 span {
  background-color: #fecc17;
  padding: 0 10px;
}

.top-section .text p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #666;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  letter-spacing: 1.1px;
}

.icons-section {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  gap: 10px;
}

.icon {
  text-align: left;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background-color: #fecc17;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  font-size: 2rem;
  color: white;
  background-image: url("../img/fon/kotelinfo-o-nas.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-circle-1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fecc17;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  font-size: 2rem;
  color: white;
  background-image: url("../img/fon/kotelinfo-o-nas-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-circle-2 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fecc17;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  font-size: 2rem;
  color: white;
  background-image: url("../img/fon/kotelinfo-o-nas-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {

  .icon-circle,
  .icon-circle-1,
  .icon-circle-2 {
    width: 150px;
    height: 150px;
  }
}

.icon-title {
  font-size: 12px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 0.2px;
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {
  .icon-title {
    width: 280px;
    font-size: 26px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: bold;
    margin: auto;
    margin-bottom: 5px;
    text-align: center;
    letter-spacing: 1px;
  }
}

.icon-description {
  font-size: 13px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin: auto;
  color: #666;
  margin-bottom: 5px;
  text-align: left;
  letter-spacing: 0.4px;
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {
  .icon-description {
    width: 340px;
    font-size: 1.2rem;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin: auto;
    color: #666;
    margin-bottom: 5px;
    text-align: left;
    letter-spacing: 1.1px;
  }
}

.content-item-icons {
  position: relative;
  overflow: hidden;
}

.content-block-box-icons {
  position: relative;
  display: block;
  margin: auto;
  width: 100%;
  height: 160px;
}

.content-item-icons img {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  height: 80%;
  object-fit: cover;
  /* border-radius: 12px; */
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {
  .content-item-icons img {
    position: relative;
    display: block;
    width: 100%;
    margin: auto;
    height: 180px;
    object-fit: cover;
    /* border-radius: 12px; */
  }

  .content-block-box-icons {
    position: relative;
    display: block;
    margin: auto;
    width: 100%;
    height: 330px;
  }
}

/* .content-item-zagolovok:hover img {
  transform: scale(1.05);
} */


/* content icons  */
.content-item-title-icons h1 {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  margin: auto;
  padding: 20px;
  /* transform: translate(-50%, -50%); */
  color: rgb(0, 0, 0);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;
}

@media (max-width: 768px) {
  .content-item-title-icons h1 {
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-align: left;
    padding: 5px;
  }
}

@media (max-width: 576px) {
  .icons-section {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 10px;
    flex-direction: column;
  }

  .content-item-title-icons h1 {
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-align: center;
    padding: 5px;
  }
}

/* catalog item description about */
.content-item-description-icons {
  position: relative;
  width: 90%;
  top: 0;
  left: 0;
  /* transform: translate(-50%, -50%); */
  color: rgb(0, 0, 0);
  height: auto;
  padding: 10px;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1.1px;
  border-left: 2px solid #f4f4f4;
  text-align: left;
}

@media (max-width: 768px) {
  .content-item-description-icons {
    width: 100%;
    height: auto;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.1px;
    border: none;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .content-item-description-icons {
    width: 100%;
    height: auto;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.1px;
    border: none;
    text-align: left;
  }

  .content-item-description-icons .row>div {
    /* flex: 0 0 50%; */
    max-width: 100%;
    height: 100%;
    margin: auto;
    padding: 0 20px 10px;
    margin-top: 20px;
  }
}

/* content icons end */

/* informacia clienta wrapper end */


/* header end */






/* content block */
.content__block {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  background-color: #fff;
}

/* send block */
.send__block {
  position: relative;
  width: 100%;
  height: 500px;
  margin: auto;
  background-color: #fff;
  /* border: 1px solid #fff; */
  top: 30px;
}

.s__send__block__description__p {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  letter-spacing: 1.1px;
  font-size: 23px;
  font-weight: 600;
  top: 0;
}

.send__block p {
  position: relative;
  display: block;
  width: 360px;
  height: auto;
  margin: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: left;
  letter-spacing: 1.1px;
  font-size: 1.2rem;
  font-weight: 300;
  top: 10px;
}

.wrap__form {
  max-width: 500px;
  width: 90%;
  height: auto;
  margin: auto;
}


/* video info wrapper */
.video-info {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55vh;
  background-color: #f4f4f4;
  z-index: 1;
}

.video-info-wrapper {
  position: relative;
  width: 95%;
  max-width: 1280px;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {
  .video-info {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background-color: #f4f4f4;
    z-index: 1;
  }
}

.video-info-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-info-wrapper .content-video {
  position: relative;
  display: block;
  z-index: 2;
  text-align: center;
  color: white;
}

.video-info-wrapper .content-video h1 {
  background-color: #fbbf00;
  color: #000;
  display: inline-block;
  padding: 10px 20px;
  letter-spacing: 1.1px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
}

.video-info-wrapper .content-video p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.1px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}

.video-info-wrapper span {
  position: absolute;
  display: block;
  width: 200px;
  height: 400px;
  right: 0;
  z-index: 2;
}

.video-info-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* video info wrapper end */

/* problem wrapper */
.problem-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: auto;
}

.problem__block {
  position: relative;
  display: block;
  width: 100%;
  height: 160px;
  margin: auto;
  border-left: 1px solid;
  border-width: 6px;
  /* background-image: url("../img/fon/fon-top.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
}

.problem__block img {
  position: absolute;
  display: block;
  width: 100%;
  margin: auto;
  height: 160px;
  object-fit: cover;
  z-index: 0;
}

.overlay-problem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.number {
  position: absolute;
  display: block;
  right: -25px;
  top: 40px;
  width: 70px;
  height: 70px;
  background-color: #fecc17;
  border-radius: 50%;
  z-index: 2;
}

.number span {
  position: absolute;
  display: block;
  /* padding: 0px 24px; */
  left: 25px;
  bottom: -4px;
  font-size: 2.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 80px;
  text-align: center;
  color: #fff;
}

.cub {
  position: absolute;
  display: block;
  width: 10px;
  height: 160px;
  background-color: #fecc17;
  z-index: 2;
}

/* Блок отдельной проблемы */
.problem {
  background-color: #ffffff;
  /* border: 1px solid #e0e6ed; */
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); */
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  width: 100%;
  /* по умолчанию 100% ширины на малых экранах */
}

.problem:hover {
  transform: translateY(-5px);
}

.problem-wrapper h2 {
  width: 100%;
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  border-bottom: 2px solid #f4f4f4;
  padding: 10px;
  text-align: center;
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {
  .problem-wrapper h2 {
    width: 100%;
    font-size: 3.5rem;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding-top: 20px;
    text-align: center;
  }
}

.problem h3 {
  position: absolute;
  display: block;
  width: 90%;
  font-size: 24px;
  padding: 20px;
  margin-top: 0;
  color: #ffffff;
  letter-spacing: 1.1px;
  font-weight: 600;
  z-index: 2;
  text-shadow: 3px 2px 4px #000000;
}

.problem p {
  line-height: 1.6;
  margin: 12px 0;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1.1px;
}

.problem strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;

}

/* Адаптивность: на экранах от 992px и больше - по 3 блока в ряд */
@media (min-width: 992px) {
  .problem {
    width: calc(33.333% - 20px);
    /* Вычитаем gap */
  }
}

/* На экранах от 600px до 991px - два блока в ряд, если требуется */
@media (min-width: 600px) and (max-width: 991px) {
  .problem {
    width: calc(50% - 20px);
  }
}

/* problem wrapper end */

/* partners wrapper */
.partners-wrapper h4 {
  width: 100%;
  font-size: 23px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  border-top: 2px solid #f4f4f4;
  padding-top: 20px;
  text-align: center;
}

.partners {
  background: #f7f7f7;
  /* світлий фон під зону з логотипами */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Три стовпці на маленьких екранах */
  gap: 0;
  /* Відступи між логотипами */
  justify-items: center;
  align-items: center;
  padding: 20px;
}

/* Кожен логотип */
.partners img {
  max-width: 120px;
  /* Задайте бажаний розмір */
  max-height: 120px;
  object-fit: contain;
  /* Щоб правильно відображати пропорції */
  transition: transform 0.3s ease;
  border-radius: 10px;
}

/* Ефект при наведенні курсора */
.partners img:hover {
  transform: scale(1.05);
}

/* Для екранів від 992px в один ряд */
@media (min-width: 992px) {
  .partners {
    grid-template-columns: repeat(10, auto);
    /* 10 логотипів в один ряд */
    justify-content: center;
    /* центруємо всі елементи горизонтально */
  }
}

/* partners wrapper end */


/* realizovanie wrapper */
.realizovanie-wrapper h4 {
  width: 100%;
  font-size: 23px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  border-top: 2px solid #f4f4f4;
  padding-top: 20px;
  text-align: center;
}

.realizovanie {
  background: #f7f7f7;
  /* світлий фон під зону з логотипами */
  display: grid;
  grid-template-columns: repeat(1, auto);
  /* Три стовпці на маленьких екранах */
  gap: 20px;
  /* Відступи між логотипами */
  width: 90%;
  margin: auto;
  justify-items: center;
  align-items: center;
  /* padding: 20px; */
}

.realizovanie .block-1 {
  position: relative;
  display: block;
  width: 100%;
  height: 560px;
  background-image: url("../img/icon/mcdonalds-fon.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.realizovanie .block-2 {
  position: relative;
  display: block;
  width: 100%;
  height: 560px;
  background-image: url("../img/icon/nova-fon.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.realizovanie .block-3 {
  position: relative;
  display: block;
  width: 100%;
  height: 560px;
  background-image: url("../img/icon/rebernya-fon.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.realizovanie .block-1-logo {
  display: flex;
  justify-content: left;
  align-items: center;
}

.realizovanie .block-1-logo img {
  max-width: 100px;
  /* Задайте бажаний розмір */
  max-height: 100px;
  object-fit: contain;
  /* Щоб правильно відображати пропорції */
  transition: transform 0.3s ease;
  /* border-radius: 10px; */
}

.realizovanie .block-1-logo h1 {
  width: 100%;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 10px;
  color: #fbbf00;
  font-weight: 600;
  letter-spacing: 1.1px;
  /* text-transform: uppercase; */
  /* border-top: 2px solid #f4f4f4; */
  text-shadow: 0 1px 2px #00000061;
  padding-top: 8px;
  text-align: left;
}

.realizovanie .block-1-title {
  position: relative;
  margin: auto;
  display: block;
  width: 95%;
  height: auto;
  font-size: 20px;
  margin-bottom: 10px;
}

.realizovanie .block-1-title p {
  width: 100%;
  font-size: 12px;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-shadow: 0 1px 2px #00000061;
  /* text-transform: uppercase; */
  border-top: 2px solid #f4f4f4;
  padding-top: 20px;
  text-align: left;
}

.realizovanie .block-1-video {
  position: relative;
  margin: auto;
  display: block;
  width: 95%;
  height: auto;
  background-color: #ffffffbd;
  font-size: 20px;
  margin-bottom: 10px;
  top: 10px;
}

/* Кожен логотип */
.realizovanie img {
  max-width: 360px;
  /* Задайте бажаний розмір */
  max-height: 360px;
  object-fit: contain;
  /* Щоб правильно відображати пропорції */
  transition: transform 0.3s ease;
  border-radius: 10px;
}

/* Ефект при наведенні курсора */
.realizovanie img:hover {
  transform: scale(1.25);
}

/* Для екранів від 992px в один ряд */
@media (min-width: 992px) {
  .realizovanie {
    grid-template-columns: repeat(3, auto);
    /* 3 логотипa в один ряд */
    justify-content: center;
    /* центруємо всі елементи горизонтально */
  }
}

/* realizovanie wrapper end */


/* info block */
.info-block-problem {
  font-family: Arial, sans-serif;
}

.info-title-problem {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.collapsible-problem {
  cursor: pointer;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 300;
  text-align: left;
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.collapsible-problem:hover {
  background-color: #fff;
}

.arrow-problem {
  transition: transform 0.3s ease;
}

.collapsible-problem.active .arrow-problem {
  transform: rotate(180deg);
}

.s-img-no {
  width: 50px;
  height: 50px;
  border-bottom: 2px solid #f4f4f4;
}
.s-img-yes {
  width: 55px;
  height: 55px;
  border-bottom: 2px solid #f4f4f4;
  margin-left: 20px;
}
.s-img-no img {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  height: 50px;
  object-fit: contain;
}
.s-img-yes img {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  height: 55px;
  object-fit: contain;
}

.content-info-block-problem {
  padding: 15px;
  display: none;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

@media (max-width: 576px) {
  .info-title-problem {
    font-size: 1.25rem;
  }

  .collapsible-problem {
    font-size: 1.1rem;
    color: #000;
  }

  .content-info-block-problem {
    font-size: 0.95rem;
  }
}

/* info block end */


/* video info wrapper block-1*/
.video-info-block-1 {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  /* background-color: #f4f4f4; */
  z-index: 1;
}

.video-info-wrapper-block-1 {
  position: relative;
  width: 95%;
  max-width: 1100px;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 4px 8px #000000a1;
}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {}

.video-info-wrapper-block-1 video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 200px;
  object-fit: cover;
  z-index: 1;
}

.video-info-wrapper-block-1 .content-video-block-1 {
  position: relative;
  display: block;
  z-index: 2;
  text-align: center;
  color: white;
}

.video-info-wrapper-block-1 .content-video-block-1 h1 {
  background-color: #fbbf00;
  color: #000;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 30px;
  letter-spacing: 1.1px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
}

.video-info-wrapper-block-1 .content-video-block-1 p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.1px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}

.video-info-wrapper-block-1 span {
  position: absolute;
  display: block;
  width: 200px;
  height: auto;
  right: -20px;
  z-index: 2;
}

.video-info-wrapper-block-1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.0); */
  z-index: 1;
}

/* video info wrapper block-1 end */



/* content block end */





/* footer */
.footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .footer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background-color: #000;
  }
}

/* section footer menu */
.section__footer__menu {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}

.section__footer__top {
  display: flex;
  justify-content: center;
  /* Центрируем содержимое */
  align-items: center;
  /* Выравниваем по вертикали */
  width: 100%;
  padding: 20px 0;
}

.footer-columns {
  display: flex;
  flex-direction: row;
  /* Расположить элементы в строку */
  justify-content: center;
  /* Центрируем оба столбца */
  align-items: center;
  /* Выравниваем по вертикали */
  gap: 20px;
  /* Базовый отступ между столбцами для мобильных устройств */
}

.footer-column {
  display: flex;
  flex-direction: column;
  /* Элементы внутри блока располагаются вертикально */
  align-items: center;
  /* Центрируем содержимое */
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-icon {
  width: 60px;
  /* Размер иконки */
  height: 60px;
  object-fit: contain;
  /* Убедиться, что иконки не искажаются */
  margin-bottom: 10px;
  /* Отступ между иконкой и текстом */
}

.footer-logotyp {
  width: 360px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .footer-logotyp {
    width: 700px;
    height: 450px;
    object-fit: contain;
    margin-bottom: 10px;
  }
}

.footer-column p {
  width: 100%;
  max-width: 340px;
  text-align: center;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1.1px;
  font-size: 16px;
  font-weight: 300;
  /* border: solid 1px red; */
}

.footer-title {
  width: 100%;
  max-width: 380px;
  text-align: center;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1.1px;
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 0 1px #00000075;
}

@media (min-width: 1024px) {
  .footer-title {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1.1px;
    font-size: 2.4rem;
    font-weight: 600;
    text-shadow: 0 1px #00000075;
  }
}

.footer-column span {
  width: 100%;
  max-width: 340px;
  text-align: center;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1.1px;
  font-size: 17px;
  font-weight: 500;
  /* border: solid 1px red; */
}

.s__foot__wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.s__foot__wrapper ul {
  display: flex;
  /* Используем Flexbox для позиционирования */
  flex-wrap: wrap;
  /* Позволяет элементам переноситься на следующую строку */
  justify-content: center;
  /* Центрируем элементы по горизонтали */
  list-style: none;
  /* Убираем маркеры списка */
  padding: 0;
  margin: 0;
}

.s__foot__wrapper ul li {
  margin: 0 10px;
  /* Отступы между элементами */
  text-align: center;
  /* Центрируем текст внутри <li> */
  color: #fff;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1.1px;
  font-size: 17px;
  font-weight: 500;
}

.s__foot__wrapper ul li a {
  margin: 0 10px;
  text-align: center;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1.1px;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  text-shadow: 0 1px #00000075;
}

/* section footer menu end */

/* footer content */
.foot__content {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
  z-index: 1;
}

.foot__content p {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  letter-spacing: 1.1px;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  text-shadow: 0 1px #00000075;
  top: 1rem;
}

.foot__content .block__social {
  position: relative;
  display: block;
  width: 140px;
  height: 80px;
  top: 26%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.foot__content .block__social .telegram {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  margin: auto;
  float: left;
  margin-left: 10px;
}

.foot__content .block__social .instagram {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  margin: auto;
  float: left;
  margin-left: 10px;
}

/* Оформления иконки */
.custom-telegram,
.custom-instagram {
  font-size: 2.5rem;
  /* Увеличение размера иконки */
  color: #fff;
  /* Изменение цвета иконки (например, синий оттенок) */
  transition: color 0.3s ease;
  /* Плавное изменение цвета при наведении */
}

/* Цвет при наведении */
.custom-telegram:hover,
.custom-instagram:hover {
  color: #fecc17;
}

/* footer content end */

.block__all__right__reserved {
  position: relative;
  width: 100%;
  height: auto;
  margin: auto;
  top: 20px;
}

.copyright {
  position: absolute;
  display: block;
  width: 300px;
  height: auto;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  font-size: 0.9em;
  font-weight: 300;
  top: 73%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Общие стили для обоих видео на заднем фоне */
#footerVideoSmall,
#footerVideoLarge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* По умолчанию показываем маленькое видео */
#footerVideoSmall {
  display: block;
}

/* Большое видео скрыто на маленьких экранах */
#footerVideoLarge {
  display: none;
}

/* Пример переключения на большие экраны, скажем, от 1024 пикселей */
@media (min-width: 1024px) {
  #footerVideoSmall {
    display: none;
  }

  #footerVideoLarge {
    display: block;
    object-fit: contain;
  }
}

.background-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Цвет и прозрачность маски */
  z-index: -1;
  /* Размещаем маску за видео и контентом */
}

/* footer end */

/* section price */
/* Стили для блока цены */
/* Стили для блока цены */
.section__price {
  width: 100%;
  height: auto;
}

.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}


.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}


/* Стили для блока выбора размера */
.size-block {
  text-align: center;
}

.size-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.size-options .size-btn {
  min-width: 50px;
}

.card__sec__price {
  max-width: 1100px;
  border: none;
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
  border-radius: 10px;
  overflow: hidden;
  margin: auto;
}


.card-text {
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
}

/* Стили для блока выбора размера */
.size-block {
  text-align: center;
}

.size-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.size-options .size-btn {
  min-width: 50px;
}

/* Стили для блока цены */
.price__block {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.price__b1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}

.price__b2 {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  background-color: red;
  padding: 2px 10px;
  border-radius: 0px;
}

/* Стили для кнопки добавления в корзину */
.add-to-cart-button {
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 100px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  transition: background 0.3s ease;
  color: #fff;
  background-color: #000;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.add-to-cart-button:hover {
  background-color: #000;
}

/* Стили для уведомления */
.notification {
  display: none;
  color: green;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

/* Стили для корзины */
.cart-section {
  max-width: 800px;
  /* Увеличим ширину для отображения изображений */
  margin: 20px auto;
  background-color: #fff;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  padding: 20px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.cart__title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.img-fluid-cart {
  position: relative;
  display: block;
  width: 240px;
  height: auto;
  margin: auto;
  border-radius: 5px;
  /* border: 2px solid #f4f4f4; */
  ;
}

@media (min-width: 769px) {
  .img-fluid-cart {
    position: relative;
    display: block;
    width: 280px;
    height: auto;
    margin: auto;
    border-radius: 5px;
    /* border: 2px solid #f4f4f4; */
    ;
  }
}

/* Список товаров */
#cart-items {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px 0;
}

/* Каждый товар - Flex с изображением */
#cart-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

#cart-items li:last-child {
  border-bottom: none;
}

/* Стили для изображения в корзине */
.cart-item-img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}

.cart-item-details {
  display: flex;
  align-items: center;
  flex: -1;
}

/* Сумма */
.cart-total {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: right;
  margin-bottom: 15px;
}

.product-code {
  font-weight: 600;
  /* Делает код товара полужирным */
  margin-left: 2px;
}

/* Кнопка «Оформить заказ» */
.proceed-to-order {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

/* Кнопка "Вернуться на главную" */
.button__wrap__back {
  text-align: center;
  /* Центрируемая кнопка */
  margin-top: 20px;
}

.back__button {
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.back__button:hover {
  background-color: #222;
  /* При наведении чуть темнее */
}

/* Активный размер */
.size-btn.active {
  background-color: #000;
  color: #fff;
  border-color: #007bff;
}

/* Стили для списка корзины */
#cart-items .list-group-item {
  border: none;
  padding: 10px 0;
}

#cart-items .btn-danger {
  padding: 1px 10px;
  font-size: 0.9rem;
}

/* Стили для модального окна */
.modal-body textarea {
  resize: none;
}

/* section price end */

/* section button  */
.section__button__wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.s__button {
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  transition: background 0.3s ease;
  color: #fff;
  background-color: #85bb65;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* section button end */

/* size block */
/* Стили для блока выбора размера */
.size-block {
  max-width: 350px;
  margin: 20px auto;
  text-align: center;
}

.size-title {
  font-size: 1rem;
  font-weight: 300;
  /* Лёгкий шрифт для текста "Оберіть розмір:" */
  margin-bottom: 10px;
  color: #333;
  text-align: left;
}

.size-title .selected-size {
  font-weight: 600;
  /* Жирный шрифт для выбранного размера */
  color: #000;
  /* Цвет выделения */
  font-size: 1.2rem;
}

.size-options {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.size-btn {
  background-color: #f4f4f4;
  border: 0px solid #fff;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.size-btn:hover {
  background-color: #ddd;
}

.size-btn.active {
  background-color: #000;
  color: #fff;
  border-color: #000;
  font-weight: 600;
  /* Жирный шрифт для активной кнопки */
}

/* size block end */

/* section size grid */
.section__size__grid {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  
}

.size__grid__wrapper {
  position: relative;
  display: block;
  margin: auto;
  width: 100%;
  height: auto;
  /* border: 1px solid #000; */
  /* border-radius: 5px;
  background-image: url("../img/black__heart/size-grid-kombinizon.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain; */
}

.button__grid {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 5px 5px;
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  border: 0px solid #fff;
  border-bottom: 2px solid #f4f4f4;
  /* border: none; */
  /* border-radius: 5px; */
  background: none;
  /* box-shadow: 0 3px 3px #be8316; */
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button__grid span {
  max-width: 300px;
  height: auto;
  margin: auto;
}

.modal-content {
  border-radius: 15px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  padding-top: 40px;
}

.measurement-instructions {
  font-size: 1rem;
  margin: 10px auto 0 auto;
  color: #555;
  line-height: 1.5;
  text-align: center;
}

.table-responsive {
  margin: auto;
}

.size-chart th,
.size-chart td {
  padding: 5px;
  font-size: 1rem;
  text-align: center;
}

.size-chart th {
  background-color: #212529;
  color: #fff;
  font-weight: bold;
}

.size-chart tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Для мобільних пристроїв */
@media (max-width: 768px) {
  .size-chart {
    font-size: 0.9rem;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .measurement-instructions {
    font-size: 1rem;
    text-align: left;
  }
}

/* section size grid end */

/* section proper use */
.section__proper__use {
  position: relative;
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  padding: 20px 0;
  /* top: 40px; */
  margin: auto;
}

.s__proper__use__wrapper {
  display: flex;
  /* Располагаем элементы в одну линию */
  justify-content: space-around;
  /* Разделяем элементы равномерно */
  align-items: center;
  /* Выравниваем элементы по центру по вертикали */
  flex-wrap: wrap;
  /* На маленьких экранах элементы переходят на новую строку */
  gap: 20px;
  /* Отступы между элементами */
}

.icon-block {
  display: flex;
  flex-direction: column;
  /* Элементы внутри блока располагаются вертикально */
  align-items: center;
  /* Центрируем содержимое */
  text-align: center;
  /* Центрируем текст */
}

.icon-block img {
  width: 20px;
  /* Размер иконки */
  height: 20px;
  object-fit: contain;
  /* Убедиться, что иконки не искажаются */
  margin-bottom: 10px;
  /* Отступ между иконкой и текстом */
}

/* section proper use end */

/* section catalog man woman */
.section__catalog__man__woman {
  position: relative;
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  padding: 0;
  top: 0;
  margin: auto;
}

.s__catalog__man__woman__wrapper {
  display: flex;
  /* Располагаем элементы в одну линию */
  justify-content: space-around;
  /* Разделяем элементы равномерно */
  align-items: center;
  /* Выравниваем элементы по центру по вертикали */
  flex-wrap: wrap;
  /* На маленьких экранах элементы переходят на новую строку */

}

.s__catalog__man__woman__wrapper a {
  text-decoration: none;
}

.block__description {
  position: relative;
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: auto;
}

.icon-block-mw-button {
  position: relative;
  display: block;
  width: 130px;
  height: 80px;
  margin: auto;
  background-image: url("../img/icon/button-darkmatter.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-block-mw-button span {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  letter-spacing: 0.3px;
  font-size: 18px;
  font-weight: 500;
  top: 26px;
}

.block__description span {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  letter-spacing: 0.3px;
  font-size: 24px;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 20px;
}

.icon-block-mw {
  display: flex;
  flex-direction: column;
  /* Элементы внутри блока располагаются вертикально */
  align-items: center;
  /* Центрируем содержимое */
  text-align: center;
  /* Центрируем текст */
}

.icon-block-mw img {
  width: 94%;
  /* Размер иконки */
  height: 300px;
  object-fit: cover;
  /* Убедиться, что иконки не искажаются */
  margin-bottom: 10px;
  /* Отступ между иконкой и текстом */
  border: 1px solid #212121;
  border-radius: 10px;
}

/* section catalog man woman end*/

/* section properties use */
.section__properties__use {
  position: relative;
  display: block;
  max-width: 1080px;
  width: 100%;
  height: auto;
  padding: 10px 0;
  margin: auto;
  border-top: 2px solid #f4f4f4;
}

.s__properties__wrapper {
  display: flex;
  /* Располагаем элементы в одну линию */
  justify-content: space-around;
  /* Разделяем элементы равномерно */
  align-items: center;
  /* Выравниваем элементы по центру по вертикали */
  flex-wrap: wrap;
  /* На маленьких экранах элементы переходят на новую строку */
  gap: 20px;
  /* Отступы между элементами */
}

.p-icon-block {
  display: flex;
  flex-direction: column;
  /* Элементы внутри блока располагаются вертикально */
  align-items: center;
  /* Центрируем содержимое */
  text-align: center;
  /* Центрируем текст */
}

.p-icon-block img {
  width: 24px;
  /* Размер иконки */
  height: 24px;
  object-fit: contain;
  /* Убедиться, что иконки не искажаются */
  margin-bottom: 0px;
  /* Отступ между иконкой и текстом */
}

.i__p {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  letter-spacing: 0.3px;
  font-size: 14px;
  font-weight: 300;
}

/* section properties use end */




/* section crown quality */
.section__crown__quality {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
}

.section__crown__quality span {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  top: 12px;
}

.s__crown {
  position: relative;
  display: block;
  width: 100%;
  height: 45px;
  margin: auto;
  background-image: url("../img/crown-black.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 15px;
}

/* section crown quality end */

/* main */
.main {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.main__content {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #fff;
}

.main__content h1,
.main__content h2,
.main__content h3,
.main__content h4,
.main__content h5 {
  max-width: 1000px;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: left;
  margin: auto;
}

.main__content .cart__title {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: left;
  letter-spacing: 0.3px;
  font-size: 20px;
  font-weight: 600;
  top: 20px;
  padding: 20px;
}


.send__block {
  position: relative;
  width: 100%;
  height: 500px;
  margin: auto;
  /* border: 1px solid #fff; */
  top: 30px;
}

.s__send__block__description__p {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  top: 0;
}

.send__block p {
  position: relative;
  display: block;
  width: 360px;
  height: auto;
  margin: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: left;
  letter-spacing: 1.1px;
  font-size: 1.2rem;
  font-weight: 400;
  top: 10px;
  line-height: 1.6;
}

.wrap__form {
  max-width: 500px;
  width: 90%;
  height: auto;
  margin: auto;
}



/* кнопка .send__block .form */
.button__wrap__zapisatsa {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.flare-button {
  position: relative;
  display: block;
  max-width: 300px;
  width: 100%;
  color: #fff;
  top: 20px;
  margin: auto;
  border: 0.5px solid #fff;
  letter-spacing: 1.1px;
  font-weight: 600;
  font-size: 1.3rem;
  background-color: #000;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.flare-button:hover {
  background-color: #F4F4F4;
  color: #000;
  border: 1px solid gray;
}
.flare-button:active {
  transform: scale(0.95);
}
/* кнопка .send__block .form end */


/* кнопка .welcome-page на главную */
.button-welcome-page {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.button-welcome-page a{
text-decoration: none;
}
.welcome-page-flare-button {
  position: relative;
  display: block;
  max-width: 300px;
  width: 100%;
  color: #fff;
  margin: auto;
  border: 0.5px solid #fff;
  letter-spacing: 1.1px;
  font-weight: 600;
  font-size: 1.3rem;
  background-color: #000;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.welcome-page-flare-button:hover {
  background-color: #F4F4F4;
  color: #000;
  border: 1px solid gray;
}
.welcome-page-flare-button:active {
  transform: scale(0.95);
}
/* кнопка .welcome-page .form end */



/* Анимация вибрации */
/* Стили для уведомления */
.notification {
  position: fixed;
  bottom: 90%;
  left: 30%;
  transform: translateX(-7%);
  background-color: #84bb65f9;
  color: #fff;
  padding: 8px 10px;
  border-radius: 5px 0px 5px 5px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}

/* Анимация вибрации */
@keyframes vibrate {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-3px);
  }

  50% {
    transform: translateX(3px);
  }

  75% {
    transform: translateX(-3px);
  }

  100% {
    transform: translateX(0);
  }
}

.vibrate {
  animation: vibrate 0.2s linear;
}

/* Стили для vibration уведомления end*/

/* section you might like */
.section__you__might__like {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  top: 10px;
}

.s__you__might__wrapper {
  position: relative;
  display: block;
  max-width: 1080px;
  width: 100%;
  height: auto;
  margin: auto;
}

.s__you__might__description__p {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* section you might like end */

/* main end */









/* main info block */
.main__info__block {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.info__block__content {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #fff;
}

.breadcrumb {
  margin: 10px 10px;
}

.breadcrumb .breadcrumb-item {
  margin: 0px 10px;
  text-align: center;
  color: #6c757d;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.1px;
  font-size: 16px;
  font-weight: 300;
}

.breadcrumb .breadcrumb-item a {
  text-decoration: none;
  font-weight: 500;
}

.info__block__content h1 {
  position: relative;
  display: block;
  width: 360px;
  height: auto;
  margin: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: left;
  letter-spacing: 1.1px;
  font-size: 22px;
  font-weight: 600;
  padding: 5px;
}

.info__block__content p {
  position: relative;
  display: block;
  width: 360px;
  height: auto;
  margin: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: left;
  letter-spacing: 1.1px;
  font-size: 16px;
  font-weight: 500;
  top: 10px;

}

.button__wrap__back {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.button__wrap__back a {
  text-decoration: none;
}

.back__button {
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  padding: 14px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* main info block end*/

.modal-body-logo {
  position: relative;
  display: block;
  width: 350px;
  height: auto;
  margin: auto;
}

.modal-body-logo img {
  position: relative;
  display: block;
  margin: auto;
  width: 80%;
  height: auto;
}

.modal-content span {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  letter-spacing: 1.1px;
  font-size: 18px;
  font-weight: 600;
}

.bottom__exampleModal {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}

.e__button {
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  padding: 14px;
  margin-top: 20px;
  margin-bottom: 30px;
  /* border: none; */
  /* border-radius: 3px; */
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  /* text-transform: uppercase; */
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* man catalog style */
.man-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
  overflow: hidden;
  /* Скрываем все выходящие элементы */
  transition: transform 0.5s, padding 0.5s;
  /* Анимация без изменения высоты */
  position: relative;
}

@media (min-width: 768px) {
  .man-catalog {
    grid-template-columns: repeat(3, 1fr);
  }
}

.man-catalog img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 1px solid #0000001a;
  border-radius: 10px;
}

.man-catalog img:hover {
  transform: scale(1.05);
}

.swipe-active {
  transform: scale(1.05);
  padding: 15px;
  /* Вместо изменения высоты увеличиваем padding */
}

/* man catalog style end */

/* section catalog top block */
.section__catalog__block {
  position: relative;
  display: block;
  width: 100%;
  height: 155px;
  overflow: hidden;
}


.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}

.s__catalog__block__wrapper {
  position: relative;
  z-index: 1;
  /* Ensure content is above the video */
}

.s__catalog__block__wrapper {
  position: relative;
  display: block;
  margin: auto;
  width: 100%;
  max-width: 800px;
  height: 60px;
  /* border: 1px solid red; */
  /* background-color: red; */
  top: 0;
}

.s__catalog__block__1 {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 58px;
}

.s__catalog__block__1 p {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  letter-spacing: 1.1px;
  font-size: 29px;
  font-weight: 600;
  top: 24px;
}

.s__catalog__block__1 span {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  letter-spacing: 1.1px;
  font-size: 18px;
  font-weight: 600;
  top: -14px;
}

.s__catalog__block__1 b {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  color: red;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  letter-spacing: 1.1px;
  font-size: 60px;
  font-weight: 600;
  top: -20px;
}

.man-catalog a {
  text-decoration: none;
}

.man-catalog span {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  letter-spacing: 1.1px;
  font-size: 18px;
  font-weight: 600;
}

.man-catalog p {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #000;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  top: 15px;
}

/* section for you end */



/* info block */
.info-block {
  font-family: Arial, sans-serif;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.collapsible {
  cursor: pointer;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 300;
  text-align: left;
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.collapsible:hover {
  background-color: #fff;
}

.arrow {
  transition: transform 0.3s ease;
}

.collapsible.active .arrow {
  transform: rotate(180deg);
}

.content {
  padding: 15px;
  display: none;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

@media (max-width: 576px) {
  .info-title {
    font-size: 1.25rem;
  }

  .collapsible {
    font-size: 1.1rem;
    color: #000;
  }

  .content {
    font-size: 0.95rem;
  }
}

/* info block end */

/* cart */
.cart-icon-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 10px;
}

.cart-icon-wrapper i {
  font-size: 20px;
  /* Размер иконки */
  color: #fff;
  /* Цвет иконки */
}

#cart-count {
  position: absolute;
  top: -9px;
  right: -9px;
  background: red;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
  min-width: 18px;
  text-align: center;
}

/* Блок корзины */
.cart-section {
  max-width: 600px;
  margin: 20px auto;
  background-color: #fff;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  padding: 20px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.cart__title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

/* Список товаров */
#cart-items {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px 0;
}

/* Каждый товар - Flex */
#cart-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

#cart-items li:last-child {
  border-bottom: none;
}

/* Сумма */
.cart-total {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: right;
  margin-bottom: 15px;
}

.product-code {
  font-weight: 600;
  /* Делает код товара полужирным */
  margin-left: 2px;
}

/* Кнопка "Оформити замовлення" (Bootstrap-класс btn-primary уже добавляет стили) */
.proceed-to-order {
  display: block;
  width: 100%;
  height: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.main__content .btn {
  border-radius: none;
}

/* Кнопка "Вернуться на главную" */
.button__wrap__back {
  text-align: center;
  /* Центрируем кнопку */
  margin-top: 20px;
}

.back__button {
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.back__button:hover {
  background-color: #222;
  /* При наведении чуть темнее */
}


/* Стили для всего содержимого модалки */
#exampleModalCart .modal-content {
  background-color: #fff;
  /* Белый фон */
  border: 1px solid #ddd;
  /* Лёгкая рамка */
  border-radius: 8px;
  /* Скруглённые углы */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Лёгкая тень для объёма */
}

/* Дополнительные отступы в теле модалки */
#exampleModalCart .modal-body {
  padding: 20px;
}

/* Заголовок */
#exampleModalCart .modal-header {
  border-bottom: 1px solid #eee;
  /* Разделительная линия */
  padding: 15px 20px;
}

#exampleModalCart .modal-title {
  font-size: 1.3rem;
  font-weight: 600;
}

/* Нижняя часть (footer), если нужно */
#exampleModalCart .modal-footer {
  border-top: 1px solid #eee;
  padding: 10px 20px;
}

/* Стили для полей формы внутри модалки */
#exampleModalCart .form-label {
  font-weight: 500;
  /* Чуть более жирный текст */
  margin-bottom: 6px;
}

#exampleModalCart .form-control {
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  /* Остальные стили form-control уже есть в Bootstrap */
}

/* Кнопка "Надіслати замовлення" (доп. стили, если нужно) */
#exampleModalCart .btn.btn-success {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px;
  margin-top: 10px;
}

/* Можно также стилизовать textarea, placeholder, и т.д. */

/* Пример: Подгоняем заголовок секции "Товари у кошику", "Загальна сума" под 
   тот же стиль, что и в корзине, при желании: */
#exampleModalCart .form-label {
  color: #333;
}

/* cart end*/

/* Мобильные устройства (до 480px) */
@media (max-width: 480px) {

  .footer-columns {
    flex-direction: column;
    /* Один столбец на мобильных */
    gap: 10px;
    /* Уменьшаем отступ между элементами */
  }

  .footer-column {
    width: 100%;
    /* Каждый столбец занимает всю ширину */
  }

  .s__foot__wrapper ul {
    flex-direction: column;
    /* Изменяем направление на столбец */
    align-items: center;
    /* Центрируем элементы в колонке */
  }

  .s__foot__wrapper ul li {
    margin: 0 10px;
    /* Отступы между элементами */
    text-align: center;
    /* Центрируем текст внутри <li> */
    color: #fff;
    margin: 10px 0;
    /* Увеличиваем отступы сверху и снизу для столбца */
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1.1px;
    font-size: 17px;
    font-weight: 500;
  }

  .modal-body-logo {
    position: relative;
    display: block;
    width: 350px;
    height: auto;
    margin: auto;
  }

  .modal-body-logo img {
    position: relative;
    display: block;
    margin: auto;
    width: 90%;
    height: auto;
    padding-bottom: 30px;
  }
}

/* Планшеты (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {}

/* Ноутбуки и десктопы (от 769px) */
@media (min-width: 769px) {
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: -1;
  }

  .s__catalog__block__1 p {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    letter-spacing: 1.1px;
    font-size: 50px;
    font-weight: 600;
    top: 15px;
  }

  .navbar-nav {
    flex-direction: row;
    /* На больших экранах элементы в линию */
    justify-content: space-around;
    /* Равномерное распределение */
    max-width: none;
    /* Убираем ограничение ширины */
    margin: 0;
    /* Сбрасываем автоматическое выравнивание */
  }

  .nav-link {
    text-align: center;
    /* Текст по центру на больших экранах */
    font-size: 14px;
    /* Уменьшенный шрифт */
  }

  .footer-columns {
    gap: 400px;
    /* Увеличиваем отступ между столбцами до 200px */
  }

}