

/* Start:/local/components/redesign/bannerBase/templates/second-pages-short/style.css?17883508506141*/
#block-search{padding: 0 0 !important;  background-color: rgba(255,255,255,0.4);}
.tl-container {
    margin:0 0 -10px 0 !important;
    padding: 0 !important;
}
.tl-container iframe{
    -webkit-transform: scale(0.94);
    transform: scale(0.94);
}

.hero {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden; /* чтобы фон не вылезал */
}

.hero h1 {
    line-height: 60px;
    font-size: 60px;
}
.hero h1 span {
    display: block;
    font-size: 18px;
    line-height: 18px;
    margin-top:12px;
}

/* Фоновое изображение с затемнением — отдельный слой */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Затемнение — отдельный слой поверх фона */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none; /* КЛЮЧЕВОЙ МОМЕНТ: клики проходят сквозь затемнение */
}

/* Контент — поверх всего, кликабельный и выделяемый */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 0;
    font-family: Arial, sans-serif;
    user-select: text; /* явно разрешаем выделение */
    width:100%;
}


/* Превращаем .hero-content в вертикальный flex */
.hero-content {
    flex-direction: column;   /* добавляем направление */
}

/* Внутренний контейнер занимает всю доступную высоту */
.hero-content-inner {
    display: flex;
    flex-direction: column;
    flex: 1;                  /* растягивается на всю высоту родителя */
    width: 100%;
}

/* Средний блок занимает всё свободное пространство и центрирует своё содержимое */
.hero-content-middle-inner {
    flex: 1;                  /* заполняет оставшееся место между верхом и низом */
    display: flex;
    align-items: center;
    justify-content: center;  /* содержимое по центру по вертикали и горизонтали */
}

/* Нижний блок прижимается к низу */
.hero-content-bottom-inner {
    margin-top: auto;         /* отталкивается вниз */
    min-height: 90px;
}


/* Общие настройки для контейнера */
.hero-content-inner {
    box-sizing: border-box;          /* чтобы padding не увеличивал ширину */
    width: 100%;                     /* занимает всю доступную ширину родителя */
    margin: 0 auto;                  /* центрирование по горизонтали */
    padding-left: 0;
    padding-right: 0;             /* базовые отступы (можно изменить) */
}

/* При ширине экрана больше 1250px — максимальная ширина 1200px */
@media (min-width: 1251px) {
    .hero-content-inner {
        max-width: 80%;
    }
}

/* При ширине экрана от 901px до 1250px — максимальная ширина 900px */
@media (min-width: 901px) and (max-width: 1250px) {
    .hero-content-inner {
        max-width: 90%;
    }
    .hero h1 {
        line-height: 55px;
        font-size: 55px;
    }
}

