/* Base Styles */
:root {
  --currentcolor: #68828b;
  --secondary-color: #2ecc71;
  --text-color: #333333;
  --bg-color: #ffffff;
}

font-feature-settings: "lnum" !important;


/* Typography */
h1, h2, h3, h4, h5, h6,
.main-services-h3 {
    letter-spacing: .03em;
    color: inherit;
    font: 400 18px / 1.4 "Jost", Arial, sans-serif;
}

.main-services-h3 {
    margin-top: 32px;
}

.main-h2 {
    text-transform: uppercase;
    font: 500 24px/1.45 "Jost", Arial, sans-serif;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 4px;
    cursor: pointer;
}

.main-h2::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.main-h2:hover::after {
    width: 100%;
}

.main-services-p {
    line-height: 1.6;
    font-size: 14px;
    letter-spacing: .02em;
    margin-top: 16px;
    text-align: center;
    color: #2e2e30;
}

.link-more {
    position: relative;
    overflow: hidden;
    display: inline-block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    font-family: "Jost",Arial,sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: .03em;
    opacity: 1;
    -webkit-transition: .4s;
    transition: .4s;
    color: gray;
    float: right;
}

.link-more::after {
    display: block;
    width: 55%;
    height: 1px;
    margin-top: 10px;
    background-color: currentColor;
    border-bottom: 1px solid currentColor;
    -webkit-transition: width .4s;
    transition: width .4s;
    content: "";
}

.link-more:active::after,
.link-more:focus::after,
.link-more:hover::after {
    width: 100%;
}

/* Layout & Structure */
section {
    padding: 2vw 0 0;
}

section::after {
    content: "";
    display: table;
    clear: both;
}

.avshotel-template {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
}

.avs-main {
    min-height: 60vh;
    padding: 2rem 0;
}

/* Header - Common */
.avs-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.avs-logo {
    height: 40px;
    width: auto;
    margin: 0 auto;
}

.avs-logo-mobile {
    height: 35px;
    width: auto;
    margin: 0 auto;
}

.avs-logo-link {
    text-decoration: none;
}

