

/* 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/conference/style.css?17876310968789*/
.container-item-text__value.short div{
    max-height: 155px;
    overflow: hidden;
}
.container-item-text__value.short .show-more{
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}
.container-item-text__value.short .show-more p{
    cursor: pointer;
    text-decoration: underline;
}
/*.container-desc{
	margin-top: 40px;
}*/
.container-item-text a:hover{
    color: #212121!important;
}
/*.rooms-title {
    font-size: 30px;
    font-family: "GothamPro-Medium";
    color: #c5a05b;
    width: 100%;
    line-height: 30px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    margin-bottom: 25px;
}*/
.container {
    max-width: 1200px!important;
}
.container-item{
	margin-bottom: 50px;
	display: flex;
}
.container-feature{
 	background: #636a72; 
}
.container-feature-text ul{
	column-count: 2;
    color: #fcfcfc;
}
.container-feature-text p{
	text-align: center;
    color: #fcfcfc;
}
.container-feature-text{
	padding: 20px 15px 15px 15px;
	font-size: 14px;
	line-height: 1.8;
}
.container-feature-text span{
	font-weight: bold;
}
.container-item-desc{
	position: relative;
}
.container-item-desc:before, 
.container-item-desc:after {
    content: "";
    z-index: 1;
    display: block;
    position: absolute;
    background: #636a72;
    bottom: 0;
    right: 0;
}