/* При ширине экрана 900px и меньше — оставляем 100% ширины с отступами */
@media (max-width: 900px) {
    .hero {
        height: 480px;
    }
    .hero h1 {
        line-height: 45px;
        font-size: 45px;
    }
    .hero-content-inner {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .hero-content-top-inner {display: none !important;}
}

/* При ширине экрана 900px и меньше — оставляем 100% ширины с отступами */
@media (max-width: 600px) {
    .hero {
        height: 550px;
    }
    .hero h1 {
        line-height: 35px;
        font-size: 35px;
    }

    .hero-content-inner {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content-middle-inner{
        padding-left: 15px;
        padding-right: 15px;
    }

}


/* Меню — фон только под пунктами */
.second-menu-list {
    display: inline-flex;        /* ширина по содержимому */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 16px 0 0 0;
    padding: 0 0;          /* внутренние отступы, чтобы фон был вокруг пунктов */
    background-color: rgba(0, 0, 0, 0.15); /* полупрозрачный тёмный фон */
    gap: 5px;                   /* расстояние между пунктами */
}

.second-menu-item {
    display: inline-block; /* или flex item уже, но можно оставить */
}

.second-menu-link {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    display: flex;

}

.second-menu-link:hover,
.second-menu-link.active-link {
    /* стили для активного пункта, например подчёркивание */
    background-color: rgba(194,24,43,0.99) !important;
}

/* Родитель верхнего блока — центрируем содержимое */
.hero-content-top-inner {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* отступ всем */
.full-text-hotel-kaluga{
    margin-top:24px;
}

/* а обводку только для двух исключений */
.fulltext--hotels-hotel-kaluga-,
.fulltext--hotels-hotel-kaluga-rooms-{
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}
/* End */


/* Start:/local/templates/main/components/bitrix/breadcrumb/main/style.css?17528118131189*/
.bx-breadcrumb {
/*	display: flex;*/
	display: block;
	margin: 10px 0;
	font-size: 13px;
}
.bx-breadcrumb div{
	display: inline-block;
}
.bx-breadcrumb i {
	color: #b5bdc2;
	line-height: 13px;
	font-size: 13px;
	vertical-align: middle;
	margin-right: 5px;
}
.bx-breadcrumb .bx-breadcrumb-item {
	float: left;
	margin-bottom: 10px;
	white-space: nowrap;
	line-height: 13px;
	vertical-align: middle;
	margin-right: 10px;
}
.bx-breadcrumb .bx-breadcrumb-item span {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	white-space: normal;
}
.bx-breadcrumb .bx-breadcrumb-item a {border-bottom: none;}
.bx-breadcrumb .bx-breadcrumb-item a:hover {}
.breadcrumb-row{
    margin: 20px 0 0;
} 
#services .breadcrumb-row{
	padding: 0;
    max-width: auto;
}
.bx-breadcrumb-item a{
	font-size: 13px;
	color: #7c7c7c;
}
.bx-breadcrumb-item a:hover{
    color: #c5a05b;
}


/*@media (max-width: 1200px){
	.breadcrumb-row{
		padding: 0 70px;
	}

}*/
/*@media (max-width: 1024px){
	.breadcrumb-row{
		padding: 0 50px;
	}
}*/
@media (max-width: 700px){
/*	.breadcrumb-row{
		padding: 0 20px;
	}*/
	.bx-breadcrumb .bx-breadcrumb-item span{
		font-size: 12px;
	}
}
/* End */


/* Start:/local/templates/main/components/bitrix/news.list/wedding/style.css?17284434218356*/
.svadby-title{
    color: #D0AD67 !important;
}
.owl-carousel.container-carousel {
    width: 500px;
    position: relative;
}
.container-item {
    display: flex;
    margin-bottom: 50px;
}
.container-feature-text {
    padding: 20px 15px 15px 15px;
    font-size: 13px;
    line-height: 1.8;
    background: #D0AD67;
}
.container-item-desc {
    position: relative;
}
.container-item-desc:before {
    width: 70%;
    height: 1px;
}
.container-item-desc:after {
    height: 10%;
    width: 1px;
}
.container-item-desc:before, .container-item-desc:after {
    content: "";
    z-index: 1;
    display: block;
    position: absolute;
    background: #D0AD67;
    bottom: 0;
    right: 0;
}
.border-top {
    width: 70%;
    border-top: 1px solid #D0AD67;
}
.container-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container-item-title p {
    color: #d6af64;
    margin: 10px 20px 10px 0;
}
.container-item-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 20px 0 40px;
    margin: 10px 0;
}
.container-item-text img {
    position: absolute;
    z-index: -1;
    width: 60%;
    bottom: 25px;
    right: 25px;
    opacity: 0.2;
}
.container-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
}
.item-plans {
	display: flex;
	justify-content: space-around;
}
.container-feature-text ul {
    color: #fcfcfc;
    margin-bottom: 20px;
}
.container-feature-text ul span{
	font-size: 14px;
	font-weight: bold;
}
.container-item-title {
    padding: 30px 20px 0 40px;
}
.container-item-title p {
    font-size: 25px;
}
.item-plans li{
    text-align: center;
    color: #fcfcfc;
    font-weight: bold;
}
.container {
    max-width: 1200px!important;
}
.inner_page h1, .inner_page h2{
	margin: 70px 0 35px!important;
}
#svadba-offers .item-list{
	margin: 0!important;
}
#svadba-offers .item-list li::before{
	background: #D0AD67!important;
}
#svadba-offers-2 .item-text{
	border: 1px solid #D0AD67!important;
}



.container-item-button a.active img {
    transform: rotate(180deg);
}
.container-item-button a img {
    transition: .4s;
    margin-left: 20px;
    width: 14px;
}