.avs-phone,
.avs-phone-mobile {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.avs-phone:hover,
.avs-phone-mobile:hover,
.avs-profile-link:hover {
    color: #e74c3c;
}

.avs-address {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.avs-address i {
    margin-right: 5px;
}

.avs-profile-link {
    color: #34495e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.avs-messengers {
    min-width: auto;
}

.avs-messengers-toggle {
    color: #95a5a6;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    padding: 5px;
}

.avs-messengers-toggle:hover {
    color: #3498db;
}

/* Header - Desktop */
.avs-header-desktop .avs-top-row {
    border-bottom: 1px solid #ecf0f1;
    background: lightgray;
}

.avs-header-desktop .avs-main-nav-row {
    background: #fff;
}

.avs-header-desktop .navbar-nav {
    margin: 0 auto;
    width: 100%;
    justify-content: space-around;
}

.avs-header-desktop .nav-link {
    font-weight: 500;
    color: #2c3e50;
    padding: 1rem 1.5rem;
    transition: color 0.3s;
}

.avs-header-desktop .nav-link:hover,
.avs-header-desktop .nav-link.active {
    color: #e74c3c;
}

/* Header - Tablet */
.avs-header-tablet .avs-top-row {
    border-bottom: 1px solid #ecf0f1;
    background: lightgray;
}

.avs-header-tablet .avs-second-row {
    background: #fff;
}

.avs-header-tablet .avs-tablet-menu .navbar-nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.avs-header-tablet .avs-tablet-menu .nav-link {
    padding: 0.5rem 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.avs-header-tablet .avs-tablet-menu .nav-link:hover {
    color: #e74c3c;
}

/* Header - Mobile */
.avs-header-mobile {
    background: lightgray;
}

.avs-header-mobile .avs-phone-mobile {
    font-size: 1.1rem;
    padding: 8px;
}

.avs-header-mobile .avs-mobile-address {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.avs-header-mobile .avs-mobile-menu .navbar-nav {
    text-align: center;
}

.avs-header-mobile .avs-mobile-menu .nav-link {
    padding: 0.75rem 1rem;
    color: #2c3e50;
    font-weight: 500;
    border-bottom: 1px solid #ecf0f1;
}

.avs-header-mobile .avs-mobile-menu .nav-link:last-child {
    border-bottom: none;
}

.avs-header-mobile .avs-mobile-menu .nav-link:hover {
    background: #ecf0f1;
    color: #e74c3c;
}

.avs-header-mobile .avs-mobile-lang .dropdown {
    display: inline-block;
}

/* Language Selector */
.avs-lang-selector .btn {
    border: 1px solid #bdc3c7;
    color: #2c3e50;
    font-weight: 500;
    min-width: 60px;
}

.avs-lang-selector .btn:hover {
    background: #ecf0f1;
    border-color: #95a5a6;
}

/* Main Content Elements */
.avs-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.avs-page-title {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 2rem;
}

/* Icons & Graphics */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border: 1px solid #68828b;
    border-radius: 50%;
    padding: 0.75rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #68828b;
}

/* Video */
.video-container {
    width: 100%;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 56.25vw;
    max-height: 100vh;
    display: block;
}

/* Carousel - Main */
.main-carousel-div {
    position: relative;
    min-height: 500px;
    padding: 0;
    overflow: hidden;
}

.main-carousel-slide {
    display: flex;
    align-items: flex-start;
    min-height: 500px;
    position: relative;
    height: 500px;
}

.carousel-control-next,
.carousel-control-prev {
    width: 5%;
    color: black;
}

/* Carousel - Number Slider */
.number-slider-text {
    background-color: #f5f5f5;
    color: #2e2e30;
    width: 50%;
    max-width: 683px;
    padding: 72px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    box-sizing: border-box;
    z-index: 2;
    position: relative;
    margin-top: 50px;
    align-self: flex-start;
    margin-right: -80px;
    flex-direction: column;
}

.inline-pad {
    min-height: 500px;
}

.inline {
    margin-top: 0;
}

.number-slider-text-h2 {
    align-self: flex-start;
}

.number-slider-text-p {
    text-align: left;
}

.number-slider-pics {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    z-index: 3;
    border: none;
    box-shadow: none;
    left: calc(50% - 80px);
    aspect-ratio: 16/10;
}

.news-slider-text {
    background-color: #f5f5f5;
    color: #2e2e30;
    width: 50%;
    max-width: 683px;
    padding: 72px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    box-sizing: border-box;
    z-index: 2;
    position: absolute;
    right: 0;
    align-self: flex-start;
    margin-right: -80px;
    flex-direction: column;
}
.news-slider-pics {
    width: 800px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    z-index: 3;
    border: none;
    box-shadow: none;
    aspect-ratio: 16/10;
}


/* Carousel - Properties */
.element-properties {
    z-index: 5;
    display: flex;
    position: relative;
    bottom: 20%;
    left: 0%;
    right: 0;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    padding: 15px;
    justify-content: space-between;
    align-items: center;
}

.element-properties .property-item {
    flex: 1;
    text-align: center;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.element-properties .property-item strong {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 5px;
    order: 1;
}

.element-properties .property-value {
    font-size: 16px;
    font-weight: bold;
    order: 2;
}

.element-properties .text-muted {
    order: 3;
    font-size: 11px;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.7);
}
.image-properties {
    width: 100%;
}
.properties-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.image-property-item {
    display: flex;
    align-items: center;
}
.card__feature {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}
.card__feature::before {
    content: "";
    font-family: 'iconfont' !important;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    background: #fff;
    color: #333;
    margin-right: 12px;
    flex-shrink: 0;
}
.card__feature.icon-square_32::before {
    content: "\EBD0";
}
.card__feature.icon-person-14_24::before {
    content: "\EBBC";
}
.card__feature.icon-bed_32::before {
    content: "\EBA4";
}
.property-content {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.property-content .property-value {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}
.property-content small {
    font-size: 14px;
    color: #7f8c8d;
}
.property-content small sup {
    font-size: 12px;
    vertical-align: super;
}
@media (max-width: 991.98px) {
    .properties-container {
        gap: 40px;
    }
}
@media (max-width: 575.98px) {
    .properties-container {
        gap: 24px;
        justify-content: flex-start;
    }
    .card__feature::before {
        width: 36px;
        height: 36px;
        font-size: 18px;
        margin-right: 10px;
    }
    .property-content .property-value {
        font-size: 15px;
    }

    .property-content small {
        font-size: 13px;
    }
}
.page-h1 {
    margin: 20px 0 9px;
    text-transform: uppercase;
    font: 500 28px/40px "Jost",Arial,sans-serif
}
@media (min-width: 768px) {
    .page-h1 {
        font-size:32px;
        line-height: 46px
    }
}
@media (min-width: 1326px) {
    .page-h1 {
        font-size:40px;
        line-height: 58px
    }
}
@media (min-width: 1601px) {
    .page-h1 {
        font-size:48px;
        line-height: 69px
    }
}
@media (min-width: 768px) {
    .page-h1 {
        margin:30px 0 12px
    }
}
@media (min-width: 1326px) {
    .page-h1 {
        margin:25px 0 17px
    }
}
@media (min-width: 1601px) {
    .page-h1 {
        margin:36px 0 22px
    }
}
.content-text-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 60px 0 5px
}
@media (max-width: 1325px) {
    .content-text-block {
        padding:40px 0 5px
    }
}
@media (max-width: 767px) {
    .content-text-block {
        grid-row-gap:10px;
        padding: 20px 0 5px
    }
}
.specoffers-carousel {
    padding-bottom: 2vw;
}
.specoffers-image {
    width: 100%;
    height: auto;
    display: block;
}
.d-xxl-block {
    display: block;
}
@media (max-width: 1399.98px) {
    .d-xxl-block {
        display: none;
    }
    .avs-header-desktop .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .avs-header-desktop .dropdown > .dropdown-toggle:active {
        pointer-events: none;
    }
    .avs-header-desktop .dropdown > .dropdown-menu {
        transition: all 0.3s ease;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }
    .avs-header-desktop .nav-link {
        padding: 1rem;
    }
    .main-services-h3 {
        font-size: 22px;
        line-height: 32px;
    }
}
@media (max-width: 1600px) {
    .main-carousel-div,
    .main-carousel-slide {
        min-height: 420px;
        height: 420px;
    }
    .number-slider-text {
        width: 49%;
        max-width: 573px;
        height: 420px;
        padding: 62px 80px;
        margin-top: 40px;
        margin-right: -60px;
    }
    .number-slider-pics {
        width: 700px;
        height: 420px;
        left: calc(50% - 60px);
    }
}
@media (max-width: 1325px) {
    .main-carousel-div,
    .main-carousel-slide {
        min-height: auto;
    }
    .main-carousel-slide {
        display: block;
        height: auto;
    }
    .number-slider-text {
        width: 648px;
        height: 310px;
        max-width: 100%;
        padding: 60px 40px 50px 60px;
        margin: -30px auto 0;
        transform: translate(50px, 0);
        margin-right: 0;
    }
    .number-slider-pics {
        position: relative;
        width: 648px;
        height: 405px;
        margin: 0 auto;
        display: block;
        left: auto;
        top: auto;
        transform: none;
    }
}
@media (max-width: 767px) {
    .main-carousel-div,
    .main-carousel-slide {
        min-height: auto;
    }
    .main-carousel-slide {
        height: auto;
    }
    .number-slider-text {
        width: 100%;
        height: auto;
        min-height: 200px;
        padding: 30px 20px;
        margin-top: -20px;
        transform: none;
    }
    .number-slider-pics {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        min-height: auto;
        margin-bottom: -20px;
        z-index: 3;
    }
}
@media (min-width: 768px) {
    .main-h2 {
        font-size: 28px;
    }
    .icon-circle,
    .feature-icon {
        width: 2rem;
        height: 2rem;
    }
    .icon-circle {
        width: 6rem;
        height: 6rem;
    }
    .main-services-h3 {
        font-size: 20px;
    }
    .link-more {
        font-size: 16px;
    }
    .link-more::after {
        width: 66%;
        margin-top: 11px;
    }
}
@media (min-width: 992px) {
    .icon-circle {
        width: 6rem;
        height: 6rem;
    }
    .feature-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    .main-services-h3 {
        font-size: 20px;
        line-height: 29px;
    }
}
@media (min-width: 1024px) {
    .main-h2 {
        font-size: 32px;
    }
    
    .link-more {
        font-size: 18px;
    }
    
    .link-more::after {
        width: 55%;
        margin-top: 11px;
    }
}
@media (min-width: 1280px) {
    .main-h2 {
        font-size: 40px;
    }
}
@media (min-width: 1326px) {
    .link-more {
        font-size: 20px;
    }
    
    .link-more::after {
        width: 50%;
        margin-top: 12px;
    }
}
.carousel-item {
    transition: transform 0.6s ease;
}
.main-carousel-item {
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}
.main-room .number-slider-text {
    align-self: flex-start;
}
.main-room .layout-image-left .number-slider-text {
    margin-right: 0;
    margin-left: -80px;
    order: 1;
}
.main-room .layout-image-left .number-slider-pics {
    left: 0;
    right: calc(50% - 80px);
}
.room-actions .btn, .number-slider-text .btn {
    font-family: "Jost", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 25px;
    border: 1px solid #2e2e30;
    background: #2e2e30;
    color: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.room-actions .btn:hover {
    background: #fff;
    color: #2e2e30;
    border-color: #2e2e30;
}
.price-front {
    color: #2e2e30;
    font-weight: bold;
}
.news-carousel-div {
    position: relative;
    min-height: 500px;
}
.news-carousel-item .number-slider-text.inline {
    margin-top: 0;
    align-self: flex-start;
}
.news-carousel-item.layout-text-left .number-slider-text {
    margin-left: -80px;
    margin-right: 0;
}
.news-carousel-item .number-slider-pics {
    position: absolute;
    top: 0;
    width: 800px;
    height: 500px;
}
.news-carousel-item.layout-text-left .number-slider-pics {
    right: calc(50% - 80px);
    left: auto;
}

#carouselExampleChem > div > div.carousel-item.d-flex.active.inline-pad > div > div > img
.chem-carousel-div {
    position: relative;
    min-height: 500px;
}
.chem-carousel-item .number-slider-text.inline {
    margin-top: 0;
    align-self: flex-start;
}
.chem-carousel-item.layout-text-left .number-slider-text {
    margin-right: -80px;
    margin-left: 0;
}
.chem-carousel-item.layout-image-left .number-slider-text {
    margin-left: -80px;
    margin-right: 0;
}
.chem-carousel-item .number-slider-pics {
    position: absolute;
    top: 0;
    width: 800px;
    height: 500px;
}
.chem-carousel-item.layout-text-left .number-slider-pics {
    left: calc(50% - 80px);
    right: auto;
}
.chem-carousel-item.layout-image-left .number-slider-pics {
    right: calc(50% - 80px);
    left: auto;
}
.specoffers-carousel-div {
    padding-bottom: 2vw;
}
.specoffers-placeholder {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.placeholder-text {
    color: #666;
    padding: 20px;
    text-align: center;
}
@media (max-width: 1199.98px) {
    .number-slider-text {
        padding: 50px;
    }
    .number-slider-pics {
        width: 700px;
        height: 438px;
    }
}
@media (max-width: 991.98px) {
    .number-slider-text {
        width: 100%;
        max-width: none;
        padding: 40px;
        margin: 0;
        height: auto;
        min-height: 300px;
        order: 2;
    }
    .number-slider-pics {
        position: relative;
        width: 100%;
        height: auto;
        max-height: 400px;
        left: auto;
        right: auto;
        margin-bottom: 20px;
        order: 1;
    }
    .layout-text-left .number-slider-text,
    .layout-image-left .number-slider-text {
        margin: 0;
    }
    .main-carousel-div,
    .news-carousel-div,
    .chem-carousel-div {
        min-height: auto;
    }
    .carousel-item.d-flex {
        align-items: stretch;
    }
    .icon-circle {
        width: 6rem;
        height: 6rem;
    }
    .feature-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}
@media (max-width: 767.98px) {
    .number-slider-text {
        padding: 30px 20px;
    }
    .specoffers-image {
        height: 250px;
        object-fit: cover;
    }
}
.image-left {
    left: 0;
    right: auto;
}
.image-right {
    right: 0;
    left: auto;
}
.placeholder-image {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}
.placeholder-content {
    text-align: center;
}
.no-margin {
    margin: 0;
}
.margin-left-80 {
    margin-left: -80px;
}
.margin-right-80 {
    margin-right: -80px;
}
.mobile-order-1 {
    order: 1;
}
.mobile-order-2 {
    order: 2;
}
.bg-light {
    background-color: #f5f5f5;
}
.bg-dark {
    background-color: #2e2e30;
    color: white;
}
.bg-dark h2,
.bg-dark p {
    color: white;
}
.image-large .number-slider-pics {
    width: 900px;
    height: 563px;
}
.image-small .number-slider-pics {
    width: 600px;
    height: 375px;
}
.align-top .number-slider-text {
    align-items: flex-start;
    justify-content: flex-start;
}
.align-center .number-slider-text {
    align-items: center;
    justify-content: center;
}
.align-bottom .number-slider-text {
    align-items: flex-end;
    justify-content: flex-end;
}
.carousel-control-next-icon.about, .carousel-control-prev-icon.about {
    background-color: darkgray;
}
@media (min-width: 768px) {
    .carousel-control-prev {
        left: -40px
    }
    .carousel-control-prev.about {
        left:0;
    }

    .carousel-control-next {
        right: -40px
    }
    .carousel-control-next.about{
        right: 0
    }
}

@media (min-width: 1326px) {
    .carousel-control-prev {
        left:-60px
    }
    .carousel-control-prev.about {
        left:0;
    }

    .carousel-control-next {
        right: -60px
    }
    .carousel-control-next.about{
        right: 0
    }
}

@media (min-width: 1601px) {
    .carousel-control-prev {
        left:-80px
    }
    .carousel-control-prev.about {
        left:0;
    }

    .carousel-control-next {
        right: -80px
    }
    .carousel-control-next.about{
        right: 0
    }
}
//************************************************ Свойства в тексте номеров, залов ***************************************************//


.icon-properties {
    display: grid;
    grid-template-columns: auto;
    grid-auto-flow: row;
    grid-column-gap: 0;
    grid-row-gap: 20px;
    padding: 20px 0;
}

@media (min-width: 1326px) {
    .icon-properties {
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 80px;
        grid-row-gap: 10px;
    }
}
@media (min-width: 768px) {
    .icon-properties {
        grid-row-gap: 30px;
        padding: 0;
    }
}


@media (min-width: 1601px) {
    .text-default {
        font-size: 16px;
    }
}
@media (min-width: 1326px) {
    .text-default {
        font-size: 14px;
        line-height: 1.8;
    }
}
.text-default, .ustyle p {
    font: 400 13px / 1.6 "Raleway", Verdana, sans-serif;
    letter-spacing: .03em;