.container-item-desc:before {
    width: 70%;
    height: 1px;
}
.container-item-desc:after {
    height: 10%;
    width: 1px;
}
.border-top{
	width: 70%;
	border-top: 1px solid #636a72;
}
.container-item-title{
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.container-item-title p{
	color: #636a72;
}
.container-item-title{
    padding: 30px 20px 0 40px;
}
.container-item-title p{
	font-size: 25px;
     margin: 10px 20px 10px 0;
}
/*.container-item-text {
	height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}*/
.container-item-text{
	padding: 0 20px 0 40px;
	margin: 10px 0;
}
/*.container-item-text p{
	line-height: 1.5;
}*/
.owl-carousel.container-item-carousel, .container-feature-text {
    width: 500px;
}
.container-text{
	margin-bottom: 80px;
}
.container-item-text__title{
	font-weight: bold;
	font-size: 17px;
	margin-bottom: 5px;
}
.container-item-text__content{
	margin-bottom: 30px;
}
/*.container-item-text__content.short__content{
    max-height: 200px;
    overflow: hidden;
}*/
.container-item-text__content ul{
	column-count: 2;
}
ul.prices{
    column-count: 4;
    margin-bottom: 30px;
}
.prices li{
	margin-bottom: 10px;
}
.item-plans{
	justify-content: space-between;
	display: flex;
	margin: 20px 0;
	text-align: center;
}
.container-item-text img {
    position: absolute;
    z-index: -1;
    width: 65%;
    bottom: 25px;
    right: 25px;
    width: 20%;
    opacity: 0.4;
}

/*.container-item-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
}*/

.container-carousel .owl-nav {

    position: absolute;
    display: block;
    margin: 0 auto;
    justify-content: space-between;
    width: inherit;
    padding: 0 30px;
}

.owl-next {float:right;}

.owl-nav button{
	position:relative;
	bottom: 160px;
}

.container-item-button a {
    padding: 0 40px;
    background: #636a72;
    color: #fcfcfc;
    font-size: 16px;
    line-height: 39px;
    height: 41px;
    display: inline-block;
    cursor: pointer;
}
.container-item-button a img {
    transition: .4s;
    margin-left: 20px;
}
.container-desc-menu{
    position: relative;
    margin-top: 30px;
}
.container-desc-menu__item {
    display: none;
    transition: .4s;
    z-index: 3;
    margin: 20px 0 0 0;
}
.container-desc-menu__button:first-child{
    border-left: 1px solid #636a72;
}
.container-desc-menu__button {
    padding: 10px 15px;
    border-right: 1px solid #636a72;
    cursor: pointer;
}
.container-desc-menu__button a {
    color: #636a72;
    font-size: 14px;
}
.container-desc-menu__button a:hover {
    color: #989fa7;
}
.menu-button img{
    width: 17px;
}
.menu-button.active img{
    transform: rotate(180deg);
}
.container-desc-menu__item.active{
    display: flex;
}

@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;
    }
    .rooms-title {
        font-size: 23px;
    }
    .owl-carousel .owl-nav button.owl-next img, .owl-carousel .owl-nav button.owl-prev img{
        width: 75%;
    }
}
@media (max-width: 1200px){
    .container-item-title p {
        font-size: 20px;
    }
}
@media (max-width: 1100px){
.container-carousel .owl-nav {
  /*  position: absolute;
    display: flex;
    width: inherit;
    justify-content: space-between;*/

    position: absolute;
    display: inline-flex;
    margin: 0 auto;
    justify-content: space-between;
    left: 15%;
    width: 70%;
}


.owl-nav button{
	position:relative;
	bottom: 160px;
}
    .container-item{
        flex-direction: column;
    }
    .owl-carousel.container-item-carousel{
        width: 100%;
    }
    .container-feature-text{
        width: 100%;
    }
    .container-feature-text ul li{
        text-align: center;
    }
    .container-item-text img {
        width: 16%;
    }
    .border-top{
        display: none;
    }
    .container-item-desc{
        border-left: 1px solid #636A72;
    }
}
@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-carousel .owl-nav {

        position: absolute;
        display: inline-flex;
        margin: 0 auto;
        justify-content: space-between;
        left: 15%;
        width: 70%;
    }
    .container-desc-menu__button:first-child{
        border-left: none;
    }

    .owl-nav button{
    	position:relative;
    	bottom: 250px;
    }

    .container{
        width: 100% !important;
        padding: 0 15px !important;
    }
    .container-desc-menu__item{
        flex-direction: column;
        top: 100%;
        bottom: 0;
    }
    .container-desc-menu__button{
        background: #fcfcfc;
        padding: 8px 15px;
    }
    .menu-button{
        margin-bottom: 10px;
    }
}
@media (max-width: 767px){

.container-carousel .owl-nav {

    position: absolute;
    display: inline-flex;
    margin: 0 auto;
    justify-content: space-between;
    left: 15%;
    width: 70%;
}

.owl-nav button{
	position:relative;
	bottom: 150px;
}

    .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;
    }
    ul.prices {
        column-count: 3;
    }
}
@media (max-width: 600px){


.container-carousel .owl-nav {

    position: absolute;
    display: inline-flex;
    margin: 0 auto;
    justify-content: space-between;
    left: 7%;
    width: 86%;
}

.owl-nav button{
	position:relative;
	bottom: 130px;
}

    .container-item-text img {
        width: 30%;
    }
    .rooms-title {
        font-size: 20px;
    }
    .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-button__icon img{
        height: 33px;
        width: auto;
    }
    .container-item-button a {
        line-height: 35px;
            height: 35px;
    }
}
@media (max-width: 500px){
    .container-item-text img {
        width: 40%;
    }
    .container-item-title {
        padding: 20px 20px 0 20px;
    }
    .container-item-title p {
        font-size: 17px;
    }
    .container-item-text {
        padding: 0 20px;
    }
    .rooms-title {
        font-size: 18px;
    }
    .container-feature-text ul {
        column-count: 1;
    }
}
@media (max-width: 400px){
    .container-item-carousel .owl-nav{
        left: 10px;
        right: 10px;
    }
    .container-item-title p {
        font-size: 17px;
        padding-right: 10px;
    }
    .container-item-title{
        align-items: baseline;
    }
    .container-item-text__title{
        font-size: 15px;
    }
}
/* 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/conference/style.css?17876310968789 */
