.header_top_photo {
  padding: 4rem 0;
  position: relative;
  width: 100%; /* Полная ширина окна браузера */
  left: 50%; /* Центрируем относительно контейнера */
  margin-left: -50vw; /* Сдвигаем компонент налево, чтобы он вышел за пределы контейнера */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header_top_photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(205, 90%, 10%, 0.65); /* Маска */
  pointer-events: none; /* Маска не будет блокировать клики по кнопкам */
  z-index: 1;
}

.header_top_photo-row {
  display: flex;
  justify-content: space-around;
}

.header_top_photo__content {
  text-align: left;
  padding: 20px;
  border-radius: 8px;
  z-index: 2; /* Контент размещаем поверх маски */

  display: flex;
  flex-direction: column;
  max-width: 800px;
  align-items: flex-start;
}

.header_top_photo__button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2e8fd4;
  color: white;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.header_top_photo__button:hover {
  background-color: #6ab8ee;
  color: #000;
}

.header_top_photo .description {
  color: #fff !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  font-size: 3.4rem !important;
  text-transform: uppercase !important;
  padding-bottom: 2rem;
}

.header_top_photo p {
  color: #d4d4d4 !important;
  font-size: 2rem !important;
  line-height: 2.6rem !important;
}
