

/* 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/rooms-list/style.css?17840943363529*/
.breakfast-row{
    display: flex;
    margin: 10px 0 0;
}
.breakfast-row i{
    margin: 0 6px 0 0;
    color: #d0ad67;
}
.breakfast-row p{
    color: #000;
    font-size: 15px;
    font-weight: 600;
}
.seo-text{
    margin: 15% 0 0 0;
}
.seo-title{
    font-size: 18px;
    margin:  30px 0 10px 0;
}
.container-item-text__value.short .seo-open{
    display: none;
}
.show-more{
    font-weight: bold;
    cursor: pointer;
}
/*h1.rooms-title{
    font-size: 30px;
    font-family: "GothamPro-Medium";
    color: #c5a05b;
    width: 100%;
    line-height: 30px;
    margin: 40px 0;
    text-transform: uppercase;
}*/
.container-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.container-item{
    width: 48%;
    display: flex;
    margin-bottom: 40px;
    height: 230px;
}
.container-item-desc{
    padding: 15px 15px 15px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid #d0ad67;
    width: 55%;
}
.room-detail__desc-back{
    position: absolute;
    top: 10px;
    z-index: -1;
    right: 10px;
}
.room-detail__desc-back img{
    width:60px;
}
.container-feature__img{
    width: 50%;
    height: 230px;
}
.container-feature__img img{
    height: 100%;
}
.container-item-button{
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
}
.link-form{
    background: #d0ad67;
}
.link-form, .link-str{
    padding: 5px 10px;
}
.container-item-button .link-form a {
    color: #fff!important;
}
.container-item-button .link-form a:hover {
    color: #c41425!important;
}
.link-str a:hover{
    color: #c2182b;
}
.container-item-desc:before {
    width: 70%;
    height: 1px;
}
.container-item-desc:after {
    height: 30%;
    width: 1px;
}
.container-item-desc:before, .container-item-desc:after {
    content: "";
    z-index: 1;
    display: block;
    position: absolute;
    background: #d0ad67;
    bottom: 0;
    right: 0;
}
/*.item-price{
    margin-top: 20px;
}*/
.content.text{
    margin: 40px 0;
}
.container-item-title{
/*    font-weight: bold;*/
    font-size: 18px;
}
.container-row{
    margin-top: 50px;
}

@media (max-width:1440px) {
    .container-feature__img {
        width: 60%;
    }
    .container-item-desc {
        padding: 15px;
    }

}

@media (max-width:1280px) {
    .container-item-title{
        font-size: 15px;
    }
    .container-feature-text{
        font-size: 14px;
    }
    .link-form a, .link-str a{
        font-size: 14px;
    }
}

@media (max-width:1150px) {
    .container-item-desc{
        width: 70%;
    }
    .container-feature__img {
        width: 30%;
    }
    .container-item {
        width: 100%;
    }
}

@media (max-width:950px) {
    .container-feature__img {
        width: 45%;
    }
    .container-item-desc {
        width: 55%;
    }
}

@media (max-width:650px) {
    .container-feature__img {
        width: 100%;
        text-align: center;
    }
    .container-item {
        flex-wrap: wrap;
        height: auto;
    }
    .container-item-desc{
        width: 100%;
        border-left: 1px solid #d0ad67;
        border-top: none;
    }
    .container-row, .content.text {
        margin-top: 50px;
    }
    .container-feature__img img{
        height: auto;
    }
    .container-feature__img{
        height: auto;
    }
    .container-feature__img img{
        width: 100%;
    }
}

@media (max-width:450px) {

}

@media (max-width:380px) {
    .container-row, .content.text {
        margin-top: 30px;
    }
}
/* End */


/* Start:/bitrix/components/bitrix/system.pagenavigation/templates/modern/style.min.css?1676361876675*/
div.modern-page-navigation{padding:.5em 0}div.modern-page-navigation a,span.modern-page-current,span.modern-page-dots{border-left-width:1px;border-left-style:solid;padding-left:.75em;padding-right:.5em;text-decoration:none}div.modern-page-navigation a.modern-page-previous{border-right-width:1px;border-right-style:solid;border-left:0}div.modern-page-navigation a.modern-page-first,div.modern-page-navigation span.modern-page-first{border-left:0;padding-left:.5em}span.modern-page-current{font-weight:var(--ui-font-weight-bold)}div.modern-page-navigation a,span.modern-page-current,div.modern-page-navigation a.modern-page-previous,span.modern-page-dots{border-color:#cdcdcd}
/* End */


/* Start:/local/templates/main/components/bitrix/news.list/reviews_hotel/style.css?1782129742774*/
.review-detail a{
    padding: 15px 30px;
    background: #c2182b;
    color: #fff;
}
.review-detail a:hover{
    color: #fff!important;
}
.review-detail{
	margin: 50px 0 0 0;
}
.review-list .rooms-title{
	margin: 0 0 60px 0;
}
.review-list{
	margin: 90px 0;
}
.review-detail-row .review-item{
	margin-bottom: 30px;
}
.review-title{
	color: #c2182b;
	font-size:16px;
	padding-bottom:10px;
}

.review-detail a:last-child {
	margin: 0 0 0 10px;
}

@media (max-width: 475px){
	.review-detail {
		display: flex;
		flex-direction: column;
	}
	.review-detail a, .review-detail a:last-child {
		margin: 0 0 10px;
    	text-align: center;
	}
}

@media (max-width: 370px){
	.review-detail a{
		display: flex;
		flex-direction: column;
		padding-left:12px;
		padding-right:12px;

	}
}
/* 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/rooms-list/style.css?17840943363529 */
/* /bitrix/components/bitrix/system.pagenavigation/templates/modern/style.min.css?1676361876675 */
/* /local/templates/main/components/bitrix/news.list/reviews_hotel/style.css?1782129742774 */