.container-desc-menu__item{
	position: absolute;
    bottom: -60px;
    display: none;
    transition: .4s;
}
.container-desc-menu__item.active{
	display: flex;
}
.container-desc-menu__button{
	padding: 10px 15px 0;
	border-right: 1px solid #c2182b;
	cursor: pointer;
}
.container-desc-menu__button a{
	color: #c2182b;
}
.container-desc-menu__button a:hover{
	color: #f1162f;
}
.container-desc-menu__button:last-child{
	border-right: none;
}
.container-desc-menu.card{
	position: relative;
}


.container-item-button__icon{
	border: 1px solid #d7a866;
	margin-right: 5px;
}
.card .container-item-button{
	display: flex;
	position: relative;
	margin-bottom: 10px;
}
.card .container-desc-menu__button{
	background: #fcfcfc;
	border-right: none;
	position: relative;
	display: flex;
	flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.card .container-desc-menu__item{
	flex-direction: column;
    top: 100%;
    width: 100%;
    background: #fcfcfc;
    border-top: 1px solid #c2182b;
}


.card .container-item-button {
    display: flex;
    position: relative;
    margin-bottom: 10px;
}
.card .container-item-button a {
    padding: 0 40px;
    background: #c2182b;
    color: #fcfcfc;
    font-size: 18px;
    line-height: 39px;
    height: 41px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.container-item-button a:hover {
    background: #f1162f;
}
.card.one .container-item-button a {
    padding: 0 10px;
    line-height: inherit;
    white-space: nowrap;
    font-size: 16px;
}
.card .container-desc-menu__button:last-child{
	border-bottom: 1px solid #c2182b;
	padding: 10px 15px;
}
.card .container-desc-menu__button:last-child .line{
	display: none;
}
.card .container-desc-menu__button .line{
	background: #c2182b;
    width: 85%;
    height: 1px;
    margin: 15px 0 0 0;
}

.container-desc-menu.top-menu{
	position: relative;
}
.container-desc-menu.top-menu .menu-button{
	width: fit-content;
    background: #c2182b;
    color: #fff;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
}
.container-desc-menu.top-menu .container-desc-menu__button a{
	color: #000;
	font-size: 16px;
}
.container-desc-menu.top-menu .container-desc-menu__button:first-child{
	padding: 10px 15px 10px 0;
}
.container-desc-menu.top-menu .container-desc-menu__item{
	position: relative;
	bottom: auto;
    margin: 30px 0 0 0;
}
.container-desc-menu.top-menu .container-desc-menu__button a:hover{
	color: #f1162f;
}
.container-desc-menu.top-menu .menu-button{
	display: flex;
	align-items: center;
}
.container-desc-menu.top-menu{
	margin: 0 0 50px 0;
}
.container-desc-menu.top-menu .container-desc-menu__button{
	display: flex;
	align-items: center;
}
.container-desc-menu.top-menu .menu-button:hover{
	background:#f1162f;
}
.container-desc-menu.top-menu .container-desc-menu__button{
	padding: 10px 15px;
}
@media (max-width: 1500px){
	.container-desc-img{
		width:45%;
	}
	.container-desc-text{
		width: 55%;
	}
}

@media (max-width: 1360px){
	.container-desc-text, .container-desc-menu__button a,.container-item-text{
		font-size: 14px;
	}
	.container-desc-menu__button{
    	padding: 5px 15px;
	}
	.container-item-title p {
	    font-size: 23px;
	}
	.container-item-title {
	    padding: 30px 20px 0 40px;
	}
	.container-item-text img{
		width: 50%;
	}
	.rooms-title {
	    font-size: 23px;
	}
	.owl-carousel .owl-nav button.owl-next img, .owl-carousel .owl-nav button.owl-prev img{
		width: 75%;
	}
	.svadby-title{
		font-size: 35px !important;
	}
}

@media (max-width: 1200px){
	.container-item-title p {
	    font-size: 20px;
	}
	.card.one .container-item-button a {
	    font-size: 14px;
	}
}

@media (max-width: 1100px){
	.container-item{
		flex-direction: column;
	}
	.owl-carousel.container-carousel{
		width: 100%;
	}
	.container-feature-text ul li{
		text-align: center;
	}
	.container-item-text img {
	    width: 20%;
	}
	.border-top{
		display: none;
	}
	.container-item-desc{
		border-left: 1px solid #D0AD67;
	}
}

@media (max-width: 1024px){
	.container-desc-text, .container-desc-menu__button a,.container-item-text, .container-item-button a{
		font-size: 13px;
	}
	.container-item-text {
	    margin: 10px 0 20px 0;
	}
}

@media (max-width: 991px){
	.container{
	    width: 100% !important;
	    padding: 0 15px !important;
	}
}

@media (max-width: 768px){
	.container-item-text img {
	    width: 40%;
	}
	.container-desc-img{
		display: none;
	}
	.container-desc-text{
		width: 100%;
		padding-right: 0;
	}
	.container-feature-text{
		font-size: 12px;
		padding: 15px;
	}
	.container-item-title {
	    padding: 10px 20px 0 40px;
	}
	.container-desc-menu {
	    margin: 10px 0 0 auto;
	}
	.svadby-title{
    		font-size: 27px !important;
    		margin: 25px 0 !important;
	}
	.container-item-title{
		flex-wrap: wrap;
	}
}

@media (max-width: 600px){
	.rooms-title {
	    font-size: 20px;
	    margin: 0;
	}
	.card .container-item-button a {
	    padding: 2px 20px;
	}
	.container-feature-text{
		padding: 10px;
		font-size: 11px;
	}
	.container-item-text{
		margin: 0 0 10px 0;
	}
	.container-item-title p{
		margin: 0;
	}
	.container-item-button__icon img{
		    height: 100%;
		width: auto;
	}
	.container-item-button a {
		line-height: 35px;
    		height: 35px;
	}
	.container-desc-menu.top-menu .menu-button{
		font-size: 16px;
		padding: 20px 30px;
	}
	.container-desc-menu.top-menu .container-desc-menu__button a{
		font-size: 15px;
	}
}

@media (max-width: 500px){

	.container-item-title {
	    padding: 20px 20px 0 20px;
	}
	.container-item-title p {
	    font-size: 17px;
	}
	.container-item-text {
	    padding: 0 20px;
	}
	.container-item-text img {
	    width: 40%;
	}
	.rooms-title {
	    font-size: 18px;
	}
	.container-feature-text ul {
	    column-count: 1;
	}
	.svadby-title {
	    font-size: 20px !important;
	}
}

@media (max-width: 400px){
	.container-carousel .owl-nav{
		left: 10px;
    		right: 10px;
	}
	.container-item-title p {
	     font-size: 20px;
		padding-right: 10px;
		margin-bottom: 20px;
	}
	.container-item-title{
		align-items: baseline;
	}
}
/* End */


/* Start:/local/components/redesign/object.list/templates/short-block-wedding/style.css?17840985611799*/
/* контейнер формы заказа на мобильном */
.tl-container.tl-p0 {
    padding: 20px 0 0;
}

.container-news {margin-top: 40px;}

.container-news .item-box {margin-bottom: 40px !important;}
.container-news .item-box img {border-radius: 4px;}
.container-news .text-box {position: relative;
    min-height: 100px;
    max-height: 100px;
    overflow: hidden;
    background: #ffffff;
    line-height: 31px;
    font-size: 18px;
}
.container-news .text-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
}

.container-news .header-box {min-height: 64px;margin-bottom: 12px;}
.container-news .header-box h3{line-height: 31px; font-size: 27px;color:#000;font-weight: 600;}

.container-news .red-link{
    display:block;
    line-height: 32px;
    font-size: 18px;
    color:#C2182B;
    font-weight: 400;
    padding-right: 38px;
    background: url("/assets/img/svg/arrow-botom.svg") center right no-repeat;
    background-size: 23px;
}

.container-news .red-line{
    height: 2px;
    background: #C2182B !important;
    margin-top: 12px;

}

.modal-text {
    line-height: 31px;
    font-size: 17px;
    margin:20px;
    line-height: 1.42857143;
}
.modal-text h3{
    line-height: 25px;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 40px;
}
#svadby h3{
    font-size: 25px;
}
#svadby .container-fluid{
    padding: 0;
}

.wedding-priority .header-box h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.1;
}

.wedding-priority .text-box {
    font-size: 16px;
    line-height: 27px;
    font-weight: normal;
    font-style: normal;
    line-height: 1.42857143;
}
/* End */
/* /local/components/redesign/bannerBase/templates/second-pages-short/style.css?17883508506141 */
/* /local/templates/main/components/bitrix/breadcrumb/main/style.css?17528118131189 */
/* /local/templates/main/components/bitrix/news.list/wedding/style.css?17284434218356 */
/* /local/components/redesign/object.list/templates/short-block-wedding/style.css?17840985611799 */
