/* Убираем прозрачность у блоков на страницах promPhoto.html, studioPhoto.html, aerialPhoto.html */

/* Полупрозрачный фон для transparent-content блоков как на catalogs.html */
.transparent-content,
.row.transparent-content {
    background-color: rgba(0, 0, 0, 0.6) !important; /* Полупрозрачный черный фон как на catalogs.html */
    background: rgba(0, 0, 0, 0.6) !important;
    opacity: 1 !important;
}

/* Белый фон для остальных transparent-content2 блоков */
.transparent-content2,
.row.transparent-content2 {
    background-color: #ffffff !important; /* Белый непрозрачный фон */
    background: #ffffff !important;
    opacity: 1 !important;
}

/* Серая заливка как у футера для блока broshureContent3 */
.row.transparent-content2.broshureContent3 {
    background-color: #666666 !important; /* Серый фон как у футера */
    background: #666666 !important;
    opacity: 1 !important;
}

/* Убираем градиентные фоны с прозрачностью на promPhoto.html - переопределяется выше для серого фона */

/* Убираем прозрачность у кнопок управления слайдером на studioPhoto.html */
#studioPhotoSlider .carousel-control-prev-icon,
#studioPhotoSlider .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 1) !important; /* Убираем rgba(255, 255, 255, 0.22) */
}

/* Убираем прозрачность у всех блоков с классами */
.broshureContent3,
.row.broshureContent3,
.broshureContent2,
.row.broshureContent2,
.broshureBlock_2,
.height-1PromFoto {
    background-color: #ffffff !important;
    background: #ffffff !important;
    opacity: 1 !important;
}

/* Убираем прозрачность у overlay элементов */
.overlay,
.background-overlay,
.content-overlay,
.hero-overlay {
    background-color: #ffffff !important;
    background: #ffffff !important;
    opacity: 1 !important;
}

/* Убираем прозрачность у элементов с инлайн стилями */
[style*="rgba(0,0,0,0."],
[style*="rgba(255,255,255,0."],
[style*="background-color: transparent"] {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

/* Убираем фоновые изображения */

/* promPhoto.html - убираем фоновое изображение */
.background-imagePromFoto {
    background: none !important;
    background-image: none !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
}

/* studioPhoto.html - убираем фоновое изображение */
.background-imageStudio {
    background: none !important;
    background-image: none !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
}

/* aerialPhoto.html - убираем фоновое изображение */
.background-imageAerial {
    background: none !important;
    background-image: none !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
}

/* Убираем все фоновые изображения с url() */
[style*="background: url("],
[style*="background-image: url("] {
    background: #ffffff !important;
    background-image: none !important;
}